@charset "UTF-8";
.animated {
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

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

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}

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

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

@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}

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

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

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

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

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

@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

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

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

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

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

@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

*:focus,
a:focus {
  outline: none;
  text-decoration: none;
}

#wpadminbar.mobile {
  display: none;
}

html {
  background: url(../img/loader.jpg) center no-repeat #222;
  background-attachment: fixed;
}

.page-loading * {
  opacity: 0;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}

.page-loaded * {
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.btn-group-vertical > .btn-group:after,
.btn-group-vertical > .btn-group:before,
.btn-toolbar:after,
.btn-toolbar:before,
.clearfix:after,
.clearfix:before,
.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.dl-horizontal dd:after,
.dl-horizontal dd:before,
.form-horizontal .form-group:after,
.form-horizontal .form-group:before,
.modal-footer:after,
.modal-footer:before,
.modal-header:after,
.modal-header:before,
.nav:after,
.nav:before,
.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before,
.pager:after,
.pager:before,
.panel-body:after,
.panel-body:before,
.row:after,
.row:before {
  display: inline;
}

pre {
  font-family: Courier;
  font-size: 15px;
  max-width: 85%;
  margin: 15px auto;
  padding: 10px 20px;
  background-color: #f1f1f1;
  border: 1px solid #e1e1e8;
}

h1,
h2,
h3,
.ynil h3,
h4,
h5,
h6 {
  line-height: 1;
  margin-top: 0;
  text-rendering: optimizeLegibility;
  /*  voodoo to enable ligatures and kerning | https://developer.mozilla.org/en-US/docs/CSS/text-rendering */
}

p {
  font-weight: l;
  line-height: l;
}

p + p {
  margin-top: 1.5em;
}

em {
  font-style: italic;
}

ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 20px;
}

ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 25px;
}

ul ul,
ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}

ol ol,
ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

img.title_sponsor_image {
  max-width: 180px;
}

embed,
iframe,
object {
  max-width: 100%;
}

.clear {
  clear: both;
  width: 100%;
  height: 0;
  font-size: 0;
}

button {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

input {
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
}

input[type=radio] {
  -webkit-appearance: radio;
}

select,
input[type=text],
input[type=number],
input[type=tel],
input[type=email],
input[type=url],
input[type=search] {
  font-size: 1em !important;
}
select:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=search]:focus {
  font-size: 1em !important;
}

select {
  max-width: 100%;
}

textarea,
input {
  outline: none;
}

@-ms-viewport {
  width: device-width;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}
.container-fluid {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

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

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9 {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.pull-0 {
  right: auto;
}

.pull-1 {
  right: 8.333333%;
}

.pull-2 {
  right: 16.666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.333333%;
}

.pull-5 {
  right: 41.666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.333333%;
}

.pull-8 {
  right: 66.666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.333333%;
}

.pull-11 {
  right: 91.666667%;
}

.pull-12 {
  right: 100%;
}

.push-0 {
  left: auto;
}

.push-1 {
  left: 8.333333%;
}

.push-2 {
  left: 16.666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.333333%;
}

.push-5 {
  left: 41.666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.333333%;
}

.push-8 {
  left: 66.666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.333333%;
}

.push-11 {
  left: 91.666667%;
}

.push-12 {
  left: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pull-sm-0 {
    right: auto;
  }

  .pull-sm-1 {
    right: 8.333333%;
  }

  .pull-sm-2 {
    right: 16.666667%;
  }

  .pull-sm-3 {
    right: 25%;
  }

  .pull-sm-4 {
    right: 33.333333%;
  }

  .pull-sm-5 {
    right: 41.666667%;
  }

  .pull-sm-6 {
    right: 50%;
  }

  .pull-sm-7 {
    right: 58.333333%;
  }

  .pull-sm-8 {
    right: 66.666667%;
  }

  .pull-sm-9 {
    right: 75%;
  }

  .pull-sm-10 {
    right: 83.333333%;
  }

  .pull-sm-11 {
    right: 91.666667%;
  }

  .pull-sm-12 {
    right: 100%;
  }

  .push-sm-0 {
    left: auto;
  }

  .push-sm-1 {
    left: 8.333333%;
  }

  .push-sm-2 {
    left: 16.666667%;
  }

  .push-sm-3 {
    left: 25%;
  }

  .push-sm-4 {
    left: 33.333333%;
  }

  .push-sm-5 {
    left: 41.666667%;
  }

  .push-sm-6 {
    left: 50%;
  }

  .push-sm-7 {
    left: 58.333333%;
  }

  .push-sm-8 {
    left: 66.666667%;
  }

  .push-sm-9 {
    left: 75%;
  }

  .push-sm-10 {
    left: 83.333333%;
  }

  .push-sm-11 {
    left: 91.666667%;
  }

  .push-sm-12 {
    left: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pull-md-0 {
    right: auto;
  }

  .pull-md-1 {
    right: 8.333333%;
  }

  .pull-md-2 {
    right: 16.666667%;
  }

  .pull-md-3 {
    right: 25%;
  }

  .pull-md-4 {
    right: 33.333333%;
  }

  .pull-md-5 {
    right: 41.666667%;
  }

  .pull-md-6 {
    right: 50%;
  }

  .pull-md-7 {
    right: 58.333333%;
  }

  .pull-md-8 {
    right: 66.666667%;
  }

  .pull-md-9 {
    right: 75%;
  }

  .pull-md-10 {
    right: 83.333333%;
  }

  .pull-md-11 {
    right: 91.666667%;
  }

  .pull-md-12 {
    right: 100%;
  }

  .push-md-0 {
    left: auto;
  }

  .push-md-1 {
    left: 8.333333%;
  }

  .push-md-2 {
    left: 16.666667%;
  }

  .push-md-3 {
    left: 25%;
  }

  .push-md-4 {
    left: 33.333333%;
  }

  .push-md-5 {
    left: 41.666667%;
  }

  .push-md-6 {
    left: 50%;
  }

  .push-md-7 {
    left: 58.333333%;
  }

  .push-md-8 {
    left: 66.666667%;
  }

  .push-md-9 {
    left: 75%;
  }

  .push-md-10 {
    left: 83.333333%;
  }

  .push-md-11 {
    left: 91.666667%;
  }

  .push-md-12 {
    left: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pull-lg-0 {
    right: auto;
  }

  .pull-lg-1 {
    right: 8.333333%;
  }

  .pull-lg-2 {
    right: 16.666667%;
  }

  .pull-lg-3 {
    right: 25%;
  }

  .pull-lg-4 {
    right: 33.333333%;
  }

  .pull-lg-5 {
    right: 41.666667%;
  }

  .pull-lg-6 {
    right: 50%;
  }

  .pull-lg-7 {
    right: 58.333333%;
  }

  .pull-lg-8 {
    right: 66.666667%;
  }

  .pull-lg-9 {
    right: 75%;
  }

  .pull-lg-10 {
    right: 83.333333%;
  }

  .pull-lg-11 {
    right: 91.666667%;
  }

  .pull-lg-12 {
    right: 100%;
  }

  .push-lg-0 {
    left: auto;
  }

  .push-lg-1 {
    left: 8.333333%;
  }

  .push-lg-2 {
    left: 16.666667%;
  }

  .push-lg-3 {
    left: 25%;
  }

  .push-lg-4 {
    left: 33.333333%;
  }

  .push-lg-5 {
    left: 41.666667%;
  }

  .push-lg-6 {
    left: 50%;
  }

  .push-lg-7 {
    left: 58.333333%;
  }

  .push-lg-8 {
    left: 66.666667%;
  }

  .push-lg-9 {
    left: 75%;
  }

  .push-lg-10 {
    left: 83.333333%;
  }

  .push-lg-11 {
    left: 91.666667%;
  }

  .push-lg-12 {
    left: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  .pull-xl-0 {
    right: auto;
  }

  .pull-xl-1 {
    right: 8.333333%;
  }

  .pull-xl-2 {
    right: 16.666667%;
  }

  .pull-xl-3 {
    right: 25%;
  }

  .pull-xl-4 {
    right: 33.333333%;
  }

  .pull-xl-5 {
    right: 41.666667%;
  }

  .pull-xl-6 {
    right: 50%;
  }

  .pull-xl-7 {
    right: 58.333333%;
  }

  .pull-xl-8 {
    right: 66.666667%;
  }

  .pull-xl-9 {
    right: 75%;
  }

  .pull-xl-10 {
    right: 83.333333%;
  }

  .pull-xl-11 {
    right: 91.666667%;
  }

  .pull-xl-12 {
    right: 100%;
  }

  .push-xl-0 {
    left: auto;
  }

  .push-xl-1 {
    left: 8.333333%;
  }

  .push-xl-2 {
    left: 16.666667%;
  }

  .push-xl-3 {
    left: 25%;
  }

  .push-xl-4 {
    left: 33.333333%;
  }

  .push-xl-5 {
    left: 41.666667%;
  }

  .push-xl-6 {
    left: 50%;
  }

  .push-xl-7 {
    left: 58.333333%;
  }

  .push-xl-8 {
    left: 66.666667%;
  }

  .push-xl-9 {
    left: 75%;
  }

  .push-xl-10 {
    left: 83.333333%;
  }

  .push-xl-11 {
    left: 91.666667%;
  }

  .push-xl-12 {
    left: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
/*# sourceMappingURL=bootstrap-grid.min.css.map */
/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-flip-horizontal, :root .fa-flip-vertical {
  filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before, .fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before, .fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before, .fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before, .fa-image:before, .fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before, .fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before, .fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before, .fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before, .fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before, .fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before, .fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before, .fa-users:before {
  content: "";
}

.fa-chain:before, .fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before, .fa-scissors:before {
  content: "";
}

.fa-copy:before, .fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before, .fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before, .fa-reorder:before, .fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before, .fa-sort:before {
  content: "";
}

.fa-sort-down:before, .fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before, .fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before, .fa-undo:before {
  content: "";
}

.fa-legal:before, .fa-gavel:before {
  content: "";
}

.fa-dashboard:before, .fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before, .fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before, .fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before, .fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before, .fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before, .fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before, .fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before, .fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before, .fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before, .fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before, .fa-usd:before {
  content: "";
}

.fa-rupee:before, .fa-inr:before {
  content: "";
}

.fa-cny:before, .fa-rmb:before, .fa-yen:before, .fa-jpy:before {
  content: "";
}

.fa-ruble:before, .fa-rouble:before, .fa-rub:before {
  content: "";
}

.fa-won:before, .fa-krw:before {
  content: "";
}

.fa-bitcoin:before, .fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before, .fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before, .fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before, .fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before, .fa-bank:before, .fa-university:before {
  content: "";
}

.fa-mortar-board:before, .fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before, .fa-car:before {
  content: "";
}

.fa-cab:before, .fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before, .fa-file-picture-o:before, .fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before, .fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before, .fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-saver:before, .fa-support:before, .fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before, .fa-resistance:before, .fa-rebel:before {
  content: "";
}

.fa-ge:before, .fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before, .fa-yc-square:before, .fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before, .fa-weixin:before {
  content: "";
}

.fa-send:before, .fa-paper-plane:before {
  content: "";
}

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before, .fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before, .fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before, .fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before, .fa-battery-half:before {
  content: "";
}

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before, .fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before, .fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before, .fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "";
}

.fa-fa:before, .fa-font-awesome:before {
  content: "";
}

.fa-handshake-o:before {
  content: "";
}

.fa-envelope-open:before {
  content: "";
}

.fa-envelope-open-o:before {
  content: "";
}

.fa-linode:before {
  content: "";
}

.fa-address-book:before {
  content: "";
}

.fa-address-book-o:before {
  content: "";
}

.fa-vcard:before, .fa-address-card:before {
  content: "";
}

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "";
}

.fa-user-circle:before {
  content: "";
}

.fa-user-circle-o:before {
  content: "";
}

.fa-user-o:before {
  content: "";
}

.fa-id-badge:before {
  content: "";
}

.fa-drivers-license:before, .fa-id-card:before {
  content: "";
}

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "";
}

.fa-quora:before {
  content: "";
}

.fa-free-code-camp:before {
  content: "";
}

.fa-telegram:before {
  content: "";
}

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "";
}

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "";
}

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "";
}

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "";
}

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "";
}

.fa-shower:before {
  content: "";
}

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "";
}

.fa-podcast:before {
  content: "";
}

.fa-window-maximize:before {
  content: "";
}

.fa-window-minimize:before {
  content: "";
}

.fa-window-restore:before {
  content: "";
}

.fa-times-rectangle:before, .fa-window-close:before {
  content: "";
}

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "";
}

.fa-bandcamp:before {
  content: "";
}

.fa-grav:before {
  content: "";
}

.fa-etsy:before {
  content: "";
}

.fa-imdb:before {
  content: "";
}

.fa-ravelry:before {
  content: "";
}

.fa-eercast:before {
  content: "";
}

.fa-microchip:before {
  content: "";
}

.fa-snowflake-o:before {
  content: "";
}

.fa-superpowers:before {
  content: "";
}

.fa-wpexplorer:before {
  content: "";
}

.fa-meetup:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*
 * Selecter Plugin [Formstone Library]
 * @author Ben Plum
 * @version 2.1.2
 *
 * Copyright © 2013 Ben Plum <mr@benplum.com>
 * Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
 */
.selecter-element {
  *left: -999999px;
  position: absolute;
  opacity: 0;
}

.selecter {
  display: block;
  margin: 10px 0;
  position: relative;
  width: 100% !important;
  z-index: 1;
}

.selecter .selecter-selected {
  background: #F9F9F9 url(/images/fs-selecter-arrow.png) no-repeat right center;
  border: 1px solid #ccc;
  border-radius: 3px;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 13px !important;
  margin: 0;
  overflow: hidden;
  padding: 8px 10px;
  position: relative;
  text-overflow: clip;
  z-index: 49;
}

.selecter .selecter-options {
  border: 1px solid #ccc;
  border-width: 0 1px 1px;
  background-color: #fefefe;
  border-radius: 0 0 3px 3px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  display: none;
  left: 0;
  margin: 0;
  max-height: 260px;
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  *width: auto;
  z-index: 50;
}

.selecter .selecter-group {
  background: #F9F9F9;
  border-bottom: 1px solid #e3e3e3;
  color: #999;
  display: block;
  font-size: 11px;
  padding: 5px 10px 4px;
  text-transform: uppercase;
}

.selecter .selecter-item {
  background: #fff;
  border-bottom: 1px solid #e3e3e3;
  color: #666;
  cursor: pointer;
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  width: 100%;
}

.selecter .selecter-item.selected {
  background: #F9F9F9;
}

.selecter .selecter-item.first {
  border-radius: 0;
}

.selecter .selecter-item.last {
  border-radius: 0 0 2px 2px;
  border-bottom: 0;
}

@media screen and (max-width: 800px) {
  .selecter {
    width: 100%;
  }

  .selecter .selecter-item:hover,
.selecter .selecter-item.selected:hover {
    background-color: #f3f3f3;
  }

  .selecter:hover .selecter-selected {
    background-color: #fff;
  }

  .selecter.disabled .selecter-item:hover {
    background: #fff;
  }
}
/* Open */
.selecter.open {
  z-index: 3;
}

.selecter.open .selecter-selected {
  border-radius: 3px 3px 0 0;
  z-index: 51;
}

.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
  background-color: #fff;
  outline: 1px solid #c69d57;
}

/* 'Cover' Positioning */
.selecter.cover .selecter-options {
  border-radius: 3px;
  border-width: 1px;
  top: 0;
}

.selecter.cover .selecter-options .selecter-item.first {
  border-radius: 3px 3px 0 0;
}

.selecter.cover.open .selecter-selected {
  border-radius: 3px 3px 0 0;
  z-index: 49;
}

/* 'Bottom' Positioning */
.selecter.bottom .selecter-options {
  border-width: 1px 1px 0;
  bottom: 100%;
  top: auto;
}

.selecter.bottom .selecter-item.last {
  border: none;
}

.selecter.bottom.open .selecter-selected {
  border-radius: 0 0 3px 3px;
}

.selecter.bottom.open .selecter-options {
  border-radius: 3px 3px 0 0;
}

/* 'Bottom' + 'Cover' Positioning */
.selecter.bottom.cover .selecter-options {
  bottom: 0;
  top: auto;
}

.selecter.bottom.cover.open .selecter-selected {
  border-radius: 3px;
}

.selecter.bottom.cover.open .selecter-options {
  border-radius: 3px;
}

/* Multiple Select */
.selecter.multiple .selecter-options {
  border-radius: 3px;
  border-width: 1px;
  box-shadow: none;
  display: block;
  position: static;
  width: 100%;
}

/* 'Disabled' State */
.selecter.disabled .selecter-selected {
  background: #fff;
  border-color: #eee;
  color: #ccc;
  cursor: default;
}

.selecter.disabled .selecter-options {
  background: #fff;
  border-color: #eee;
}

.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
  border-color: #eee;
  color: #ccc;
  cursor: default;
}

.selecter.disabled .selecter-item.selected {
  background: #fafafa;
}

/* Media Queries */
@media screen and (max-width: 800px) {
  .selecter {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .selecter {
    width: 100%;
  }
}
html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
  font-size: 18px;
  background: #f5f5f4;
  font-weight: 400;
  color: #333;
  font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modal-open {
  overflow-y: hidden !important;
}

.modal,
.modal-content,
.modal-dialog,
.modal-body {
  overflow-y: scroll !important;
  -ms-overflow-style: none;
  overflow: auto;
}

svg {
  fill: #BB8D3F;
}

.container--no-bg {
  margin-top: 30px;
  margin-bottom: 30px;
}

.container--fake {
  margin-top: -30px;
  margin-bottom: -300px;
}
.container--fake .content-box {
  height: 300px;
}
.container--fake.container--fake-xl {
  margin-top: -60px;
  margin-bottom: -340px;
}
.container--fake.container--fake-xl .content-box {
  height: 350px;
}

.row-spacer {
  margin-top: 50px;
}

.wp-caption {
  width: 100%;
  max-width: 100%;
}

.equal-height-boxes {
  display: flex;
  flex-wrap: wrap;
}
.anchor-offset {
  position: relative;
  top: -150px;
}
@media screen and (max-width: 575px) {
  .anchor-offset {
    top: -80px;
  }
}

.xl-heading,
.display-title,
.display-subtitle,
h1,
.h1-like,
h2,
.h2-like,
h3,
.ynil h3,
.h3-like,
h4,
.h4-like,
h5,
.h5-like,
h6,
.h6-like {
  display: block;
  line-height: 1.2;
}

.display-title {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .display-title {
    font-size: 42px;
  }
}

.display-subtitle {
  font-size: 36px;
  line-height: 1;
}
@media screen and (max-width: 575px) {
  .display-subtitle {
    font-size: 30px;
  }
}

h1,
.h1-like {
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 575px) {
  h1,
.h1-like {
    font-size: 30px;
  }
}

h2,
.h2-like {
  font-size: 24px;
  font-weight: bold;
}

h3, .ynil h3,
.h3-like {
  font-size: 36px;
}
@media screen and (max-width: 575px) {
  h3, .ynil h3,
.h3-like {
    font-size: 30px;
  }
}

h4,
.h4-like {
  font-size: 14px;
  color: #BB8D3F;
  font-weight: bold;
  text-transform: uppercase;
}

h5,
.h5-like {
  font-size: 16px;
  color: #767676;
  font-weight: 600;
  text-transform: uppercase;
}

h6,
.h6-like {
  font-size: 12px;
  color: #767676;
  font-weight: 600;
  text-transform: uppercase;
}

a {
  transition: 0.4s;
  color: #BB8D3F;
  font-weight: 400;
  text-decoration: none;
}
a:hover, a:focus {
  color: #caa463;
}
a.bold-link {
  font-weight: bold;
  text-transform: uppercase;
}

p,
ul,
ol {
  font-size: 18px;
  line-height: 1.5;
}
p li,
ul li,
ol li {
  margin-bottom: 10px;
}

p.donor-name {
  font-size: 16px;
  line-height: 1.3;
  margin: 0 0 15px;
}

.donor-list {
  column-count: 1;
  column-gap: 20px;
}
@media screen and (min-width: 575px) {
  .donor-list {
    column-count: 2;
  }
}
@media screen and (min-width: 991px) {
  .donor-list {
    column-count: 3;
  }
}

.content-area ul {
  list-style-type: none;
}
.content-area ul li {
  font-weight: 500;
  position: relative;
}
.content-area ul li:before {
  content: "";
  display: block;
  background: #BB8D3F;
  border-radius: 50%;
  height: 7px;
  width: 7px;
  position: absolute;
  left: -20px;
  top: 10px;
}

.p--large {
  font-size: 24px;
  font-weight: normal;
}

.p--medium {
  font-size: 16px;
  line-height: 1.35;
}

.p--small {
  font-size: 14px;
  font-weight: normal;
  line-height: 1.25;
}
.p--small a {
  font-size: 14px;
}

.p--tiny {
  font-size: 12px;
}

nav {
  list-style-type: none;
}
nav li {
  display: inline-block;
}

section,
.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 575px) {
  section,
.section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.section-padding--general-page {
  padding-top: 50px;
  padding-bottom: 0;
}
@media screen and (max-width: 575px) {
  .section-padding--general-page {
    padding-top: 30px;
  }
}
.container--no-bg .section-padding--general-page {
  padding-top: 30px;
}

.page-template-template-default_extended .performance-single:first-child .page-section.section-padding--general-page.row {
  padding-top: 30px;
}

.flex {
  display: flex;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.content-box {
  background: #fff;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .content-box {
    padding: 25px;
  }
}

.divider-top {
  border-top: 1px solid #ddd;
}

.form-step {
  padding-left: 10px;
  padding-right: 10px;
}

.three-features {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .three-features {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.three-features .col-12 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .three-features .col-12 {
    flex-wrap: wrap;
  }
}
.three-features .feature {
  flex-grow: 1;
  flex-basis: 0;
  border-right: 1px solid #ddd;
  padding: 50px;
}
@media screen and (max-width: 991px) {
  .three-features .feature {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .three-features .feature {
    flex-basis: auto;
    flex-grow: 0;
    border: none;
    border-top: 1px solid #ddd;
    width: 100%;
  }
}
.three-features .feature:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .three-features .feature:first-child {
    border-top: none;
  }
}
.three-features .feature h2 {
  margin-top: 25px;
}
.three-features .feature p {
  margin: 15px 0;
}

.feature-icon {
  display: block;
  margin: 0 auto;
  width: 100px;
  height: 100px;
}
.feature-icon img {
  max-width: 100%;
  max-height: 100px;
}
@media screen and (max-width: 991px) {
  .feature-icon {
    width: 60px;
    height: 60px;
  }
  .feature-icon img {
    max-height: 60px;
  }
}

.page-section {
  border-top: 1px solid #ddd;
}
.container--no-bg .page-section {
  border-top: none;
}

@media screen and (max-width: 991px) {
  .page-section__group {
    margin-bottom: 30px;
  }
}
.page-section__group h2 {
  margin: 25px 0 10px;
}

.page-section__title {
  padding-right: 45px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .page-section__title.col-md-4 {
    padding-right: 0;
    margin-bottom: 15px;
    text-align: left;
  }
}
@media screen and (max-width: 991px) {
  .page-section__title.col-lg-4 {
    padding-right: 0;
    margin-bottom: 15px;
    text-align: left;
  }
}
.page-section__title.center {
  padding-right: 0px;
  text-align: center;
  padding-bottom: 30px;
}

a.page-section__button {
  margin-top: 15px;
}
@media screen and (max-width: 575px) {
  a.page-section__button {
    display: block;
  }
}

img.single-image {
  width: 100%;
  margin-bottom: 25px;
}

.subscriber-info {
  border: 1px solid #ddd;
  margin-bottom: 25px;
  padding: 15px;
}

.button, input[type=submit] {
  transition: 0.4s;
  font-size: 14px;
  border: 1px solid #BB8D3F;
  border-radius: 0;
  background: #BB8D3F;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.button:hover, input[type=submit]:hover, .button:focus, input[type=submit]:focus {
  background: #caa463;
  border-color: #caa463;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.button--black {
  background: #222;
  border-color: #222;
  color: #BB8D3F;
}
.button--centered {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
.button--outline, .slide__button:nth-of-type(2) {
  border-color: #767676;
  background: none;
  color: #BB8D3F;
}
.button--outline:hover, .slide__button:hover:nth-of-type(2) {
  background: rgba(187, 141, 63, 0.1);
  border-color: #BB8D3F;
  color: #BB8D3F;
}
.button--square {
  font-size: 22px;
  padding: 2px 0 0;
  width: 40px;
  height: 40px;
}
.button--full-width {
  display: block;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.button--common-search {
  background: #222;
  border-color: #222;
  color: #fff;
  display: block;
  font-size: 24px;
  font-weight: 600;
  padding: 20px;
  position: relative;
  text-align: left;
  text-transform: none;
}
.button--common-search:hover {
  background: #222;
  border-color: #222;
}
.button--common-search:hover .common-search__arrow {
  color: #BB8D3F;
}
@media screen and (max-width: 1199px) {
  .button--common-search {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .button--common-search {
    font-size: 14px;
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .button--common-search {
    font-size: 12px;
    text-align: center;
  }
}
@media screen and (max-width: 575px) {
  .button--common-search {
    background: none;
    border: none;
    border-bottom: 1px solid #222;
    font-size: 20px;
    text-align: left;
  }
}
.button--common-search .common-search__arrow {
  color: #333;
  font-size: 32px;
  position: absolute;
  top: 24px;
  right: 20px;
}
@media screen and (max-width: 1199px) {
  .button--common-search .common-search__arrow {
    top: 19px;
  }
}
@media screen and (max-width: 991px) {
  .button--common-search .common-search__arrow {
    font-size: 24px;
    top: 7px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .button--common-search .common-search__arrow {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .button--common-search .common-search__arrow {
    color: #BB8D3F;
    display: block;
  }
}
.button--nav {
  background: none;
  padding: 5px 10px;
  text-transform: none;
}
@media screen and (max-width: 865px) {
  .button--nav {
    padding: 3px 6px;
  }
}
.button--nav svg {
  margin-right: 5px;
}
@media screen and (max-width: 1199px) {
  .button--nav svg {
    height: 21px;
  }
}
.button--nav:hover {
  background: rgba(187, 141, 63, 0.1);
  border-color: #BB8D3F;
  color: #BB8D3F;
}

.pdf {
  transition: 0.4s;
  border: 1px solid #767676;
  display: block;
  padding: 15px;
}
.pdf span {
  transition: 0.4s;
}
.pdf__name {
  color: #333;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
}
.pdf__download {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.pdf__icon {
  height: 16px;
  width: 16px;
  margin-left: 5px;
}
.pdf__size {
  color: #767676;
  display: inline-block;
  font-style: italic;
  font-size: 14px;
}
.pdf:hover {
  border-color: #BB8D3F;
  text-decoration: none;
}
.pdf:hover .pdf__name,
.pdf:hover .pdf__size {
  color: #BB8D3F;
}

.pagination {
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 0 30px;
  border-radius: 0;
}

.pagination-link {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-weight: 600;
  height: 40px;
  margin: 0 5px;
  width: 40px;
}
.pagination-link.active, .pagination-link:hover {
  background: #BB8D3F;
  color: #fff;
  text-decoration: none;
}

.pagination-link--next {
  font-size: 20px;
  margin-left: 10px;
}

.pagination-link--prev {
  font-size: 20px;
  margin-right: 10px;
}

.social-icons {
  display: flex;
  justify-content: space-between;
}

.social-circle {
  border: 1px solid #767676;
  border-radius: 50%;
  display: inline-block;
  padding-top: 4px;
  width: 35px;
  height: 35px;
  text-align: center;
}
.social-circle:hover {
  background: #caa463;
  border-color: #caa463;
}
.social-circle:hover .fa {
  color: #fff;
}
.social-circle--large {
  font-size: 30px;
  padding-top: 12px;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 400px) {
  .social-circle--large {
    font-size: 22px;
    height: 50px;
    padding-top: 8px;
    width: 50px;
  }
}
.social-circle .fa {
  color: #BB8D3F;
  margin-top: 4px;
}

.icon {
  display: inline-block;
  height: 24px;
  width: 24px;
  fill: #767676;
}
.icon svg {
  max-width: 100%;
  max-height: 100%;
}
.icon--small {
  width: 16px;
}

.clickable {
  cursor: pointer;
}

form * {
  font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
}
form ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

form.processing input,
form.processing textarea,
form.processing button,
form.processing .selecter {
  opacity: 0.2 !important;
  cursor: default !important;
  pointer-events: none !important;
}

input,
textarea {
  font-size: 14px;
  background: #f5f5f4;
  border: none;
  border-radius: 0;
  color: #333;
  display: block;
  padding: 10px 15px;
  width: 100%;
  -webkit-appearance: none;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 14px;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  font-size: 14px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 14px;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 14px;
}

select > option[value=""] {
  display: none;
}

.single-line-form {
  display: flex;
}
.single-line-form input {
  width: 70%;
}
@media screen and (max-width: 575px) {
  .single-line-form input {
    width: 60%;
  }
}
.single-line-form button {
  border-radius: 0;
  padding: 0;
  width: 30%;
}
@media screen and (max-width: 575px) {
  .single-line-form button {
    width: 40%;
  }
}

.search {
  color: #fff;
  padding-left: 35px;
  padding-bottom: 7px;
  position: relative;
}
.search::-webkit-input-placeholder {
  font-size: 14px;
}

.search:-moz-placeholder {
  font-size: 14px;
}

.search::-moz-placeholder {
  font-size: 14px;
}

.search:-ms-input-placeholder {
  font-size: 14px;
}

.search__icon {
  color: #898989;
  position: absolute;
  top: 12px;
  left: 11px;
}

input[type=submit] {
  border: none;
}
input[type=submit]:hover {
  cursor: pointer;
}

textarea {
  height: 200px;
}

label {
  display: block;
}

input.input--donate,
input.input--donate:focus {
  font-size: 30px !important;
  padding-left: 40px;
  position: relative;
}

.donate-marker {
  color: #BB8D3F;
  font-size: 30px;
  font-weight: 600;
  position: absolute;
  left: 33px;
  top: 38px;
  z-index: 2;
}

.form--dark label {
  color: #898989;
  font-size: 16px;
  text-transform: uppercase;
}
.form--dark hr {
  border-color: #222;
}
.form--dark input {
  background: #222;
  color: #fff;
}
.form--dark .selecter .selecter-selected,
.form--dark .selecter .selecter-item,
.form--dark .selecter.open .selecter-selected,
.form--dark .selecter .selecter-options,
.form--dark .selecter.focus .selecter-selected,
.form--dark .selecter .selecter-item.selected {
  background: #222;
  border-color: #020101;
  color: #fff;
}
.form--dark .selecter {
  margin: 0;
}
.form--dark .selecter .selecter-selected {
  background: #222 url(../img/fs-selecter-arrow.png) no-repeat right center;
  padding: 10px;
}
.form--dark .radio-option span,
.form--dark .check-option span {
  color: #898989;
}
.form--dark .radio-option input:checked ~ span,
.form--dark .check-option input:checked ~ span {
  color: #fff;
}
.form--dark .radio-option input:checked ~ .checkmark,
.form--dark .check-option input:checked ~ .checkmark {
  background: #BB8D3F;
  box-shadow: inset 0 0 0 3px #333;
}
.form--dark .radio-option .checkmark,
.form--dark .check-option .checkmark {
  background-color: #333;
}

.gradient-overlay {
  background: linear-gradient(0deg, transparent 0, rgba(0, 0, 0, 0.5));
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.required:after {
  content: " *";
  color: red;
}

.required:after {
  content: " *";
  color: red;
}

.primary-font {
  font-family: "din-2014", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.alt-font {
  font-family: Arial;
}

.text--left {
  text-align: left;
}

.text--center {
  text-align: center;
}

.text--right {
  text-align: right;
}

.text--justify {
  text-align: justify;
}
.text--justify:after {
  content: "";
  display: inline-block;
  width: 100%;
}

.text--justify-flex {
  display: flex;
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box;
  /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Chrome */
  justify-content: space-between;
  -webkit-justify-content: space-between;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .text-justify {
    display: block;
    text-align: justify;
  }
  .text-justify:after {
    content: "";
    display: inline-block;
    width: 100%;
  }
}
.uppercase {
  text-transform: uppercase;
}

.color--buffalo {
  color: #E91F00;
}

.color--smith {
  color: #8a6498;
}

.color--710 {
  color: #258097;
}

.color--white {
  color: #fff;
}

.color--gray {
  color: #767676 !important;
}

.color--black {
  color: #333;
}

.background--buffalo {
  background: #E91F00;
}

.background--smith {
  background: #8a6498;
}

.background--710 {
  background: #258097;
}

.background--white {
  background: #fff;
}

.gold-ul {
  color: #BB8D3F;
}
.gold-ul span {
  color: #333;
}

.map-overlay {
  position: relative;
  width: 100%;
  height: 450px;
  top: 450px;
  margin-top: -450px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.flex {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  -webkit-flex-wrap: wrap;
  /* Safari 6.1+ */
  display: flex;
  flex-wrap: wrap;
}

.pardon-our-dust {
  background: url(../img/under-construction.jpg) center #333;
  background-size: cover;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}
@media screen and (max-width: 1199px) {
  .pardon-our-dust {
    justify-content: center;
    flex-wrap: wrap;
  }
}
.pardon-our-dust__text {
  font-size: 28px;
}
@media screen and (max-width: 1199px) {
  .pardon-our-dust__text {
    display: block;
    text-align: center;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .pardon-our-dust__text {
    font-size: 22px;
  }
}
footer {
  background: #333;
  border-top: 10px solid #BB8D3F;
  color: #767676;
}

.footer__top {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 188px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer-nav {
    display: none;
  }
}
.footer-nav li {
  display: block;
  padding: 10px 0;
  width: 260px;
}
@media screen and (max-width: 1199px) {
  .footer-nav li {
    width: 220px;
  }
}
@media screen and (max-width: 991px) {
  .footer-nav li {
    width: 160px;
  }
}
.footer-nav li .main-nav__arrow {
  display: inline-block !important;
}
.footer-nav a {
  transition: 0.4s;
  color: #fff;
  display: inline-block;
  font-weight: normal;
  font-size: 16px;
  text-decoration: none;
}
.footer-nav a:hover, .footer-nav a.active {
  color: #caa463;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  .footer-nav a {
    font-size: 14px;
  }
}

.footer__search {
  position: relative;
}
.footer__search .search {
  padding-right: 1px;
}
.footer__search .search__icon svg {
  fill: #767676;
}

.search--small {
  background: #222;
}

.footer__social {
  margin: 45px 0 0;
}
@media screen and (max-width: 767px) {
  .footer__social {
    text-align: center;
  }
}
.footer__social .social-icons {
  flex-wrap: wrap;
}
@media screen and (max-width: 1199px) {
  .footer__social .social-icons {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767px) {
  .footer__social .social-icons {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .footer__social .social-circle {
    margin-left: 10px;
    margin-bottom: 25px;
  }
}
.footer__social .social-icons__text {
  padding-top: 8px;
}
@media screen and (max-width: 1199px) {
  .footer__social .social-icons__text {
    display: block;
    text-align: right;
    padding: 0 0 8px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__social .social-icons__text {
    text-align: center;
  }
}

.footer__contact {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .footer__contact {
    text-align: center;
  }
}
.footer__contact p {
  margin-top: 5px;
}

.footer-phone {
  margin-left: 10px;
}
.footer-phone:hover {
  color: #caa463;
  text-decoration: none;
}

.footer__email-signup {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
}
.footer__email-signup .social-circle {
  margin-right: 10px;
}
.footer__email-signup .social-circle svg {
  max-height: 18px;
  max-width: 18px;
  margin-top: 3px;
}
.footer__email-signup:hover {
  color: #FFF;
  cursor: pointer;
}
.footer__email-signup:hover .social-circle {
  background: #BB8D3F;
  border-color: #BB8D3F;
}
.footer__email-signup:hover .social-circle svg path {
  fill: #FFF !important;
}

.footer__legal {
  background: #222;
  color: #898989;
  padding: 15px 0;
}
@media screen and (max-width: 991px) {
  .footer__legal {
    text-align: center;
  }
}
.footer__legal .p--small {
  font-weight: 600;
}

.legal-nav {
  margin-top: 5px;
  float: right;
}
@media screen and (max-width: 991px) {
  .legal-nav {
    float: none;
  }
}
.legal-nav .divider {
  padding: 0 5px;
}
.legal-nav a {
  color: #898989;
}

.copyright {
  float: left;
}
@media screen and (max-width: 991px) {
  .copyright {
    float: none;
    text-align: center;
  }
}

/*
 * Selecter Plugin [Formstone Library]
 * @author Ben Plum
 * @version 2.1.2
 *
 * Copyright © 2013 Ben Plum <mr@benplum.com>
 * Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
 */
.no-js-selecter, .gfield select {
  background: #fff url(../img/fs-selecter-arrow.png) no-repeat right center;
  border: 1px solid #767676;
  border-radius: 0;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  overflow: hidden;
  padding: 8px 10px;
  position: relative;
  text-overflow: clip;
  z-index: 49;
}

.selecter-element {
  *left: -999999px;
  position: absolute;
  opacity: 0;
}

.selecter {
  display: block;
  margin: 10px 0;
  position: relative;
  width: 100% !important;
  z-index: 1;
}

.selecter .selecter-selected {
  background: #fff url(../img/fs-selecter-arrow.png) no-repeat right center;
  border: 1px solid #767676;
  border-radius: 0;
  color: #333;
  cursor: pointer;
  display: block;
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  overflow: hidden;
  padding: 8px 10px;
  position: relative;
  text-overflow: clip;
  z-index: 49;
}

.selecter .selecter-options {
  border: 1px solid #767676;
  border-width: 0 1px 0 1px;
  background-color: #fff;
  border-radius: 0;
  box-shadow: none;
  display: none;
  left: 0;
  margin: 0;
  max-height: 260px;
  overflow: auto;
  overflow-x: hidden;
  padding: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  *width: auto;
  z-index: 50;
}

.selecter .selecter-group {
  background: #F9F9F9;
  border-bottom: 1px solid #767676;
  color: #999;
  display: block;
  font-size: 11px;
  padding: 5px 10px 4px;
  text-transform: uppercase;
}

.selecter .selecter-item {
  background: #fff;
  border-bottom: 1px solid #767676;
  color: #666;
  cursor: pointer;
  display: block;
  font-size: 13px;
  margin: 0;
  overflow: hidden;
  padding: 8px 10px;
  text-overflow: ellipsis;
  width: 100%;
}

.selecter .selecter-item.selected {
  background: #fff;
  color: #BB8D3F;
  font-weight: 600;
}

.selecter .selecter-item.first {
  border-radius: 0;
}

.selecter .selecter-item.last {
  border-radius: 0;
  border-bottom: 0;
}

.month-select {
  position: relative;
}
.month-select .selecter {
  max-width: 75%;
}
.month-select .selecter .selecter-selected {
  font-size: 21px !important;
}

.selecter .selecter-item:hover,
.selecter .selecter-item.selected:hover {
  background-color: #caa463;
  color: #fff;
}

@media screen and (max-width: 800px) {
  .selecter {
    width: 100%;
  }

  .selecter:hover .selecter-selected {
    background-color: #fff;
  }

  .selecter.disabled .selecter-item:hover {
    background: #ddd;
  }
}
/* Open */
.selecter.open {
  z-index: 3;
}

.selecter.open .selecter-selected {
  border-radius: 0;
  z-index: 1051;
}

.selecter.open .selecter-selected,
.selecter.focus .selecter-selected {
  background-color: #fff;
}

/* 'Cover' Positioning */
.selecter.cover .selecter-options {
  border-radius: 0;
  border-width: 1px;
  top: 0;
}

.selecter.cover .selecter-options .selecter-item.first {
  border-radius: 0;
}

.selecter.cover.open .selecter-selected {
  border-radius: 0;
  z-index: 49;
}

/* 'Bottom' Positioning */
.selecter.bottom .selecter-options {
  border-width: 1px 1px 0;
  bottom: 100%;
  top: auto;
}

.selecter.bottom .selecter-item.last {
  border: none;
}

.selecter.bottom.open .selecter-selected {
  border-radius: 0;
}

.selecter.bottom.open .selecter-options {
  border-radius: 0;
}

/* 'Bottom' + 'Cover' Positioning */
.selecter.bottom.cover .selecter-options {
  bottom: 0;
  top: auto;
}

.selecter.bottom.cover.open .selecter-selected {
  border-radius: 0;
}

.selecter.bottom.cover.open .selecter-options {
  border-radius: 0;
}

/* Multiple Select */
.selecter.multiple .selecter-options {
  border-radius: 0;
  border-width: 1px;
  box-shadow: none;
  display: block;
  position: static;
  width: 100%;
}

/* 'Disabled' State */
.selecter.disabled .selecter-selected {
  background: #fff;
  border-color: #eee;
  color: #ccc;
  cursor: default;
}

.selecter.disabled .selecter-options {
  background: #fff;
  border-color: #eee;
}

.selecter.disabled .selecter-group,
.selecter.disabled .selecter-item {
  border-color: #eee;
  color: #ccc;
  cursor: default;
}

.selecter.disabled .selecter-item.selected {
  background: #fafafa;
}

/* Media Queries */
@media screen and (max-width: 1200px) {
  .month-select .selecter .selecter-selected {
    font-size: 17px !important;
  }
}
@media screen and (max-width: 800px) {
  .selecter {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .selecter {
    width: 100%;
  }
}
.banner {
  background: #020101;
  position: relative;
}

.slide-bg {
  display: block;
  margin-bottom: -55px;
  position: relative;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .slide-bg {
    margin-bottom: -30px;
  }
}
@media screen and (max-width: 575px) {
  .slide-bg {
    display: none !important;
  }
}
.slide-bg--mobile {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .slide-bg--mobile {
    display: block !important;
  }
}

.js-homepage-slider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
}
.js-homepage-slider.slick-initialized {
  visibility: visible;
  opacity: 1;
}

.homepage-banner {
  position: relative;
  margin-top: 98px;
}
@media screen and (max-width: 1199px) {
  .homepage-banner {
    margin-top: 76px;
  }
}
@media screen and (max-width: 991px) {
  .homepage-banner {
    border-top: solid 86px #333;
    margin-top: 0;
  }
}
.homepage-banner ul.slick-dots {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.homepage-banner ul.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.homepage-banner ul.slick-dots button {
  background: rgba(0, 0, 0, 0.33);
  border: 1px solid #BB8D3F;
  border-radius: 50%;
  text-indent: -9999px;
  height: 10px;
  width: 10px;
}
.homepage-banner ul.slick-dots button:focus {
  outline: none;
}
.homepage-banner ul.slick-dots button:hover {
  cursor: pointer;
}
.homepage-banner ul.slick-dots .slick-active button {
  background: #BB8D3F;
}

.slide-nav {
  position: absolute;
  top: -30px;
  right: 60px;
  left: 60px;
  text-align: center;
  z-index: 1020;
}
@media screen and (max-width: 575px) {
  .slide-nav {
    left: 0;
    right: 0;
  }
}

.slide {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 50px;
}
.slide__content {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .slide__content {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .slide__content-box {
    padding-bottom: 50px;
  }
}
.slide__title {
  margin-bottom: 5px;
}
@media screen and (max-width: 600px) {
  .slide__title {
    font-size: 42px;
  }
}
.slide__subtitle {
  color: #898989;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 600px) {
  .slide__subtitle {
    font-size: 16px;
  }
}
.slide__timeline {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.slide__timeline .icon {
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .slide__timeline {
    font-size: 14px;
  }
}
.slide__buttons {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .slide__buttons {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .slide__buttons {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .slide__button {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .slide__button {
    flex-grow: 2;
  }
}
.slide__button:nth-of-type(2) {
  margin-left: 30px;
}
@media screen and (max-width: 575px) {
  .slide__button:nth-of-type(2) {
    margin-left: 0;
    margin-top: 15px;
  }
}
.slide__arrow {
  background: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  z-index: 1010;
}
.slide__arrow:hover {
  text-decoration: none;
  cursor: pointer;
}
.slide__arrow.slick-prev {
  left: -40px;
  padding-right: 5px;
}
.slide__arrow.slick-next {
  right: -40px;
  padding-left: 5px;
}
@media screen and (max-width: 1024px) {
  .slide__arrow {
    opacity: 0.5;
    top: -50px;
  }
  .slide__arrow.slick-prev {
    padding-right: 0;
    left: 15px;
  }
  .slide__arrow.slick-next {
    padding-left: 0;
    right: 15px;
  }
}
@media screen and (max-width: 575px) {
  .slide__arrow {
    display: none !important;
  }
}

.banner-overlap {
  margin-top: -50px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .banner-overlap {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 991px) {
  .performance-listing.banner-overlap {
    margin-top: -100px;
  }
}

.homepage-performances__spacing {
  margin-top: 30px;
}
.homepage-performances__spacing .box-wrapper {
  display: flex;
  height: 100%;
}
.homepage-performances__spacing .show-preview--small {
  display: flex;
  flex-direction: column;
}
.homepage-performances__spacing .show-preview--small .show-preview__image {
  height: 205px;
}
.homepage-performances__spacing .show-preview--small .show-preview__description {
  margin-bottom: 25px;
}
.homepage-performances__spacing .show-preview--small .show-preview__buttons {
  margin-top: auto;
}

.sidebar {
  margin-bottom: 30px;
  position: relative;
  z-index: 1010;
}
@media screen and (max-width: 991px) {
  .sidebar {
    display: none;
    max-height: 300px;
    overflow: scroll;
  }
}
@media screen and (max-width: 991px) {
  .sidebar.active {
    display: block;
  }
}

.sidebar--upcoming {
  margin-bottom: -50px;
}
@media screen and (max-width: 991px) {
  .sidebar--upcoming {
    margin-bottom: 30px;
  }
}

.sidebar-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .sidebar-header {
    display: none;
  }
}

.sidebar-header__date {
  float: right;
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

.sidebar__no-events {
  display: block;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .sidebar__no-events {
    display: none;
  }
}

.sidebar-header__day {
  font-size: 32px;
  line-height: 1;
  color: #BB8D3F;
  display: block;
}

.sidebar-header__month {
  display: block;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sidebar-content {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}
@media screen and (max-width: 991px) {
  .sidebar-content {
    padding: 10px 0;
  }
}
.sidebar-content:first-child {
  padding-top: 0;
}
@media screen and (max-width: 991px) {
  .sidebar-content:nth-of-type(2) {
    border-top: none;
    padding-top: 0;
  }
}
.sidebar-content:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.sidebar-content .event-details {
  color: #898989;
  font-weight: 600;
}
.sidebar-content p:first-of-type {
  margin-top: 15px;
}

.sidebar-content__event {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .sidebar-content__event {
    margin: 15px 0 0;
  }
}

.sidebar-content__time {
  display: block;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}

.box-office-hours {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.box-office-hours .box-office-hours__icon {
  display: inline-block;
  margin-right: 5px;
}
.box-office-hours .box-office-hours__icon svg {
  fill: #767676;
}
.box-office-hours .office-hours {
  display: inline-block;
  color: #898989;
  line-height: 16px;
}

.sidebar-toggles {
  display: none;
}
@media screen and (max-width: 991px) {
  .sidebar-toggles {
    display: flex;
  }
}

.sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  border-top: 5px solid #333;
  background: #333;
  min-height: 73px;
  padding: 15px 40px;
  width: 50%;
}
.sidebar-toggle:hover {
  cursor: pointer;
}
@media screen and (max-width: 575px) {
  .sidebar-toggle {
    padding: 15px 25px;
  }
}
.sidebar-toggle h5 {
  color: #BB8D3F;
  margin: 0;
}
.sidebar-toggle.active {
  background: #fff;
  border-color: #BB8D3F;
}
.sidebar-toggle.active h5 {
  color: #020101;
}
.sidebar-toggle.active .sidebar-toggle__date {
  display: inline;
}
.sidebar-toggle--today.active {
  justify-content: flex-start;
}

.sidebar-toggle__date {
  transition: 0.4s;
  margin-left: auto;
  display: none;
}

.sidebar-toggle__day {
  color: #BB8D3F;
  display: block;
  font-size: 24px;
  line-height: 1;
}

.sidebar-toggle__month {
  display: block;
  font-size: 14px;
  line-height: 1;
}

.alert-danger {
  transition: 0.4s;
  background: rgba(233, 31, 0, 0.8);
  color: #fff;
  margin-bottom: 30px;
  padding: 10px;
  font-weight: bold;
}

.alert-danger:empty {
  display: none;
}

.warning {
  transition: 0.4s;
  background: rgba(233, 31, 0, 0.8);
  color: #fff;
  margin-bottom: -69px;
  padding: 5px 10px 10px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 900;
}
.warning:hover {
  cursor: pointer;
  background: #E91F00;
}
.warning a {
  color: #FFF;
  text-decoration: underline;
}
.warning .warning__close {
  font-size: 15px;
  position: absolute;
  top: 8px;
  right: 10px;
}
@media screen and (max-width: 1199px) {
  .warning .p--small {
    font-size: 12px;
  }
}

.homepage__button {
  margin-bottom: 50px;
}

.weather {
  display: flex;
  align-items: center;
}

.weather__icon {
  margin-right: 10px;
}

.weather__current {
  font-size: 16px;
  margin-left: auto;
}

.icon-09d,
.icon-09n,
.icon-10d,
.icon-10n {
  content: url(../img/icon-rain.svg);
}

.icon-11d,
.icon-11n {
  content: url(../img/icon-thunder.svg);
}

.icon-13d,
.icon-13n {
  content: url(../img/icon-snow.svg);
}

.icon-02d,
.icon-02n {
  content: url(../img/icon-partly-cloudy.svg);
}

.icon-03d,
.icon-03n,
.icon-04d,
.icon-04n {
  content: url(../img/icon-cloudy.svg);
}

.icon-01d {
  content: url(../img/icon-clear-day.svg);
}

.icon-01n {
  content: url(../img/icon-clear-night.svg);
}

.icon-23,
.icon-24,
.icon-25 {
  content: url(../img/icon-wind.svg);
}

@media screen and (max-width: 575px) {
  .about-our-theatres .display-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .about-our-theatres .p--large {
    font-size: 18px;
  }
}

.about-theatre {
  background: center no-repeat #020101;
  background-size: cover;
  color: #fff;
  display: block;
  padding: 80px;
}
@media screen and (max-width: 1199px) {
  .about-theatre {
    padding: 40px;
  }
}
@media screen and (max-width: 575px) {
  .about-theatre {
    padding: 40px 15px;
  }
}
.about-theatre .h1-like {
  line-height: 1;
}
.about-theatre .button, .about-theatre input[type=submit],
.about-theatre p {
  margin-top: 25px;
}

.about-theatre--main {
  background-image: url(https://sheas.org/wp-content/uploads/2018/02/sheas_wonder_theatre.jpg);
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 575px) {
  .about-theatre--main {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.about-theatre--main .display-title {
  display: block;
  width: 100%;
}

.about-theatre--buffalo {
  background-image: url(../img/about-buffalo.png);
  border-top: 10px solid #E91F00;
}

.about-theatre--smith {
  background-image: url(../img/about-buffalo.png);
  border-top: 10px solid #8a6498;
}

.about-theatre--710 {
  background-image: url(../img/about-710.png);
  border-top: 10px solid #258097;
}

.home .show-preview__content {
  padding: 40px !important;
}
@media screen and (max-width: 991px) {
  .home .show-preview__content {
    padding: 25px;
  }
}
.home .show-preview__image img {
  height: 100%;
}

.subscribe-social p {
  margin-top: 15px;
}

.become-subscriber {
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .become-subscriber {
    padding-right: 15px;
    padding-bottom: 25px;
  }
}

.request-info {
  margin-top: 25px;
}

.social-media {
  border-left: 1px solid #ddd;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .social-media {
    border-left: none;
    border-top: 1px solid #ddd;
    padding-left: 15px;
    padding-top: 25px;
  }
}
.social-media .social-icons {
  margin-top: 25px;
  justify-content: flex-start;
}
.social-media .social-icons a {
  margin-right: 25px;
}

.blog-post--featured {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .blog-post--small {
    margin-bottom: 30px;
  }
}
.blog-post--small .blog-post__image {
  margin-bottom: 15px;
}
.blog-post--small .blog-post__image img {
  width: 100%;
}
.blog-post--boxed {
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-post--boxed .blog-post__image {
  margin-bottom: 0;
}
.blog-post--boxed .blog-post__preview {
  margin-top: 0;
}
.blog-post h2 a {
  color: #333;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .blog-post__preview {
    margin-top: 30px;
  }
}
.blog-post__image img {
  width: 100%;
}
.blog-post__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .blog-post__meta {
    display: block;
  }
}
.blog-post__meta i {
  color: #767676;
}
@media screen and (max-width: 767px) {
  .blog-post__meta i {
    display: block;
  }
}

.blog-list--boxed {
  padding-top: 15px;
  padding-bottom: 15px;
}

.blog-select {
  margin-bottom: 30px;
}

.blog-tag {
  background: #f5f5f4;
  display: flex;
  align-items: center;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .blog-tag {
    display: inline-flex;
    margin-top: 10px;
  }
}
.blog-tag span {
  display: inline-block;
  color: #BB8D3F;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.blog-tag__image {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.blog-content {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding-top: 40px;
  padding-bottom: 40px;
}
.blog-content .share-buttons:before {
  content: "";
  display: block;
  background: #BB8D3F;
  height: 2px;
  width: 40px;
  margin: 50px auto 25px;
}

.wp-caption.aligncenter .wp-caption-text {
  color: #767676;
  display: block;
  font-size: 16px;
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}

.alignright {
  float: right;
  margin-left: 30px;
  max-width: 48.5% !important;
}
@media screen and (max-width: 767px) {
  .alignright {
    max-width: 100% !important;
    margin-left: 0;
  }
}

.alignleft {
  float: left;
  margin-right: 30px;
  max-width: 48.5% !important;
}
@media screen and (max-width: 767px) {
  .alignleft {
    max-width: 100% !important;
    margin-right: 0;
  }
}

.alignright, .alignleft {
  position: relative;
}
@media screen and (max-width: 767px) {
  .alignright, .alignleft {
    margin-bottom: 15px;
  }
}
.alignright .wp-caption-text, .alignleft .wp-caption-text {
  background: rgba(0, 0, 0, 0.75);
  color: #FFF;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding: 10px;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

blockquote {
  max-width: 800px;
  margin: 50px auto;
  padding: 0;
  border-left: none;
}
blockquote p {
  color: #898989;
  padding: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}
@media screen and (max-width: 767px) {
  blockquote p {
    font-size: 26px;
  }
}
blockquote p:before {
  content: "“";
  color: #BB8D3F;
}
blockquote p:after {
  content: "”";
  color: #BB8D3F;
}

.post-header {
  display: flex;
  margin-bottom: 30px;
}
.post-header__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .post-header__meta {
    align-items: flex-start;
    margin-top: 10px;
  }
}
.post-header .col-lg-9 {
  padding-right: 30px;
}
@media screen and (max-width: 991px) {
  .post-header .col-lg-9 {
    padding-right: 15px;
  }
}
.post-header .col-lg-3 {
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 991px) {
  .post-header .col-lg-3 {
    display: none;
  }
}

.author {
  display: inline-flex;
  clear: both;
}
.author__image {
  border-radius: 50%;
  height: 48px;
  margin-right: 10px;
  overflow: hidden;
  width: 48px;
}
.author__name {
  font-weight: 400;
}
.author__bio {
  color: #767676;
  font-size: 14px;
}

.blog-video {
  margin: 30px 0;
}

.icon-cta {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.icon-cta__icon {
  margin-right: 10px;
  width: 20px;
}

.bistro-menu {
  display: flex;
  background: #FFF;
  margin: 15px 0;
  text-align: center;
}
.bistro-menu__image {
  float: left;
  width: 140px;
}
.bistro-menu__info {
  padding: 20px;
  width: 100%;
}
.bistro-menu__date {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.bistro-menu__title {
  color: #767676;
  display: block;
  font-size: 16px;
  font-weight: bold;
}
.bistro-menu__link {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
}

.project-steps .step {
  border: 1px solid #ddd;
  margin-bottom: 30px;
  padding: 30px;
}
.project-steps .step__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.project-steps .step__timeline {
  color: #767676;
}
.project-steps .step__icon {
  float: left;
  padding-top: 5px;
  width: 32px;
}
.project-steps .step__text {
  padding-left: 60px;
}
.project-steps .step__text p {
  color: #898989;
}

.make-a-difference__icon {
  display: block;
  margin: 30px auto 15px;
  width: 60px;
}
.make-a-difference__text {
  margin-bottom: 15px;
}

.contact-info {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-info {
    flex-wrap: wrap;
  }
}
.contact-info__group {
  display: block;
  padding: 30px;
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact-info__group {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
}
.contact-info__group:first-child {
  border-right: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .contact-info__group:first-child {
    border: none;
    border-bottom: 1px solid #ddd;
  }
}
.contact-info__section {
  margin-top: 20px;
}
.contact-info__image {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.contact-info__image svg {
  max-width: 50px;
  max-height: 50px;
}
.contact-info span {
  display: block;
}
.contact-info__title {
  color: #767676;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.contact-info__info {
  color: #BB8D3F;
  font-weight: bold;
  font-size: 15px;
}

#field_1_1 {
  display: none;
}

.gform_validation_container {
  display: none !important;
}

.contact__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 0;
}
@media screen and (max-width: 991px) {
  .contact__row {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.time-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.time-row .hours {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.time-row .hours .time {
  text-transform: uppercase;
}

.po-box {
  display: flex;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
.po-box svg {
  float: left;
  max-width: 40px;
  margin-right: 15px;
}
.po-box p {
  margin: 0;
}
@media screen and (max-width: 767px) {
  .po-box p {
    font-size: 14px;
  }
}

.contact__social {
  display: flex;
  justify-content: flex-end;
}
.contact__social a {
  margin-left: 15px;
}

.contact__theatres p {
  margin: 10px 0 0;
}

.ginput_container_multiselect {
  position: relative;
  z-index: -100;
}

.contact-form label {
  color: #767676;
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  transition: 0.4s;
  border: 1px solid #767676;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1px solid #ddd;
  background: #fff;
}
.contact-form input[type=submit] {
  border: none;
  display: block;
  margin: 30px auto 0;
  min-width: 200px;
  max-width: 400px;
}
.contact-form .col-sm-6:nth-of-type(2) {
  padding-left: 0;
}
.contact-form .col-sm-6:nth-of-type(3) {
  margin-bottom: 35px;
  padding-right: 0;
}
.contact-form .validation_message {
  color: #E91F00;
  font-weight: bold;
  font-size: 16px;
}
.contact-form .gfield_error input,
.contact-form .gfield_error textarea {
  border: 2px solid #E91F00;
}
.contact-form .selecter {
  position: relative;
}
.contact-form .selecter-selected {
  border: 1px solid #767676;
  background-color: #f5f5f4;
}
.contact-form .selecter-options {
  border-left: 1px solid #767676;
  border-right: 1px solid #767676;
}
.contact-form .selecter-item {
  border-bottom: 1px solid #767676;
  font-size: 18px;
  font-weight: 400;
}

.contact-end {
  margin-bottom: 50px;
}

.js-form-slider .slick-track {
  overflow-x: hidden;
  overflow-y: visible;
}

.dashboard-header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .dashboard-header {
    flex-wrap: wrap;
  }
}
.dashboard-header__today {
  float: left;
  border-right: 1px solid #ddd;
  padding-right: 15px;
  margin-right: 15px;
  margin-bottom: 0;
}
.dashboard-header__day {
  font-size: 24px;
  line-height: 1;
  color: #BB8D3F;
}
.dashboard-header__month {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.dashboard-header__button {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .dashboard-header__button {
    margin-left: 0;
    margin-top: 15px;
    display: block;
    width: 100%;
  }
}

.map__label {
  background: #FFF;
  display: block;
  padding: 15px;
  width: 230px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
}
.map__label h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.map__label .parking-key {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.map__label .parking-icon {
  background: #f69e9e;
  border: 2px solid #fd2121;
  display: inline-block;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}

.dashboard-row {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .dashboard-row {
    margin-top: 0;
  }
}
.dashboard-row .dashboard-col {
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 991px) {
  .dashboard-row .dashboard-col {
    border-left: none;
  }
}
@media screen and (max-width: 767px) {
  .dashboard-row .dashboard-col {
    margin-top: 25px;
  }
}
.dashboard-row .dashboard-col:first-child {
  border: none;
}
@media screen and (max-width: 991px) {
  .dashboard-row .dashboard-col:first-child {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .dashboard-row .dashboard-col:first-child {
    margin-bottom: 0;
  }
}

.dashboard-title {
  color: #333;
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.dashboard-show, .dashboard-hide {
  display: block;
  margin: 10px auto 0;
}

.dashboard-events .dashboard-event {
  display: block;
}
.dashboard-events.one .dashboard-event:nth-child(n+3) {
  display: none;
}

.dashboard-content {
  text-align: center;
}
.dashboard-content .box-office-hours {
  justify-content: center;
}
.dashboard-content .weather {
  justify-content: center;
  flex-wrap: wrap;
}
.dashboard-content .weather__current {
  font-size: 14px;
  display: block;
  width: 100%;
  margin-left: 0;
  margin-top: 5px;
}

.bookmark-prompt {
  background: #BB8D3F;
  color: #FFF;
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1010;
}
.bookmark-prompt h4 {
  color: #FFF;
  margin: 0;
}
.bookmark-prompt p {
  margin: 0;
}
.bookmark-prompt .col-12 {
  position: relative;
}
.bookmark-prompt .close {
  color: #FFF;
  font-size: 30px;
  line-height: 1;
  position: absolute;
  top: -5px;
  right: 15px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-end {
  justify-content: flex-end;
}

.m-0 {
  margin: 0 !important;
}

.mt-3 {
  margin-top: 30px;
}

.mb-3 {
  margin-bottom: 30px;
}

.mr-3 {
  margin-right: 10px;
}

.page-template-template-bulletin-board-new .content-box {
  padding: 30px;
}
.page-template-template-bulletin-board-new .content-box.subscriber-today {
  padding: 0px 20px;
}
.page-template-template-bulletin-board-new .banner-overlap {
  margin-top: -130px;
}
@media screen and (max-width: 991px) {
  .page-template-template-bulletin-board-new .banner-overlap {
    margin-top: -130px !important;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-bulletin-board-new .banner-overlap {
    margin-top: -110px !important;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-bulletin-board-new .display-title {
    margin-top: 25px;
    font-size: 42px;
  }
}
.page-template-template-bulletin-board-new .volunteer-box img {
  object-fit: cover;
  max-height: 250px;
  width: 100%;
}
.page-template-template-bulletin-board-new .weather {
  display: block;
}
.page-template-template-bulletin-board-new .dashboard-header {
  border-bottom: none;
}

.dashboard-header {
  padding: 25px;
  flex-grow: 1;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .dashboard-header {
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
}
.dashboard-header__today {
  float: left;
  border-right: 1px solid #ddd;
  padding-right: 15px;
  margin-right: 15px;
  margin-bottom: 0;
}
.dashboard-header__day {
  font-size: 28px;
  line-height: 1;
  color: #BB8D3F;
}
@media screen and (max-width: 767px) {
  .dashboard-header__day {
    font-size: 24px;
  }
}
.dashboard-header__month {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .dashboard-header__month {
    font-size: 24px;
  }
}
.dashboard-header__button {
  margin-left: auto;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .dashboard-header__button {
    width: auto;
  }
}

.dashboard-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.dashboard-col {
  border-left: 1px solid #ddd;
  padding: 25px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .dashboard-col {
    border-left: none;
    border-top: 1px solid #ddd;
  }
}
@media screen and (max-width: 991px) {
  .dashboard-col {
    border-left: none;
    border-top: 1px solid #ddd;
  }
}
@media screen and (max-width: 991px) {
  .dashboard-col.border-right-mobile {
    border-right: 1px solid #ddd !important;
  }
}
.dashboard-col .box-office-hours {
  justify-content: center;
}
.dashboard-col .weather {
  justify-content: center;
  flex-wrap: wrap;
}
.dashboard-col .weather__current {
  font-size: 14px;
}

.dashboard-title {
  color: #333;
  display: block;
  margin-top: 15px;
  font-weight: bold;
}

.dashboard-show, .dashboard-hide {
  display: block;
  margin: 10px auto 0;
}

.dashboard-event {
  background: #FFF;
  display: flex;
}
.dashboard-event .image {
  flex-grow: 1;
  min-width: 225px;
  max-width: 250px;
  height: 100%;
}
.dashboard-event .image img {
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .dashboard-event .image {
    min-width: 300px;
    max-width: none;
  }
}
@media screen and (max-width: 767px) {
  .dashboard-event .image {
    display: none;
  }
}
.dashboard-event .content {
  flex-grow: 0;
  padding: 25px;
}
.dashboard-event .event-details {
  color: #767676;
  font-size: 16px;
}
.dashboard-event .button, .dashboard-event input[type=submit] {
  margin-top: 15px;
}

@media screen and (max-width: 1199px) {
  .subscriber-faq {
    margin-bottom: 30px;
  }
}

.bookmark-prompt {
  background: #BB8D3F;
  color: #FFF;
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1010;
}
.bookmark-prompt h4 {
  color: #FFF;
  margin: 0;
}
.bookmark-prompt p {
  margin: 0;
}
.bookmark-prompt .col-12 {
  position: relative;
}
.bookmark-prompt .close {
  color: #FFF;
  font-size: 30px;
  line-height: 1;
  position: absolute;
  top: -5px;
  right: 15px;
}

.subscriber-meta {
  display: flex;
  margin: 25px 0;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .subscriber-meta {
    display: block;
    margin: 0;
  }
}
.subscriber-meta div {
  border-left: 1px solid #ddd;
  min-width: 90px;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-flex;
  align-items: center;
}
.subscriber-meta div:first-child {
  border: none;
  padding-left: 0;
}
@media screen and (max-width: 991px) {
  .subscriber-meta div {
    border: none;
    display: flex;
    margin: 10px 0;
    padding: 0;
    width: 100%;
  }
}
.subscriber-meta img {
  display: block;
  height: 24px;
  margin-right: 5px;
}
.subscriber-meta span {
  display: block;
  font-size: 16px;
}

.row.d-flex {
  flex-wrap: wrap;
}

.bda-box .col-lg-6 {
  margin-top: 25px;
}

.subscriber-info {
  border: 1px solid #ddd;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.subscriber-info ul, .subscriber-info p {
  margin: 15px 0 0;
}
.subscriber-info a {
  margin-top: 15px;
}

.page-template-template-bulletin-board-new .arrow-link {
  margin-bottom: 30px;
  padding: 30px;
}
.page-template-template-bulletin-board-new .faq-header {
  display: block;
  margin-bottom: 30px;
}
.page-template-template-bulletin-board-new .faq-search {
  background: #333;
  margin: 0 -30px 30px;
  padding: 25px;
  position: relative;
  width: auto;
}
.page-template-template-bulletin-board-new .faq-search input {
  background: #222;
  color: #FFF;
}
.page-template-template-bulletin-board-new .faq-search input::placeholder {
  color: #FFF;
}
.page-template-template-bulletin-board-new .faq-search .search__icon {
  top: 37px;
  left: 36px;
}
.page-template-template-bulletin-board-new .faq-section .faq button {
  display: block;
  text-align: left;
}
.page-template-template-bulletin-board-new .faq-section .faq__question {
  text-align: left;
}
.page-template-template-bulletin-board-new .faq-section .faq__link {
  display: block;
  margin-top: 3px;
  width: 90px;
}

.map__label {
  background: #FFF;
  border: 1px solid #ddd;
  display: block;
  padding: 15px;
  width: 200px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
}
.map__label h2 {
  margin: 0 0 10px;
  font-size: 18px;
}
.map__label .parking-key {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}
.map__label .parking-icon {
  background: #f69e9e;
  border: 2px solid #fd2121;
  display: inline-block;
  margin-right: 10px;
  width: 25px;
  height: 25px;
}

.feature-boxes {
  margin-bottom: 30px;
}

.feature-box {
  background: #FFF;
  height: 100%;
}
.feature-box .equal-height {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.feature-box .equal-height .button-wrap {
  padding: 0 25px 25px;
}

.faq-section .faq {
  border: 1px solid #ddd;
  margin-bottom: 20px !important;
  padding: 10px 15px !important;
}

#donate_form .content-box {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .page-template-template-donate .performance-single__buttons {
    padding-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-template-donate .faq-section .faq button {
    display: block;
  }
  .page-template-template-donate .faq-section .faq button .faq__question {
    display: block;
  }
}

.certificate {
  background: #FFF;
  border: 15px solid #BB8D3F;
  border-radius: 3px;
  padding: 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .certificate {
    margin-bottom: 30px;
  }
}
.certificate .corner {
  background: #BB8D3F;
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
}
.certificate .corner:nth-child(1) {
  border-radius: 0 0 100px 0;
  top: 0;
  left: 0;
}
.certificate .corner:nth-child(2) {
  border-radius: 0 0 0 100px;
  top: 0;
  right: 0;
}
.certificate .corner:nth-child(3) {
  border-radius: 100px 0 0 0;
  bottom: 0;
  right: 0;
}
.certificate .corner:nth-child(4) {
  border-radius: 0 100px 0 0;
  bottom: 0;
  left: 0;
}

.range-h1 {
  display: inline-block;
  text-align: center;
  position: relative;
}
.range-h1 span:first-child {
  color: #BB8D3F;
  display: inline-block;
  margin-right: 5px;
  position: absolute;
  top: 0;
  left: -25px;
}
.range-h1 span.range-value {
  font-weight: normal;
  font-size: 60px;
}

.range-slider {
  width: 100%;
}

.rangeslider {
  -webkit-appearance: none;
  width: 100%;
  height: 48px !important;
  border: 1px solid #ddd;
  border-radius: 50px !important;
  background: #FFF !important;
  box-shadow: none !important;
  outline: none;
  padding: 0;
  margin: 0 0 25px;
}
.rangeslider .rangeslider__fill {
  background: #8a6498;
  border: 2px solid #FFF;
  border-radius: 40px 0 0 40px !important;
}
.rangeslider.smallest .rangeslider__fill {
  border-radius: none !important;
  border: none;
  background: none;
  box-shadow: none;
}
.rangeslider .rangeslider__handle, .rangeslider .rangeslider__handle:after {
  appearance: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.16);
  background: #FFF;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
  top: 1px !important;
}
.rangeslider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #000, 0 0 0 6px #BB8D3F;
}

.subscription-radios {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.subscription-radios input[type=radio] {
  opacity: 0;
  width: 0;
  height: 0;
}
.subscription-radios input[type=radio]:active ~ label {
  opacity: 1;
}
.subscription-radios input[type=radio]:checked ~ label {
  border-color: #BB8D3F;
  opacity: 1;
  background: #BB8D3F;
}
.subscription-radios input[type=radio]:checked ~ label .subscription-radios__promo {
  background: #BB8D3F;
}
.subscription-radios input[type=radio]:checked ~ label h4 {
  color: #FFF;
}
.subscription-radios input[type=radio]:checked ~ label .subscription-radios__price, .subscription-radios input[type=radio]:checked ~ label .subscription-radios__benefit {
  color: #fff !important;
}
.subscription-radios input[type=radio]:checked ~ label .subscription-radios__frequency {
  color: #222;
}
.subscription-radios input[type=radio]:checked ~ label:before {
  border-color: #333;
}
.subscription-radios input[type=radio]:checked ~ label:after {
  opacity: 1;
}
.subscription-radios .label-wrap {
  display: flex;
  margin-bottom: 25px;
  width: 100%;
}
.subscription-radios label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border: 1px solid #ddd;
  margin: 0;
  padding: 15px 15px 15px 75px;
  position: relative;
  width: 100%;
  transition: all 0.4s;
  text-align: left;
}
.subscription-radios label:hover {
  border-color: #BB8D3F;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.subscription-radios label:before {
  content: "";
  border-radius: 50%;
  display: block;
  width: 40px;
  height: 40px;
  border: 3px solid #767676;
  position: absolute;
  left: 17.5px;
  top: 50%;
  transform: translateY(-50%);
}
.subscription-radios label:after {
  content: "";
  border-right: 7px solid #fff;
  border-bottom: 7px solid #fff;
  display: block;
  width: 20px;
  height: 40px;
  opacity: 0;
  position: absolute;
  left: 17.5px;
  top: 50%;
  transform: rotate(45deg) translate(-43%, -80%);
}
.subscription-radios h4 {
  color: #333;
  display: block;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 0;
  width: 100%;
  transition: all 0.4s;
}
.subscription-radios__price {
  color: #333;
  display: block;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  transition: all 0.4s;
}
.subscription-radios__frequency {
  display: block;
  font-size: 14px;
  text-align: center;
  width: 100%;
}
.subscription-radios__benefit {
  display: block;
  font-size: 14px;
  margin: 15px 0;
  width: 100%;
}
.subscription-radios__promo {
  background: #767676;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
  padding: 5px 15px;
  transition: all 0.4s;
}
.subscription-radios__promo.no-promo {
  background: none;
  height: 34px;
}

.program {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .education__lg-margin {
    margin-bottom: 30px;
  }
}

.school-event {
  margin-top: 30px;
}
.school-event:first-child {
  margin-top: 0;
}
.school-event__image {
  float: left;
  width: 200px;
}
@media screen and (max-width: 991px) {
  .school-event__image {
    width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .school-event__image {
    display: none;
  }
}
.school-event__content {
  padding-left: 215px;
}
@media screen and (max-width: 991px) {
  .school-event__content {
    padding-left: 165px;
  }
}
@media screen and (max-width: 767px) {
  .school-event__content {
    padding-left: 0;
  }
}

.event-meta {
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
  margin-top: 25px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.event-meta__item {
  display: flex;
  align-items: center;
}
.event-meta__icon {
  margin-right: 10px;
  height: 24px;
  max-width: 24px;
}
.event-meta__icon svg {
  height: 100%;
}

@media screen and (max-width: 991px) {
  .event-sidebar {
    display: none;
  }
}
.event-sidebar .content-box {
  margin-bottom: 30px;
}

.event-preview {
  margin-top: 30px;
}
.event-preview__image {
  margin-bottom: 15px;
}
.event-preview a:hover {
  text-decoration: none;
}
.event-preview h2 {
  color: #222;
}
.event-preview h5 {
  color: #BB8D3F;
}
.event-preview__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.registration-container {
  margin-top: 30px;
  margin-bottom: 30px;
}

.event-registration h1 {
  font-size: 36px;
}
.event-registration .selecter {
  margin: 0;
}
.event-registration .selecter-selected {
  padding: 10px;
}
.event-registration label {
  color: #767676;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}
.event-registration .button--event {
  display: block;
  margin: 30px auto 0;
}
.event-registration hr {
  border-top: 1px solid #ddd;
  margin-top: 25px;
  margin-bottom: 25px;
  width: 100%;
}

.event-registration__field {
  margin-top: 15px;
}

.radio-buttons {
  display: flex;
  align-items: center;
  height: 47px;
}

.radio-option, .check-option {
  display: block;
  font-size: 18px;
  line-height: 1;
  margin-right: 25px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.radio-option input, .check-option input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 2;
  cursor: pointer;
  -webkit-appearance: none;
  height: 100%;
  width: 100%;
}
.radio-option input:checked ~ .checkmark, .check-option input:checked ~ .checkmark {
  background: #BB8D3F;
  box-shadow: inset 0 0 0 3px #fff;
}
.radio-option .checkmark, .check-option .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 18px;
  width: 18px;
  border: 1px solid #767676;
  background-color: #FFF;
}

.check-option.disabled {
  text-decoration: line-through;
  color: #767676;
}
.check-option.disabled input:disabled ~ .checkmark {
  background: #ddd;
  box-shadow: inset 0 0 0 3px #fff;
}

.radio-option .checkmark {
  border-radius: 50%;
}

.checkbox-list .check-option, .checkbox-list .radio-option {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-bottom: 15px;
}

@media screen and (max-width: 575px) {
  #donate_form .radio-buttons {
    height: auto;
    flex-wrap: wrap;
  }
  #donate_form .radio-option, #donate_form .check-option {
    width: 100%;
    margin: 0 0 10px;
  }
}

.js-form-arrows, .js-usher-arrows {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
}
.js-form-arrows .slick-next.slick-disabled, .js-usher-arrows .slick-next.slick-disabled {
  display: none !important;
}
.js-form-arrows .submit-button, .js-usher-arrows .submit-button {
  display: none;
}
.js-form-arrows .submit-button.show-button, .js-usher-arrows .submit-button.show-button {
  display: inline-block;
}

.js-form-dots, .js-usher-dots {
  width: 100%;
  position: relative;
}
.js-form-dots:before, .js-usher-dots:before {
  content: "";
  display: block;
  background: #ddd;
  height: 1px;
  position: absolute;
  bottom: 17px;
  left: 75px;
  right: 75px;
}
@media screen and (max-width: 575px) {
  .js-form-dots:before, .js-usher-dots:before {
    left: 15px;
    right: 15px;
  }
}
.js-form-dots ul.slick-dots, .js-usher-dots ul.slick-dots {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.js-form-dots ul.slick-dots li, .js-usher-dots ul.slick-dots li {
  text-align: center;
  color: #767676;
  font-size: 14px;
  font-weight: 600;
  min-width: 150px;
}
@media screen and (max-width: 575px) {
  .js-form-dots ul.slick-dots li, .js-usher-dots ul.slick-dots li {
    min-width: 0;
  }
}
.js-form-dots ul.slick-dots li button:before, .js-usher-dots ul.slick-dots li button:before {
  content: "Step ";
}
.js-form-dots ul.slick-dots li button:after, .js-usher-dots ul.slick-dots li button:after {
  content: "";
  background: #333;
  border-radius: 50%;
  display: block;
  margin: 5px auto 0;
  height: 14px;
  width: 14px;
  border: 1px solid #ddd;
  box-shadow: inset 0 0 0 2px #fff;
  position: relative;
  z-index: 100;
}
.js-form-dots ul.slick-dots li.slick-active, .js-usher-dots ul.slick-dots li.slick-active {
  color: #333;
}
.js-form-dots ul.slick-dots li.slick-active button:after, .js-usher-dots ul.slick-dots li.slick-active button:after {
  background: #BB8D3F;
}

.form-confirmation {
  padding-top: 50px;
  width: 100%;
}
.form-confirmation__icon {
  display: block;
  margin: 0 auto 15px;
  width: 50px;
}
.form-confirmation__icon svg {
  width: 100%;
}
.form-confirmation .button, .form-confirmation input[type=submit] {
  display: block;
  margin: 15px auto 0;
  max-width: 250px;
}

@media screen and (max-width: 767px) {
  .gift-card {
    margin-top: 30px;
  }
  .gift-card:first-child {
    margin-top: 0;
  }
}
.gift-card .content-box {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .gift-card .content-box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.gift-card__amount {
  color: #BB8D3F;
  display: block;
  font-size: 75px;
  line-height: 1;
}
@media screen and (max-width: 991px) {
  .gift-card__amount {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .gift-card__amount {
    font-size: 35px;
  }
}
.gift-card__text {
  color: #767676;
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  margin: 15px 0;
  text-transform: uppercase;
}
.gift-card__link {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}

.gift-use {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
  margin-bottom: 15px;
  padding: 30px 15px;
}
.gift-use strong, .gift-use span {
  display: block;
  width: 100%;
}
.gift-use span {
  font-size: 14px;
}

.gift-certificate-border {
  border-left: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
  .gift-certificate-border {
    border-left: none;
    border-top: 1px solid #ddd;
    margin-top: 15px;
  }
}

.group-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.group-rate {
  background: #222;
  height: 200px;
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.group-rate .discount {
  background: #BB8D3F;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 15px;
  top: 45px;
}
.group-rate .discount:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 15px 15px 0;
  border-color: transparent #82622c transparent transparent;
  position: absolute;
  left: 0;
  bottom: -15px;
}
.group-rate .discount h4 {
  margin: 0;
}

.job-listing {
  border-top: 1px solid #ddd;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}
.job-listing:first-of-type {
  margin-top: 30px;
}
.job-listing:last-child {
  border-bottom: 1px solid #ddd;
}
.job-listing h2 {
  color: #333;
}
.job-listing h2:hover {
  color: #caa463;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .resource-links .link-col:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .resource-links .link-col:nth-child(n+2) {
    margin-top: 30px;
  }
}

.resource-link {
  border: 1px solid #767676;
  padding: 15px;
  height: 100%;
}

.resource-links--secure .link-col:nth-child(n+4) {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .resource-links--secure .link-col:nth-child(n+3) {
    margin-top: 30px;
  }
}

.kenny-date {
  display: block;
  color: #898989;
  font-size: 28px;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.button--kenny {
  margin-bottom: 30px;
}

.kenny-finalist {
  margin-top: 30px;
}
.kenny-finalist img {
  margin-bottom: 15px;
}
.kenny-finalist strong {
  display: block;
  margin-bottom: 5px;
}

.ynil__show {
  border-top: 1px solid #ddd;
  margin-top: 25px;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .ynil__poster {
    display: none;
  }
}
.ynil .ynil__show-title {
  margin-bottom: 15px;
}
.ynil__checkboxes {
  columns: 3;
}
@media screen and (max-width: 1199px) {
  .ynil__checkboxes {
    columns: 2;
  }
}
@media screen and (max-width: 767px) {
  .ynil__checkboxes {
    columns: 1;
    margin-top: 25px;
  }
}
.ynil__checkboxes .check-option {
  margin-bottom: 15px;
}

.message-count {
  margin-top: 10px;
}

.ynil-cart h2, .ynil-cart h5, .ynil-cart p {
  margin-bottom: 0;
}
.ynil-cart__item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-top: 15px;
}
.ynil-cart__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ynil-cart__total {
  margin-top: 15px;
}

@keyframes blink {
  50% {
    border-color: rgba(255, 231, 195, 0);
  }
}
@keyframes blink-alt {
  50% {
    outline-color: rgba(255, 231, 195, 0);
  }
}
.marquee {
  background-color: #000;
  border: 10px solid #304c48;
  height: 230px;
  margin-bottom: 10px;
  padding: 5px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .marquee {
    height: 330px;
  }
}
.marquee span {
  display: block;
  color: #f6eee9;
  font-weight: bold;
  font-size: 36px;
  text-shadow: 0 0 1.5em #c1603b, 0 0 1em #ff8201, 0 0 0.2em #ff6b01;
  text-transform: uppercase;
  line-height: 1;
}

#marquee-inner {
  padding: 3px;
  height: 200px;
  word-break: break-word;
  word-wrap: break-word;
  overflow: hidden;
  border: 4px dotted #ffe7c3;
  outline: 4px dotted #ffe7c3;
  outline-offset: -8px;
  animation: blink 0.5s step-end infinite alternate, blink-alt 0.5s 0.5s step-end infinite alternate;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  #marquee-inner {
    height: 300px;
  }
}

.nav-up {
  top: -106px;
}
@media screen and (max-width: 865px) {
  .nav-up {
    top: -70px;
  }
}

.performance-header {
  transition: 0.4s;
  background: #333;
  color: #fff;
  height: 108px;
  overflow: hidden;
  display: flex;
  position: fixed;
  top: -108px;
  left: 0;
  right: 0;
  z-index: 2000;
}
@media screen and (max-width: 865px) {
  .performance-header {
    height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .performance-header {
    top: -100px;
    display: none;
  }
}
.performance-header.stuck {
  top: 0;
}

.admin-bar .performance-header.stuck {
  top: 32px;
}

.performance-header__show-info {
  border-right: 1px solid #222;
  min-width: 400px;
  padding: 30px 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 865px) {
  .performance-header__show-info {
    padding: 15px;
  }
}

.show-info__title {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  width: 100%;
}

.show-info__theatre {
  color: #767676;
  display: block;
  font-size: 14px;
  line-height: 1;
  width: 100%;
}

.performance-header__shows {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-show {
  border-top: 5px solid #333;
  border-right: 1px solid #222;
  padding: 35px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 2;
}
@media screen and (max-width: 865px) {
  .header-show {
    padding: 15px 0;
  }
}
.header-show:hover {
  color: auto;
  text-decoration: none;
}
.header-show:nth-of-type(1n+10) {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header-show:nth-of-type(1n+8) {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header-show:nth-of-type(1n+5) {
    display: none;
  }
}
.header-show.past .header-show__date,
.header-show.past .header-show__time {
  color: #898989;
}
.header-show.sold-out {
  border-top: 5px solid #E91F00;
}
.header-show.sold-out .header-show__date,
.header-show.sold-out .header-show__time {
  color: #898989;
}
.header-show.low-availability {
  border-top: 5px solid #ff5910;
}

.header-show__date {
  color: #BB8D3F;
  display: block;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 3px;
  text-align: center;
  width: 100%;
}

.header-show__time {
  color: #fff;
  display: block;
  font-size: 12px;
  line-height: 1;
  width: 100%;
  text-align: center;
}

.filter-mobile {
  display: none;
  justify-content: flex-end;
  margin-bottom: 15px;
}
@media screen and (max-width: 991px) {
  .filter-mobile {
    display: flex;
    justify-content: flex-start;
  }
}

.filter-modal .modal, .filter-modal .modal-content, .filter-modal .modal-dialog, .filter-modal .modal-body {
  overflow: auto !important;
}
.filter-modal .calendar-key {
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  .filter-modal h3 {
    font-size: 22px;
  }
}
.filter-modal .close {
  opacity: 1;
  position: absolute;
  right: 35px;
  top: 47px;
  z-index: 3000;
}
@media screen and (max-width: 767px) {
  .filter-modal .close {
    top: 37px !important;
  }
}
@media screen and (max-width: 575px) {
  .filter-modal .close {
    top: 20px !important;
    right: 20px !important;
  }
}
.filter-modal .close svg {
  fill: #BB8D3F;
  width: 14px !important;
}
.filter-modal .close svg:hover {
  fill: #caa463;
}
.filter-modal .modal-size {
  overflow: scroll;
}
.filter-modal .modal-content {
  background: #fff;
  color: #333;
  min-height: 100vh;
}
.filter-modal .modal-header {
  border: none;
  padding: 0 0 30px;
}
@media screen and (max-width: 575px) {
  .filter-modal .modal-header {
    padding: 15px;
  }
}
.filter-modal .modal-header h3 {
  margin: 0;
}
@media screen and (max-width: 575px) {
  .filter-modal .modal-header h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .filter-modal .modal-body {
    padding: 15px 15px 150px;
  }
}
.filter-modal .calendar {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .filter-modal .calendar__controls {
    top: 0;
  }
}
@media screen and (max-width: 575px) {
  .filter-modal .calendar__controls {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .filter-modal a.next_month,
.filter-modal a.prev_month {
    font-size: 30px;
    padding: 0 20px;
  }
}
.filter-modal a.next_month:hover,
.filter-modal a.prev_month:hover {
  text-decoration: none;
}
.filter-modal .sidebar-content {
  border: none;
}

.calendar {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.calendar__controls {
  position: absolute;
  top: -15px;
  right: 0;
}
.calendar__controls a {
  display: inline-block;
  padding: 20px 0 20px 10px;
  text-align: center;
  font-size: 34px;
}
.calendar__controls a:hover {
  color: #caa463;
  cursor: pointer;
  text-decoration: none;
}
.calendar__controls a i.fa {
  display: block;
}
@media screen and (max-width: 767px) {
  .calendar__controls a {
    height: 27px;
    width: 30px;
    font-size: 30px;
    margin-left: 0;
  }
}

.calendar-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendar-key__item {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
}
.calendar-key__color {
  display: block;
  height: 15px;
  margin-right: 5px;
  width: 15px;
}
.calendar-key__buffalo {
  background-color: #ffded9;
}
.calendar-key__710 {
  background-color: #e0f0f4;
}
.calendar-key__smith {
  background-color: #eee8f0;
}

.calendar-instructions {
  font-size: 12px;
  text-align: center;
}

.week {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.week--labels {
  color: #767676;
  font-weight: 600;
  text-transform: uppercase;
}
.week--labels .calendar__date {
  font-size: 12px;
}

.day {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 0px;
  position: relative;
  width: 14.285714286%;
  z-index: 1;
}
.day.fake {
  background: #f5f5f4;
}
.day.active {
  background: #BB8D3F;
  color: #fff;
  font-weight: bold;
}
.day.active .date-710,
.day.active .date-smith,
.day.active .date-buffalo {
  display: none;
}

.calendar__date {
  font-size: 14px;
  position: relative;
  z-index: 3;
}

.month__name {
  font-weight: normal;
  font-size: 28px;
}

.search_date {
  cursor: pointer;
}

.date-buffalo {
  background: #ffded9;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #ffded9 0%, #ffded9 50%, #ffffff 51%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #ffded9 0%, #ffded9 50%, #ffffff 51%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #ffded9 0%, #ffded9 50%, #ffffff 51%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffded9", endColorstr="#ffffff", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.date-710 {
  background: #e0f0f4;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 50%, #ffffff 51%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 50%, #ffffff 51%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #e0f0f4 0%, #e0f0f4 50%, #ffffff 51%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0f0f4", endColorstr="#ffffff", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.date-smith {
  background: #eee8f0;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #eee8f0 0%, #eee8f0 50%, #ffffff 51%, #ffffff 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #eee8f0 0%, #eee8f0 50%, #ffffff 51%, #ffffff 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #eee8f0 0%, #eee8f0 50%, #ffffff 51%, #ffffff 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eee8f0", endColorstr="#ffffff", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.date-buffalo.date-710 {
  background: #e0f0f4;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 50%, #ffded9 51%, #ffded9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 50%, #ffded9 51%, #ffded9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #e0f0f4 0%, #e0f0f4 50%, #ffded9 51%, #ffded9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0f0f4", endColorstr="#ffded9", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.date-710.date-smith {
  background: #e0f0f4;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 50%, #eee8f0 51%, #eee8f0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 50%, #eee8f0 51%, #eee8f0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #e0f0f4 0%, #e0f0f4 50%, #eee8f0 51%, #eee8f0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0f0f4", endColorstr="#eee8f0", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.date-buffalo.date-smith {
  background: #ffded9;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #ffded9 0%, #ffded9 50%, #eee8f0 51%, #eee8f0 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #ffded9 0%, #ffded9 50%, #eee8f0 51%, #eee8f0 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #ffded9 0%, #ffded9 50%, #eee8f0 51%, #eee8f0 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffded9", endColorstr="#eee8f0", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.date-710.date-smith.date-buffalo {
  background: #e0f0f4;
  /* Old browsers */
  background: -moz-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 33%, #eee8f0 34%, #eee8f0 66%, #ffded9 67%, #ffded9 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(-45deg, #e0f0f4 0%, #e0f0f4 33%, #eee8f0 34%, #eee8f0 66%, #ffded9 67%, #ffded9 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(135deg, #e0f0f4 0%, #e0f0f4 33%, #eee8f0 34%, #eee8f0 66%, #ffded9 67%, #ffded9 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e0f0f4", endColorstr="#ffded9", GradientType=1);
  /* IE6-9 fallback on horizontal gradient */
}

.select-container {
  position: relative;
}

.reset-select {
  background: #fff;
  display: none;
  position: absolute;
  top: 13px;
  right: 10px;
  width: 20px;
  padding: 5px;
  line-height: 20px;
  text-align: center;
  z-index: 10;
}
.reset-select:hover {
  cursor: pointer;
}

.no-results {
  position: relative;
  top: 80px;
}

.no-js-selecter, .gfield select {
  background: #FFF url(../img/fs-selecter-arrow.png) no-repeat right center;
  border: 1px solid #767676;
  border-radius: 0;
  display: block;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 10px;
  width: 100%;
  -webkit-appearance: none;
}

.fill-jobs .no-js-selecter {
  background: #222 url(../img/fs-selecter-arrow.png) no-repeat right center;
}

.show-preview {
  background-color: #fff;
}
.show-preview .show-details {
  margin-top: 7px;
}

.show-preview__content {
  background-color: #fff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  height: auto;
  flex-grow: 1;
}
@media screen and (max-width: 991px) {
  .show-preview__content {
    padding: 15px;
  }
}

.show-preview__image {
  height: auto;
}
.show-preview__image img {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 991px) {
  .show-preview__image img {
    height: auto;
    object-fit: initial;
  }
}

.show-preview__name {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}
.show-preview__name * {
  line-height: 1.1;
  color: #BB8D3F;
  text-transform: uppercase;
}

.event-details {
  font-size: 14px;
  font-weight: normal;
}

.show-preview__description {
  display: block;
  margin-top: 25px;
}
.show-preview__description p {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .show-preview__buttons {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .show-preview__buttons .col-sm-6:first-child {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .show-preview--large .show-buttons-col {
    order: 3;
  }
}

@media screen and (max-width: 1199px) {
  .show-preview--small {
    margin-bottom: 30px;
  }
}
.show-preview--small .show-preview__buttons {
  margin-top: 25px;
}
@media screen and (max-width: 1199px) {
  .show-preview--small .col-lg-12:first-child {
    margin-bottom: 15px;
  }
}

.show-preview-container {
  margin-bottom: 30px;
  transition: transform 0.2s;
}
.show-preview-container:hover {
  transform: scale(1.05);
}
.show-preview-container a:hover {
  text-decoration: none;
}

.show-preview--horizontal {
  box-shadow: 0 7px 23px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.show-preview--horizontal .show-number {
  border: none;
  color: #fff;
  padding: 1px 27px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border-radius: 16px;
  position: absolute;
  top: -6px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  .show-preview--horizontal .show-number {
    padding: 1px 20px;
  }
}
.show-preview--horizontal .show-number.color--smith {
  background-color: #8a6498;
}
.show-preview--horizontal .show-number.color--buffalo {
  background-color: #E91F00;
}
.show-preview--horizontal .show-number.color--710 {
  background-color: #258097;
}
@media screen and (max-width: 991px) {
  .show-preview--horizontal .show-preview__image {
    display: none;
  }
}
.show-preview--horizontal .show-preview__image--small {
  display: none;
  float: none;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .show-preview--horizontal .show-preview__image--small {
    display: block;
  }
}
@media screen and (max-width: 1199px) {
  .show-preview--horizontal .h1-like {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .show-preview--horizontal .h1-like {
    font-size: 22px;
  }
}
.show-preview--horizontal .event-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-top: auto;
}
.show-preview--horizontal .event-details ul {
  padding: 0;
}
.show-preview--horizontal .event-details ul li {
  list-style-type: none;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .show-preview--horizontal .event-details ul li {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .show-preview--horizontal .event-details {
    margin-top: 5px;
  }
}
.show-preview--horizontal .event-details .show-preview_dates {
  font-size: 16px;
  color: #222222;
  font-weight: lighter;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .show-preview--horizontal .event-details__item {
    font-size: 11px;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .show-preview--horizontal .event-details__item {
    margin-right: 10px;
  }
}
@media screen and (max-width: 440px) {
  .show-preview--horizontal .event-details__item {
    margin-right: 0;
  }
}
.show-preview--horizontal .show-preview__description {
  margin-top: 15px;
}
@media screen and (max-width: 575px) {
  .show-preview--horizontal .show-preview__description {
    display: none;
  }
}
@media screen and (max-width: 1199px) {
  .show-preview--horizontal .p--medium {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .show-preview--horizontal .p--medium {
    font-size: 12px;
  }
}
.show-preview--horizontal .show-preview__buttons {
  margin-top: 20px;
}
@media screen and (max-width: 575px) {
  .show-preview--horizontal .show-preview__buttons {
    margin-top: 0;
    padding-left: 160px;
  }
}
@media screen and (max-width: 440px) {
  .show-preview--horizontal .show-preview__buttons {
    padding-left: 0;
  }
}
.show-preview--horizontal .show-preview__buttons .button, .show-preview--horizontal .show-preview__buttons input[type=submit] {
  margin-right: 20px;
}
@media screen and (max-width: 1199px) {
  .show-preview--horizontal .show-preview__buttons .button, .show-preview--horizontal .show-preview__buttons input[type=submit] {
    font-size: 12px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 575px) {
  .show-preview--horizontal .show-preview__buttons .button, .show-preview--horizontal .show-preview__buttons input[type=submit] {
    margin-right: 0;
    margin-top: 10px;
    display: block;
  }
}

.show-preview--virtual {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .show-preview--virtual {
    display: block;
  }
}
.show-preview--virtual .show-preview__name {
  margin: 0;
}
.show-preview--virtual .show-preview__content {
  color: #333;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.show-preview--virtual .show-preview__content .event-details {
  font-weight: bold;
  margin-bottom: 10px;
}
.show-preview--virtual .show-preview__image {
  height: 350px;
}
.show-preview--virtual .show-preview__image img {
  object-fit: fill;
  max-width: none;
  width: auto;
}
@media screen and (max-width: 1199px) {
  .show-preview--virtual .show-preview__image {
    display: none;
  }
}
.show-preview--virtual .show-preview__image--small {
  display: none;
  float: none;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .show-preview--virtual .show-preview__image--small {
    height: auto;
    max-width: 100%;
    width: 100%;
    display: block;
  }
  .show-preview--virtual .show-preview__image--small img {
    width: 100%;
  }
}

.banner-photo-credit {
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  font-size: 16px;
  padding: 5px 10px;
  position: absolute;
  right: 0;
  top: -40px;
}

.banner--performance {
  height: auto !important;
}
.banner--performance img {
  border-top: 98px solid #333;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1199px) {
  .banner--performance img {
    border-top: 76px solid #333;
  }
}
@media screen and (max-width: 991px) {
  .banner--performance img {
    border-top: none;
  }
}

@media screen and (max-width: 991px) {
  .banner--performance + .banner-overlap {
    margin-top: -25px;
  }
}
@media screen and (max-width: 767px) {
  .banner--performance + .banner-overlap {
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .banner-overlap {
    padding-bottom: 0;
    margin-top: 30px !important;
  }
}
.banner-overlap .calendar-filter {
  top: -108px;
  position: relative;
}
.banner-overlap .calendar-filter .sidebar {
  position: sticky;
  top: 130px;
  box-shadow: 0 7px 23px rgba(0, 0, 0, 0.1);
}
.banner-overlap .calendar-filter .content-box {
  padding: 25px 40px 40px;
}

.performance-banner,
.banner {
  align-items: center;
  display: flex;
  height: 500px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .performance-banner,
.banner {
    display: block;
    height: 400px;
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .performance-banner,
.banner {
    padding-top: 120px;
    height: 300px;
  }
}

.banner--small {
  height: 400px;
}
@media screen and (max-width: 767px) {
  .banner--small {
    height: 300px;
  }
}

.banner-filter {
  display: flex;
  justify-content: space-between;
}
.banner-filter .select-container {
  width: 48%;
}
@media screen and (max-width: 991px) {
  .banner-filter {
    display: none;
  }
}

.performance-banner__text {
  color: #fff;
  position: relative;
  z-index: 10;
  margin-bottom: 90px;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
  .performance-banner__text {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .performance-banner__text {
    width: 100%;
  }
}
.performance-banner__text .display-title:after {
  content: "";
  display: block;
  width: 17%;
  padding-top: 20px;
  margin-left: 5px;
  border-bottom: 4px solid #ff2301;
}

.performance-single {
  background: #fff;
}
.performance-single:first-child .page-section {
  border-top: none;
}

.page-template-template-virtual:nth-child(-n+2) .page-section {
  border-top: none;
}

.performance-single__header {
  border-bottom: 1px solid #ddd;
  padding-bottom: 50px;
}
@media screen and (max-width: 991px) {
  .performance-single__header {
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .performance-single__header .display-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .performance-single__header .display-subtitle {
    font-size: 26px;
  }
}

.performance-single__buttons {
  border-left: 1px solid #ddd;
  padding-left: 60px;
}
@media screen and (max-width: 1199px) {
  .performance-single__buttons {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .performance-single__buttons {
    border-left: none;
    border-top: 1px solid #ddd;
    margin-top: 30px;
    padding-left: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 991px) {
  .performance-single__buttons .button, .performance-single__buttons input[type=submit] {
    float: left;
    width: 48.5%;
  }
}
@media screen and (max-width: 575px) {
  .performance-single__buttons .button, .performance-single__buttons input[type=submit] {
    float: none;
    width: 100%;
  }
}
.performance-single__buttons .button:first-of-type, .performance-single__buttons input[type=submit]:first-of-type {
  margin-bottom: 25px;
}
@media screen and (max-width: 991px) {
  .performance-single__buttons .button:first-of-type, .performance-single__buttons input[type=submit]:first-of-type {
    margin-bottom: 0;
    margin-right: 3%;
  }
}
@media screen and (max-width: 575px) {
  .performance-single__buttons .button:first-of-type, .performance-single__buttons input[type=submit]:first-of-type {
    margin-bottom: 15px;
    margin-right: 0;
  }
}

.share-buttons {
  text-align: center;
}
.share-buttons .share-text {
  color: #767676;
  display: block;
  margin-bottom: 10px;
}
.share-buttons .social-circle {
  margin: 0 2px;
  position: relative;
}
.share-buttons .social-circle:hover i {
  color: #fff;
}

.js-copy-button .prompt {
  transition: 0.4s;
  background: #BB8D3F;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 5px 10px;
  text-transform: uppercase;
  opacity: 0;
  position: absolute;
  top: 45px;
  left: -10px;
}
.js-copy-button .prompt:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #BB8D3F;
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -6px;
}
.js-copy-button.copied .prompt {
  opacity: 1;
}

.performance-icons {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 991px) {
  .performance-icons {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .performance-icons {
    flex-wrap: wrap;
  }
}
.performance-icons p {
  margin: 0;
  font-size: 15px;
}
@media screen and (max-width: 1199px) {
  .performance-icons p {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .performance-icons p {
    font-size: 16px;
  }
}
.performance-icons--small {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .performance-icons .p--small {
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 1199px) {
  .performance-icons .p--tiny {
    font-size: 12px;
    text-align: center;
  }
}

.performance-icons__set {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
@media screen and (max-width: 1199px) {
  .performance-icons__set {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .performance-icons__set {
    margin: 10px 0;
  }
}
@media screen and (max-width: 575px) {
  .performance-icons__set {
    display: block;
    float: left;
    width: 50%;
  }
}
.performance-icons__set p {
  margin: 0;
}

.performance-icon {
  float: left;
  height: 25px;
  margin-right: 10px;
}
@media screen and (max-width: 1199px) {
  .performance-icon {
    margin-right: 3px;
  }
}
.performance-icon--small {
  margin-top: 5px;
}
@media screen and (max-width: 1199px) {
  .performance-icon--small {
    float: none;
    display: block;
    margin: 0 auto 5px;
  }
}
@media screen and (max-width: 575px) {
  .performance-icon--small {
    margin-top: 15px;
  }
}

@media screen and (max-width: 991px) {
  .performance-section__group {
    margin-top: 30px;
  }
  .performance-section__group:first-child {
    margin-top: 0;
  }
}
.performance-section__group img {
  margin-bottom: 15px;
}

.performance-section__title {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .performance-section__title {
    text-align: left;
  }
}
.performance-section__title.perf-title {
  text-align: left;
}
.performance-section__title.perf-title .running {
  font-size: 24px;
}

.sponsor-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .sponsor-logos {
    flex-direction: column;
  }
}
.sponsor-logos img {
  max-width: 140px;
  max-height: 65px;
}
@media screen and (max-width: 1199px) {
  .sponsor-logos img {
    max-width: 100px;
    max-height: 50px;
  }
}
@media screen and (max-width: 991px) {
  .sponsor-logos img {
    max-width: 140px;
    max-height: 65px;
  }
}
@media screen and (max-width: 767px) {
  .sponsor-logos img {
    margin-top: 15px;
  }
}
@media screen and (max-width: 575px) {
  .sponsor-logos img {
    max-width: 150px;
    max-height: 60px;
    margin-bottom: 15px;
  }
}

.slick-buttons {
  display: inline-block;
}
.slick-buttons > *:first-child {
  margin-left: 30px;
}

.slick-next {
  margin-left: 5px;
}

.button.slick-disabled, input.slick-disabled[type=submit] {
  background: #ddd;
  color: #333;
}

.perfomance-dates {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .perfomance-dates {
    margin-top: 10px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .perfomance-dates .slick-buttons > *:first-child {
    margin-left: 0;
  }
}
.perfomance-dates p {
  margin-top: 15px;
}

@media screen and (max-width: 991px) {
  .performance-slider {
    margin-top: -50px;
  }
}
@media screen and (max-width: 767px) {
  .performance-slider {
    padding-bottom: 15px;
  }
}

.slider-padding {
  margin-bottom: -300px;
  padding-bottom: 250px;
}
.slider-padding--general-page {
  margin-bottom: -300px;
  padding-bottom: 300px;
}

.performance-slider__week {
  position: relative;
}

.performance-card {
  display: block;
  float: left;
  position: relative;
  padding: 10px;
  height: 200px;
  width: 14.28%;
}
.performance-card--date {
  border-left: 1px solid #ddd;
}
.performance-card--date:nth-child(7n+1) {
  border: none;
}
@media screen and (max-width: 767px) {
  .performance-card--date {
    border-left: none;
    border-top: 1px solid #ddd;
    height: auto;
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .performance-card--date {
    height: auto;
  }
}
.performance-card--spacer {
  background: none;
  width: 180px;
}
.performance-card--media {
  height: 300px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .performance-card--media {
    height: 200px;
  }
}
@media screen and (max-width: 575px) {
  .performance-card--media {
    height: 150px;
  }
}
.performance-card--media img {
  height: 100%;
}
.performance-card .gallery-caption {
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  font-size: 12px;
  padding: 5px;
  position: absolute;
  left: 15px;
  bottom: 15px;
}
.performance-card--data {
  height: 355px;
  margin-left: 15px;
  width: 160px;
}
.performance-card--data img {
  height: 260px;
}
.performance-card--data h4 {
  margin-bottom: 0;
  margin-top: 10px;
}
.performance-card__month {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .performance-card__month {
    display: inline-block;
  }
}
.performance-card__times {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  height: 130px;
}
@media screen and (max-width: 767px) {
  .performance-card__times {
    left: 100px;
    top: 10px;
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .performance-card__times {
    position: static;
    margin-top: 5px;
    width: 100%;
  }
}
.performance-card__times a {
  background: #BB8D3F;
  color: #fff;
  height: 100%;
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.performance-card__times a:hover {
  background: #caa463;
  text-decoration: none;
}
@media screen and (max-width: 991px) {
  .performance-card__times a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .performance-card__times a {
    margin-left: 5px;
    margin-top: 0;
    flex-grow: 2;
  }
  .performance-card__times a:first-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 575px) {
  .performance-card__times a {
    min-height: 40px;
  }
}

.js-media-arrows {
  position: absolute;
  right: 45px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .js-media-arrows {
    display: none;
  }
}

.performances__view-more {
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .performances__view-more {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.performance-card.past .performance-card__times a {
  background-color: #ccc;
}

.single-performances .modal-dialog {
  margin-top: 130px;
}

.did-you-know {
  float: right;
  margin-left: 30px;
  padding: 0 30px 30px;
  text-align: center;
  width: 33%;
}
@media screen and (max-width: 991px) {
  .did-you-know {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .did-you-know {
    margin-left: 0;
    width: 100%;
  }
}
.did-you-know__icon {
  display: block;
  margin: 0 auto 15px;
  width: 60px;
}

.page-template-page-staff_listing .content-box {
  margin-bottom: 30px;
}

.staff-listing {
  padding: 20px;
}
.staff-listing--small {
  padding: 15px;
}
.staff-listing--small .staff-listing__title {
  color: #767676;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.staff-listing__photo {
  border-radius: 50%;
  display: block;
  height: 150px;
  margin: 0 auto 25px;
  overflow: hidden;
  width: 150px;
}
.staff-listing__title {
  display: block;
  font-size: 16px;
  margin-bottom: 15px;
}
.staff-listing__contact {
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.staff-listing__button {
  border-top: 1px solid #ddd;
  display: block;
  font-weight: bold;
  font-size: 14px;
  margin-top: 25px;
  padding-top: 15px;
  text-transform: uppercase;
}

.icon-box__icon {
  display: block;
  margin: 0 auto 15px;
  max-width: 100px;
}

.sponsors-component {
  padding: 75px 0;
}
.sponsors-component .selected-sponsors {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media screen and (max-width: 575px) {
  .sponsors-component .selected-sponsors {
    margin: 0;
  }
}
.sponsors-component .content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}
.sponsors-component .content-box:after {
  padding: 0;
}
.sponsors-component .content-box img {
  position: static;
  transform: none;
  max-width: 50%;
  max-height: 200px;
}
@media screen and (max-width: 991px) {
  .sponsors-component .content-box img {
    min-height: auto;
  }
}
.sponsors-component .sponsor-box {
  margin-top: 30px;
}
.sponsors-component .sponsor-box .content-box {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
  margin: 0 15px;
  padding: 0;
  position: relative;
}
.sponsors-component .sponsor-box .content-box:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.sponsors-component .sponsor-box .content-box img {
  max-height: 80%;
  max-width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sponsors-component + .performance-single .page-section {
  border-top: none;
}

.sponsors-link {
  display: block;
  margin-top: 25px;
  width: 100%;
  text-align: center;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0;
}
.photo-grid .photo {
  background: #333;
  display: block;
  position: relative;
}
.photo-grid .photo__caption {
  background: rgba(0, 0, 0, 0.75);
  color: #FFF;
  padding: 15px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}
.photo-grid .photo--large {
  height: 430px;
  width: 100%;
}
.photo-grid .photo--medium {
  background: #898989;
  height: 330px;
  width: 66%;
}
.photo-grid .photo--small {
  background: #767676;
  height: 330px;
  width: 34%;
}
.photo-grid .photo--top-left {
  width: 66%;
}
@media screen and (max-width: 991px) {
  .photo-grid .photo--top-left {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .photo-grid .photo--top-left {
    width: 100%;
  }
}
.photo-grid .photo--top-right {
  width: 34%;
}
@media screen and (max-width: 991px) {
  .photo-grid .photo--top-right {
    width: 50%;
  }
}
@media screen and (max-width: 575px) {
  .photo-grid .photo--top-right {
    width: 100%;
  }
}
.photo-grid .photo--bottom-left {
  width: 27%;
}
@media screen and (max-width: 991px) {
  .photo-grid .photo--bottom-left {
    width: 33.33%;
  }
}
@media screen and (max-width: 575px) {
  .photo-grid .photo--bottom-left {
    width: 100%;
  }
}
.photo-grid .photo--bottom-center {
  width: 46%;
}
@media screen and (max-width: 991px) {
  .photo-grid .photo--bottom-center {
    width: 33.33%;
  }
}
@media screen and (max-width: 575px) {
  .photo-grid .photo--bottom-center {
    width: 100%;
  }
}
.photo-grid .photo--bottom-right {
  width: 27%;
}
@media screen and (max-width: 991px) {
  .photo-grid .photo--bottom-right {
    width: 33.33%;
  }
}
@media screen and (max-width: 575px) {
  .photo-grid .photo--bottom-right {
    width: 100%;
  }
}
.photo-grid .photo--top-left, .photo-grid .photo--top-right, .photo-grid .photo--bottom-left, .photo-grid .photo--bottom-center, .photo-grid .photo--bottom-right {
  height: 487px;
}
@media screen and (max-width: 1199px) {
  .photo-grid .photo--top-left, .photo-grid .photo--top-right, .photo-grid .photo--bottom-left, .photo-grid .photo--bottom-center, .photo-grid .photo--bottom-right {
    height: 380px;
  }
}
@media screen and (max-width: 991px) {
  .photo-grid .photo--top-left, .photo-grid .photo--top-right, .photo-grid .photo--bottom-left, .photo-grid .photo--bottom-center, .photo-grid .photo--bottom-right {
    height: 320px;
  }
}
@media screen and (max-width: 575px) {
  .photo-grid .photo--top-left, .photo-grid .photo--top-right, .photo-grid .photo--bottom-left, .photo-grid .photo--bottom-center, .photo-grid .photo--bottom-right {
    height: 200px;
  }
}

.fancybox-navigation button:before {
  background: #BB8D3F !important;
}

.container--rental {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .rental-feature:first-of-type {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .rental-feature:nth-of-type(2) {
    margin-bottom: 40px;
  }
}

.rental-venue {
  margin-bottom: 30px;
}

.rental-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.rental-forms {
  border-top: 1px solid #ddd;
  padding-top: 30px;
}
@media screen and (max-width: 991px) {
  .rental-forms .pdf {
    margin-bottom: 15px;
  }
}

.rental-title {
  text-align: right;
}
@media screen and (max-width: 991px) {
  .rental-title {
    text-align: left;
  }
}

.rental-button {
  float: right;
}
@media screen and (max-width: 991px) {
  .rental-button {
    display: none;
  }
}

.subscription-title {
  display: block;
  margin-top: 30px;
  text-align: center;
  width: 100%;
}
.subscription-title .name {
  color: #BB8D3F;
}

.package-show {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  margin-top: 30px;
}
.package-show__image {
  float: left;
  margin-left: -1px;
  margin-top: -1px;
  width: 100px;
}
.package-show__info {
  padding-left: 15px;
  padding-right: 15px;
}
.package-show__info h5 {
  color: #BB8D3F;
  margin: 0 0 5px;
}
.package-show__duration {
  display: block;
  font-size: 16px;
  font-weight: 500;
}
.package-show__theater {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.pricing-tier {
  margin-top: 30px;
  text-align: center;
}
.pricing-tier__row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-tier__row:nth-child(3) .pricing-tier__square {
  background: #459add;
}
.pricing-tier__row:nth-child(4) .pricing-tier__square {
  background: #efff00;
}
.pricing-tier__row:nth-child(5) .pricing-tier__square {
  background: #fd02fd;
}
.pricing-tier__square {
  background: #23ff00;
  display: inline-block;
  height: 18px;
  margin-right: 10px;
  width: 18px;
}
.pricing-tier__tier {
  color: #767676;
  font-size: 16px;
  font-weight: bold;
}
.pricing-tier__price {
  color: #BB8D3F;
  font-size: 24px;
  font-weight: 500;
  margin-left: 10px;
}

.subscription-buttons .button, .subscription-buttons input[type=submit] {
  margin-top: 15px;
}

.subscribe-pricing-row {
  margin-top: 60px;
}

@media screen and (max-width: 575px) {
  .seating-chart--orchestra, .seating-chart--balcony {
    display: block !important;
  }
}

.experience-cta {
  background: #FFF;
}
.experience-cta .container {
  padding-top: 60px;
  padding-bottom: 60px;
}
.experience-cta .top-border {
  background: #E91F00;
  display: block;
  float: left;
  height: 10px;
  width: 33.33%;
}
.experience-cta .top-border:nth-child(2) {
  background: #258097;
}
.experience-cta .top-border:nth-child(3) {
  background: #8a6498;
}
.experience-cta h3 {
  color: #767676;
}
.experience-cta .button, .experience-cta input[type=submit] {
  margin-top: 15px;
}

.help-image {
  display: block;
  height: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .help-image {
    height: 200px;
  }
}

.help-icons {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.help-icon {
  margin-top: 30px;
  margin-bottom: 30px;
}
.help-icon__icon {
  float: left;
  width: 50px;
}
.help-icon__text {
  padding-left: 65px;
}

.arrow-link {
  background: #fff;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
.arrow-link__text {
  color: #333;
  margin-bottom: 0;
}
.arrow-link__icon {
  width: 12px;
}
.arrow-link:hover {
  background: #caa463;
  text-decoration: none;
}
.arrow-link:hover .arrow-link__text {
  color: #FFF;
}

.theater-banner {
  display: block;
  color: #fff;
  height: 750px;
  margin-bottom: -400px;
  padding-top: 150px;
}
@media screen and (max-width: 991px) {
  .theater-banner {
    margin-bottom: -350px;
  }
}
@media screen and (max-width: 767px) {
  .theater-banner {
    height: 675px;
    padding-top: 100px;
  }
}
.theater-banner .overview-title:after {
  content: "";
  display: block;
  width: 17%;
  padding-top: 20px;
  margin-left: 5px;
  border-bottom: 4px solid #E91F00;
}
.theater-banner__icon {
  display: block;
  margin: 0 auto 15px;
  height: 35px;
}
@media screen and (max-width: 991px) {
  .theater-banner__icon {
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .theater-banner__icon {
    margin-top: 25px;
  }
}
@media screen and (max-width: 575px) {
  .theater-banner__icon {
    height: 25px;
  }
}
.theater-banner__icon svg {
  height: 100%;
}
.theater-banner__text {
  display: block;
  font-weight: 500;
}
@media screen and (max-width: 991px) {
  .theater-banner__text {
    font-size: 12px;
  }
}
.theater-banner__slider {
  margin-bottom: 100px;
}
@media screen and (max-width: 991px) {
  .theater-banner__slider {
    margin-bottom: 50px;
  }
}
.theater-banner__slider .low-count-slider .performance-card--data:first-of-type {
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
}
.theater-banner__buttons {
  position: absolute;
  right: 30px;
  bottom: 420px;
}
@media screen and (max-width: 991px) {
  .theater-banner__buttons {
    bottom: 380px;
  }
}
@media screen and (max-width: 575px) {
  .theater-banner__buttons {
    bottom: 406px;
  }
}
.theater-banner__buttons .button.slick-disabled,
.theater-banner__buttons input.slick-disabled[type=submit] {
  background: transparent;
  border-color: #898989;
  color: #898989;
}
.theater-banner__buttons i {
  margin-top: 5px;
}

.past-divider {
  background: #767676;
  height: 300px;
  width: 1px;
  margin: 15px 15px 15px 30px;
}

.theater-bar {
  border-bottom: 4px solid #FFF;
  font-size: 36px;
}
.theater-bar.color-buffalo {
  border-color: #E91F00;
}
.theater-bar.color-710 {
  border-color: #258097;
}
.theater-bar.color-smith {
  border-color: #8a6498;
}

@media screen and (max-width: 991px) {
  .theater-feature {
    margin-top: 30px;
  }
  .theater-feature:first-child {
    margin-top: 0;
  }
}
.theater-feature img {
  width: 100%;
}

.theater-about .display-title {
  color: #BB8D3F;
  margin-bottom: 15px;
}
.theater-about .js-media-arrows {
  position: static;
}
.theater-about .slick-buttons > *:first-child {
  margin-left: 0;
}
.theater-about__border {
  border: 1px solid #ddd;
  padding: 40px;
  position: relative;
  z-index: 2;
}
.theater-about__border.color-buffalo {
  border-color: #BB8D3F;
}
.theater-about .slider-padding .content-box {
  margin-bottom: -340px;
}
@media screen and (max-width: 767px) {
  .theater-about .slider-padding .content-box {
    margin-bottom: -190px;
  }
}
@media screen and (max-width: 575px) {
  .theater-about .slider-padding .content-box {
    margin-bottom: -150px;
  }
}
.theater-about .slider-padding .theater-about__border {
  padding: 40px 40px 380px;
}
@media screen and (max-width: 767px) {
  .theater-about .slider-padding .theater-about__border {
    padding: 20px 20px 200px;
  }
}
@media screen and (max-width: 575px) {
  .theater-about .slider-padding .theater-about__border {
    padding-bottom: 160px;
  }
}
.theater-about .slider-padding .theater-about__border h3 {
  font-size: 30px;
}
.theater-about__image {
  display: block;
  width: 430px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
}
@media screen and (max-width: 1199px) {
  .theater-about__image {
    width: 380px;
  }
}
@media screen and (max-width: 991px) {
  .theater-about__image {
    display: none;
  }
}
.theater-about__gallery-image {
  bottom: 90px;
}
.theater-about__slider {
  margin-bottom: 140px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .theater-about__slider {
    margin-bottom: 90px;
  }
}

.seating-chart {
  margin-top: 50px;
  margin-bottom: 50px;
}

.zoom-trigger {
  display: inline-block;
  cursor: zoom-in;
  position: relative;
}
@media screen and (max-width: 991px) {
  .zoom-trigger {
    margin-top: 30px;
  }
}

.attractions {
  padding-top: 50px;
  padding-bottom: 50px;
}

.attraction {
  margin-top: 30px;
}
.attraction__tag {
  display: inline-flex;
  margin-bottom: 10px;
}
.attraction__tag .blog-tag__image {
  height: auto;
}
.attraction__tag span {
  color: #767676;
}

.three-features--theaters {
  border-top: 1px solid #ddd;
}

.lum-lightbox.lum-open {
  z-index: 2000 !important;
}

.js-timeline-arrows {
  position: absolute;
  right: 45px;
  bottom: 0;
}
@media screen and (max-width: 991px) {
  .js-timeline-arrows {
    display: none;
  }
}

.timeline {
  background: url(../img/under-construction.jpg) #333 no-repeat;
  background-size: cover;
  height: 500px;
  position: relative;
  margin-top: -30px;
}
.timeline__line {
  background: #BB8D3F;
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 50%;
}
.timeline p {
  color: #FFF;
  margin: 0;
}
.timeline .timeline-event {
  padding: 60px 25px;
  text-align: center;
  width: 300px;
  height: 250px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .timeline .timeline-event:nth-child(n+2) {
    margin-left: -150px;
  }
}
.timeline .timeline-event:after {
  content: "";
  background: #BB8D3F;
  display: block;
  width: 1px;
  height: 30px;
  position: absolute;
  bottom: 0px;
  left: 50%;
}
.timeline .timeline-event:before {
  content: "";
  background: #BB8D3F;
  border-radius: 50%;
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  margin-left: -5px;
  bottom: 30px;
}
.timeline .timeline-event:nth-child(2n+2) {
  justify-content: flex-start;
  margin-top: 250px;
}
.timeline .timeline-event:nth-child(2n+2):after {
  top: 0;
  bottom: auto;
}
.timeline .timeline-event:nth-child(2n+2):before {
  top: 30px;
}

.header-container {
  background: rgba(2, 1, 1, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  transition: background 0.4s;
}

.page-template-index .header-container {
  background: #222;
}
.page-template-index .header-container.scrolled {
  background: rgba(2, 1, 1, 0.8);
}

.admin-bar .header-container {
  top: 32px;
}

header {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 30px 5px;
}
@media screen and (max-width: 991px) {
  header {
    padding: 15px;
  }
}
@media screen and (max-width: 865px) {
  header {
    justify-content: space-between;
  }
}

.logo {
  display: block;
  order: 1;
  flex-shrink: 0;
  width: 160px;
}
@media screen and (max-width: 1199px) {
  .logo {
    width: 110px;
  }
}
.logo svg {
  width: 160px;
  height: 70px;
}
@media screen and (max-width: 1199px) {
  .logo svg {
    width: 110px;
    height: 48px;
  }
}

.main-nav,
.icon-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  text-align: right;
  margin-top: 10px;
  margin-bottom: -15px;
  order: 3;
}
@media screen and (max-width: 991px) {
  .main-nav,
.icon-nav {
    margin-top: 15px;
  }
}
@media screen and (max-width: 865px) {
  .main-nav,
.icon-nav {
    margin-top: 0;
    margin-left: 0;
  }
}
.main-nav > li,
.icon-nav > li {
  margin-left: 25px;
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .main-nav > li,
.icon-nav > li {
    margin-left: 10px;
  }
}
@media screen and (max-width: 991px) {
  .main-nav > li,
.icon-nav > li {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 620px) {
  .main-nav > li,
.icon-nav > li {
    display: none;
  }
}
.main-nav > li:hover .sub-menu,
.icon-nav > li:hover .sub-menu {
  display: block;
  opacity: 1;
}
.main-nav > li a,
.main-nav > li button,
.icon-nav > li a,
.icon-nav > li button {
  font-size: 16px;
  color: #BB8D3F;
  display: inline-block;
  font-weight: normal;
  text-decoration: none;
}
.main-nav > li a:hover, .main-nav > li a.active,
.main-nav > li button:hover,
.main-nav > li button.active,
.icon-nav > li a:hover,
.icon-nav > li a.active,
.icon-nav > li button:hover,
.icon-nav > li button.active {
  cursor: pointer;
}
.main-nav > li a:hover span, .main-nav > li a.active span,
.main-nav > li button:hover span,
.main-nav > li button.active span,
.icon-nav > li a:hover span,
.icon-nav > li a.active span,
.icon-nav > li button:hover span,
.icon-nav > li button.active span {
  color: #caa463;
}
@media screen and (max-width: 1199px) {
  .main-nav > li a,
.main-nav > li button,
.icon-nav > li a,
.icon-nav > li button {
    font-size: 14px;
  }
}
.main-nav > li a span,
.main-nav > li button span,
.icon-nav > li a span,
.icon-nav > li button span {
  transition: 0.4s;
  color: #fff;
}
.main-nav > li a.nav-link--icon,
.main-nav > li button.nav-link--icon,
.icon-nav > li a.nav-link--icon,
.icon-nav > li button.nav-link--icon {
  display: flex;
  align-items: center;
}
.main-nav > li a.nav-link--icon svg,
.main-nav > li button.nav-link--icon svg,
.icon-nav > li a.nav-link--icon svg,
.icon-nav > li button.nav-link--icon svg {
  display: inline-block;
  width: 18px;
}
.main-nav .mobile-menu,
.icon-nav .mobile-menu {
  display: none;
}
@media screen and (max-width: 865px) {
  .main-nav .mobile-menu,
.icon-nav .mobile-menu {
    display: inline-block;
    margin-left: 30px;
  }
}
@media screen and (max-width: 575px) {
  .main-nav .mobile-menu,
.icon-nav .mobile-menu {
    display: inline-block;
  }
}
@media screen and (max-width: 865px) {
  .main-nav .mobile-menu a,
.main-nav .mobile-menu button,
.icon-nav .mobile-menu a,
.icon-nav .mobile-menu button {
    font-size: 26px;
    line-height: 1;
  }
}
.main-nav .mobile-menu a:hover,
.main-nav .mobile-menu button:hover,
.icon-nav .mobile-menu a:hover,
.icon-nav .mobile-menu button:hover {
  cursor: pointer;
}
.main-nav .search-link,
.icon-nav .search-link {
  display: inline-block !important;
}
.main-nav .sub-menu,
.icon-nav .sub-menu {
  transition: 0.4s;
  background: #333;
  border: none;
  border-radius: 0;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.5);
  display: none;
  float: left;
  min-width: 230px;
  margin: 0;
  opacity: 0;
  padding: 0;
  text-align: left;
  position: absolute;
  top: 40px;
  right: 0;
  margin-right: -80px;
  z-index: 1000;
}
@media screen and (max-width: 991px) {
  .main-nav .sub-menu,
.icon-nav .sub-menu {
    box-shadow: none;
  }
}
.main-nav .sub-menu:before,
.icon-nav .sub-menu:before {
  content: "";
  width: 0;
  height: 0;
  display: block;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #333;
  position: absolute;
  left: 50%;
  top: -10px;
  margin-left: -10px;
}
.main-nav .sub-menu li,
.icon-nav .sub-menu li {
  border-top: 1px solid #020101;
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.main-nav .sub-menu li:first-of-type,
.icon-nav .sub-menu li:first-of-type {
  border-top: none;
}
.main-nav .sub-menu li:hover .main-nav__arrow,
.icon-nav .sub-menu li:hover .main-nav__arrow {
  color: #BB8D3F;
}
.main-nav .sub-menu li a,
.icon-nav .sub-menu li a {
  background: #333;
  color: #fff;
  display: block;
  font-size: 14px;
  padding: 10px;
}
.main-nav .sub-menu li .main-nav__arrow,
.icon-nav .sub-menu li .main-nav__arrow {
  transition: 0.4s;
  font-size: 20px;
  color: #020101;
  position: absolute;
  right: 15px;
  top: 10px;
}
.main-nav .sub-menu li .fa-angle-down:before,
.icon-nav .sub-menu li .fa-angle-down:before {
  content: "";
}

.icon-nav {
  margin-left: 0;
}

.search-link__icon svg {
  fill: #BB8D3F;
  height: 18px;
  width: 18px;
}
.search-link__icon svg:hover {
  opacity: 0.5;
}

a.nav-link {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  font-weight: normal;
  text-decoration: none;
}
a.nav-link:hover, a.nav-link.active {
  color: #caa463;
  cursor: pointer;
}
@media screen and (max-width: 1199px) {
  a.nav-link {
    font-size: 14px;
  }
}

@media screen and (max-width: 865px) {
  .early-hide {
    display: none;
  }
}

.menu-item-has-children .main-nav__arrow {
  display: inline-block;
}

.main-nav__arrow {
  color: #BB8D3F;
  display: none;
  padding-left: 5px;
  transition: 0.4s;
}

.utility-nav {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 30px;
  text-align: right;
  text-transform: uppercase;
  list-style-type: none;
}
@media screen and (max-width: 1199px) {
  .utility-nav {
    font-size: 10px;
  }
}
@media screen and (max-width: 865px) {
  .utility-nav {
    display: none;
  }
}
.utility-nav li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.utility-nav li:first-child {
  padding-left: 0;
}
.utility-nav li:nth-last-child(2) {
  padding-right: 0;
}
.utility-nav li:last-child {
  display: none;
}
.utility-nav a {
  color: #BB8D3F;
}
.utility-nav a:hover {
  color: #caa463;
}

.rotate {
  transform: rotate(180deg);
}

a.hamburger-menu {
  color: #BB8D3F;
}

.mobile-nav {
  position: fixed;
  z-index: -100;
  background: #333;
  top: -100vh;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}
.mobile-nav.menu--open {
  top: 0;
  z-index: 4000;
  opacity: 1;
  transform: scale(1);
}
.mobile-nav.menu--open .top-nav .mobile-nav--active.mobile-nav__nav li {
  opacity: 1;
  transform: translateX(0px);
}
.mobile-nav .mobile-nav__header {
  border-bottom: none;
  padding: 15px;
}
.mobile-nav .mobile-nav__header .logo {
  width: 200px;
}
.mobile-nav .mobile-nav__header .close {
  opacity: 1;
  position: static;
  margin-top: 10px;
}
.mobile-nav .mobile-nav__header .close:hover {
  cursor: pointer;
}
.mobile-nav .mobile-nav__header .close svg {
  width: 24px;
}
.mobile-nav nav.mobile-nav__links {
  background: #020101;
  display: flex;
  text-align: center;
  padding: 10px 5px;
  position: relative;
}
.mobile-nav nav.mobile-nav__links li {
  color: #fff;
  font-size: 13px;
}
.mobile-nav nav.mobile-nav__links a {
  background: #222;
  border-color: #222;
  color: #fff;
  display: block;
  flex-grow: 1;
  font-weight: bold;
  margin: 0 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  padding-right: 0;
  text-transform: uppercase;
  width: 50%;
}
.mobile-nav .mobile-nav__body {
  height: calc(100vh - 126px);
  position: relative;
  overflow: hidden;
}
.mobile-nav .mobile-nav__nav {
  margin-top: 15px;
  padding-left: 30px;
  position: relative;
}
.mobile-nav .mobile-nav__nav > li {
  position: absolute;
  top: 0;
  left: 30px;
}
.mobile-nav .mobile-nav__nav li {
  display: block;
  margin-bottom: 20px;
  text-align: left;
  opacity: 0;
}
.mobile-nav .mobile-nav__nav a {
  color: #BB8D3F;
  font-size: 32px;
  font-weight: 500;
}
.mobile-nav .mobile-nav__nav a:hover {
  text-decoration: none;
}
.mobile-nav .mobile-nav__nav .sub-menu {
  display: block;
  float: none;
  opacity: 1;
  margin: 0;
  padding: 0;
  position: static;
  width: 100%;
  margin-top: 0;
}
.mobile-nav .mobile-nav__nav .sub-menu:before {
  display: none;
}
.mobile-nav .mobile-nav__nav .sub-menu li {
  background: none;
  border: none;
  display: block;
  margin-bottom: 0;
  text-align: left;
}
.mobile-nav .mobile-nav__nav .sub-menu > a {
  margin-bottom: 20px;
}
.mobile-nav .mobile-nav__nav .sub-menu a {
  color: #BB8D3F;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0px;
  padding: 0;
}
.mobile-nav .mobile-nav__nav .sub-menu a:hover {
  text-decoration: none;
}
.mobile-nav .top-nav {
  position: absolute;
  top: 0;
  left: 15px;
  width: 100%;
}
.mobile-nav .top-nav__container {
  padding: 0;
  z-index: 100;
  opacity: 0;
}
.mobile-nav .top-nav li {
  position: static;
  transform: translateX(-400px);
}
.mobile-nav .top-nav .menu-item-has-children .main-nav__arrow {
  margin-left: 10px;
}
.mobile-nav .sub-navs {
  position: absolute;
  top: 0;
  left: 15px;
  width: 100%;
}
.mobile-nav .sub-navs .menu-item-has-children > a:first-child {
  color: #FFF;
}
.mobile-nav .sub-navs__container li {
  font-size: 26px;
  pointer-events: none;
  z-index: 100;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(-400px);
}
.mobile-nav .sub-navs__container > li a:first-child {
  display: block;
  margin-bottom: 10px;
  transform: translateX(-400px);
}
.mobile-nav .sub-navs__container .sub-menu .main-nav__arrow {
  display: inline-block;
}
.mobile-nav .sub-navs__container .sub-menu a {
  font-size: 24px;
}
.mobile-nav .sub-navs__container .main-nav__arrow {
  color: #020101;
  display: none;
  margin-left: 5px;
}
.mobile-nav .sub-navs__container .mobile-nav--active {
  transform: translateX(0px) !important;
}
.mobile-nav .sub-navs__container .mobile-nav--active li,
.mobile-nav .sub-navs__container .mobile-nav--active a:first-child {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0px) !important;
}
.mobile-nav .mobile-nav--active li,
.mobile-nav .mobile-nav--active > a {
  transition: transform 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.mobile-nav .mobile-nav--active li:nth-child(1),
.mobile-nav .mobile-nav--active > a:nth-child(1) {
  transition-delay: 0.33s;
}
.mobile-nav .mobile-nav--active li:nth-child(2),
.mobile-nav .mobile-nav--active > a:nth-child(2) {
  transition-delay: 0.3s;
}
.mobile-nav .mobile-nav--active li:nth-child(3),
.mobile-nav .mobile-nav--active > a:nth-child(3) {
  transition-delay: 0.27s;
}
.mobile-nav .mobile-nav--active li:nth-child(4),
.mobile-nav .mobile-nav--active > a:nth-child(4) {
  transition-delay: 0.24s;
}
.mobile-nav .mobile-nav--active li:nth-child(5),
.mobile-nav .mobile-nav--active > a:nth-child(5) {
  transition-delay: 0.21s;
}
.mobile-nav .mobile-nav--active li:nth-child(6),
.mobile-nav .mobile-nav--active > a:nth-child(6) {
  transition-delay: 0.18s;
}
.mobile-nav .mobile-nav--active li:nth-child(7),
.mobile-nav .mobile-nav--active > a:nth-child(7) {
  transition-delay: 0.15s;
}
.mobile-nav .mobile-nav--active li:nth-child(8),
.mobile-nav .mobile-nav--active > a:nth-child(8) {
  transition-delay: 0.12s;
}
.mobile-nav .mobile-nav--active li:nth-child(1),
.mobile-nav .mobile-nav--active > a:nth-child(1) {
  transition-delay: 0.14s;
}
.mobile-nav .mobile-nav--active li:nth-child(2),
.mobile-nav .mobile-nav--active > a:nth-child(2) {
  transition-delay: 0.18s;
}
.mobile-nav .mobile-nav--active li:nth-child(3),
.mobile-nav .mobile-nav--active > a:nth-child(3) {
  transition-delay: 0.22s;
}
.mobile-nav .mobile-nav--active li:nth-child(4),
.mobile-nav .mobile-nav--active > a:nth-child(4) {
  transition-delay: 0.26s;
}
.mobile-nav .mobile-nav--active li:nth-child(5),
.mobile-nav .mobile-nav--active > a:nth-child(5) {
  transition-delay: 0.3s;
}
.mobile-nav .mobile-nav--active li:nth-child(6),
.mobile-nav .mobile-nav--active > a:nth-child(6) {
  transition-delay: 0.34s;
}
.mobile-nav .mobile-nav--active li:nth-child(7),
.mobile-nav .mobile-nav--active > a:nth-child(7) {
  transition-delay: 0.38s;
}
.mobile-nav .mobile-nav--active li:nth-child(8),
.mobile-nav .mobile-nav--active > a:nth-child(8) {
  transition-delay: 0.42s;
}
.mobile-nav .mobile-nav--active.top-nav__container,
.mobile-nav .sub-navs li.mobile-nav--active {
  opacity: 1;
  z-index: 200;
}

.nav-back {
  display: block;
  margin-bottom: -34px;
  transition: all 0.25s ease-in;
}
.nav-back__button {
  background: #222;
  border: 1px solid #898989;
  border-radius: 20px;
  display: inline-block;
  font-size: 16px;
  padding: 5px 20px 3px 15px;
  margin-left: 15px;
  transition: transform 0.5s;
  transform: translateX(-200px);
}
.nav-back.active {
  margin-top: 15px;
  margin-bottom: -5px;
  height: auto;
}
.nav-back.active .nav-back__button {
  transform: translateX(0px);
}
.nav-back .main-nav__arrow {
  display: inline-block;
}

.modal-content {
  background: #333;
  border-radius: 0;
  border: none;
  color: #fff;
}

.modal-size {
  width: 1160px;
}
@media screen and (max-width: 1199px) {
  .modal-size {
    width: 960px;
  }
}
@media screen and (max-width: 991px) {
  .modal-size {
    width: 720px;
  }
}
@media screen and (max-width: 865px) {
  .modal-size {
    background: #333;
    margin: 0;
    min-height: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 865px) {
  .modal-size .modal-content {
    box-shadow: none;
  }
}

.modal-size.modal-size--small {
  width: 660px;
}
@media screen and (max-width: 767px) {
  .modal-size.modal-size--small {
    width: 100%;
  }
}

.modal-body {
  padding: 0;
}

.search-modal,
.filter-modal,
.staff-listing-modal {
  opacity: 0;
  transition: all 0.2s;
}
.search-modal.in,
.filter-modal.in,
.staff-listing-modal.in {
  opacity: 1;
}
.search-modal .modal-header,
.filter-modal .modal-header,
.staff-listing-modal .modal-header {
  border: none;
  padding: 0 0 30px;
}
@media screen and (max-width: 575px) {
  .search-modal .modal-header,
.filter-modal .modal-header,
.staff-listing-modal .modal-header {
    padding: 15px;
  }
}
.search-modal .modal-header h3,
.filter-modal .modal-header h3,
.staff-listing-modal .modal-header h3 {
  margin: 0;
}
@media screen and (max-width: 575px) {
  .search-modal .modal-header h3,
.filter-modal .modal-header h3,
.staff-listing-modal .modal-header h3 {
    font-size: 24px;
  }
}
.search-modal .close,
.filter-modal .close,
.staff-listing-modal .close {
  opacity: 1;
  position: absolute;
  right: 35px;
  top: 47px;
  z-index: 3000;
}
@media screen and (max-width: 575px) {
  .search-modal .close,
.filter-modal .close,
.staff-listing-modal .close {
    top: 20px;
  }
}
.search-modal .close svg,
.filter-modal .close svg,
.staff-listing-modal .close svg {
  fill: #BB8D3F;
  width: 24px;
}
.search-modal .close svg:hover,
.filter-modal .close svg:hover,
.staff-listing-modal .close svg:hover {
  fill: #caa463;
}
.search-modal .modal-content,
.filter-modal .modal-content,
.staff-listing-modal .modal-content {
  padding: 35px;
}
@media screen and (max-width: 575px) {
  .search-modal .modal-content,
.filter-modal .modal-content,
.staff-listing-modal .modal-content {
    padding: 0;
  }
}

.search-form.loading {
  background: linear-gradient(45deg, #BB8D3F, #d1af76);
  background-size: 400% 400%;
  -webkit-animation: loading 1s ease-in-out infinite;
  -moz-animation: loading 1s ease-in-out infinite;
  animation: loading 1s ease-in-out infinite;
}
.search-form.loading .search__loading {
  display: block;
}

.search__loading {
  display: none;
  position: absolute;
  right: 25px;
  top: 33px;
  width: 40px;
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
@media screen and (max-width: 1199px) {
  .search__loading {
    top: 22px;
  }
}
@media screen and (max-width: 991px) {
  .search__loading {
    top: 15px;
  }
}
@media screen and (max-width: 767px) {
  .search__loading {
    top: 10px;
  }
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes loading {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-moz-keyframes loading {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes loading {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.search-form {
  background: #333;
  font-size: 54px;
  margin-bottom: 30px;
  padding: 2px;
}
@media screen and (max-width: 1199px) {
  .search-form {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .search-form {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .search-form {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .search-form {
    margin-bottom: 0;
  }
}
.search-form .search {
  color: #fff;
  padding-left: 80px;
  padding-right: 15px;
}
@media screen and (max-width: 991px) {
  .search-form .search {
    padding-left: 55px;
  }
}
.search-form .search::-webkit-input-placeholder {
  font-size: 54px;
}
@media screen and (max-width: 1199px) {
  .search-form .search::-webkit-input-placeholder {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .search-form .search::-webkit-input-placeholder {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .search-form .search::-webkit-input-placeholder {
    font-size: 24px;
  }
}

.search-form .search:-moz-placeholder {
  font-size: 54px;
}
@media screen and (max-width: 1199px) {
  .search-form .search:-moz-placeholder {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .search-form .search:-moz-placeholder {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .search-form .search:-moz-placeholder {
    font-size: 24px;
  }
}

.search-form .search::-moz-placeholder {
  font-size: 54px;
}
@media screen and (max-width: 1199px) {
  .search-form .search::-moz-placeholder {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .search-form .search::-moz-placeholder {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .search-form .search::-moz-placeholder {
    font-size: 24px;
  }
}

.search-form .search:-ms-input-placeholder {
  font-size: 54px;
}
@media screen and (max-width: 1199px) {
  .search-form .search:-ms-input-placeholder {
    font-size: 40px;
  }
}
@media screen and (max-width: 991px) {
  .search-form .search:-ms-input-placeholder {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .search-form .search:-ms-input-placeholder {
    font-size: 24px;
  }
}

.search-form .search__icon svg {
  fill: #767676;
  margin: 20px 0 0 15px;
  width: 36px;
}
@media screen and (max-width: 1199px) {
  .search-form .search__icon svg {
    margin: 15px 0 0 20px;
    width: 32px;
  }
}
@media screen and (max-width: 991px) {
  .search-form .search__icon svg {
    margin: 7px 0 0 5px;
    width: 25px;
  }
}
@media screen and (max-width: 767px) {
  .search-form .search__icon svg {
    margin-top: 3px;
  }
}

@media screen and (max-width: 575px) {
  .search-results {
    padding: 15px;
  }
}

.search-results__count {
  color: #767676;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 0;
  text-transform: uppercase;
}

.search-results__number {
  color: #BB8D3F;
  font-size: 24px;
  margin-right: 3px;
}

a.search-result,
.search-result {
  border-top: 1px solid #222;
  display: block;
  padding: 15px 0;
}
a.search-result:hover,
.search-result:hover {
  color: auto;
  text-decoration: none;
}
a.search-result .result-title,
.search-result .result-title {
  color: #fff;
  display: block;
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  a.search-result .result-title,
.search-result .result-title {
    font-size: 24px;
  }
}
a.search-result .result-subtitle,
.search-result .result-subtitle {
  color: #767676;
}
a.search-result .result-type,
.search-result .result-type {
  border: 2px solid #222;
  display: inline-block;
  font-size: 14px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 5px 10px;
}
a.search-result p,
.search-result p {
  color: #767676;
}
@media screen and (max-width: 767px) {
  a.search-result p,
.search-result p {
    font-size: 14px;
  }
}
a.search-result a:hover,
.search-result a:hover {
  text-decoration: none;
}

.search-result__poster {
  float: left;
  margin-right: 30px;
  width: 200px;
}
@media screen and (max-width: 991px) {
  .search-result__poster {
    width: 150px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 500px) {
  .search-result__poster {
    width: 120px;
    margin-right: 15px;
  }
}

.search-result__dates {
  color: #BB8D3F;
  display: block;
  margin: 10px 0;
  font-weight: 600;
}

.search-result__prompt {
  color: #767676;
  display: block;
  margin: 10px 0;
  font-weight: 600;
}

.search-results__listings {
  display: flex;
  margin-top: 25px;
}
@media screen and (max-width: 991px) {
  .search-results__listings {
    justify-content: space-between;
    width: 100%;
  }
}

.search-listing {
  transition: 0.4s;
  align-items: center;
  background: #222;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 2;
  font-size: 12px;
  justify-items: center;
  margin-left: 15px;
  padding: 20px 10px;
  text-align: center;
}
.search-listing:hover {
  background: #caa463;
  text-decoration: none;
}
.search-listing:hover .search-listing__date {
  color: #333;
}
.search-listing:first-of-type {
  margin-left: 0;
}
.search-listing:last-of-type {
  display: block !important;
}
.search-listing:nth-of-type(1n+6) {
  display: none;
}
@media screen and (max-width: 600px) {
  .search-listing:nth-of-type(1n+5) {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .search-listing:nth-of-type(1n+4) {
    display: none;
  }
}
@media screen and (max-width: 380px) {
  .search-listing:nth-of-type(1n+3) {
    display: none;
  }
}
.search-listing .search-listing__date {
  color: #BB8D3F;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  width: 100%;
}
.search-listing .search-listing__date .fa {
  font-size: 32px;
  padding-left: 3px;
}
.search-listing .search-listing__time {
  display: block;
  color: #fff;
  width: 100%;
}
.search-listing.number-performances-1, .search-listing.number-performances-2, .search-listing.number-performances-3, .search-listing.number-performances-4, .search-listing.number-performances-5 {
  display: none !important;
}
@media screen and (max-width: 600px) {
  .search-listing.number-performances-5 {
    display: block !important;
  }
}
@media screen and (max-width: 500px) {
  .search-listing.number-performances-4 {
    display: block !important;
  }
}
@media screen and (max-width: 380px) {
  .search-listing.number-performances-3 {
    display: block !important;
  }
}

.common-searches {
  padding-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .common-searches {
    padding: 15px;
  }
}

@media screen and (max-width: 575px) {
  .common-search {
    margin-top: 30px;
  }
  .common-search:first-child {
    margin-top: 0;
  }
}
@media screen and (max-width: 575px) {
  .common-search {
    margin-top: 0;
  }
}

.common-search__title {
  border-bottom: 1px solid #222;
  margin-bottom: 25px;
  padding-bottom: 15px;
}
@media screen and (max-width: 575px) {
  .common-search__title {
    margin-bottom: 0;
  }
}

.common-search__image {
  display: block;
}
@media screen and (max-width: 575px) {
  .common-search__image {
    display: none;
  }
}

.staff-listing-modal .modal-header {
  border-bottom: 1px solid #222;
}
.staff-listing-modal .modal-body {
  padding: 30px;
}
.staff-listing-modal__title {
  color: #767676;
  display: block;
}
.staff-listing-modal__contacts {
  margin: 15px 0;
}
.staff-listing-modal__contact {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  margin-right: 30px;
  text-transform: uppercase;
}

.visit-features .show-preview {
  margin-top: 30px;
}
.visit-features .show-preview h4 {
  margin-bottom: 0;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media screen and (max-width: 575px) {
  .faq-header {
    display: block;
  }
}

.faq-search {
  width: 300px;
}
@media screen and (max-width: 575px) {
  .faq-search {
    display: block;
    width: 100%;
  }
}

.faq-filters {
  display: flex;
  margin-bottom: 25px;
  justify-content: space-between;
}
@media screen and (max-width: 575px) {
  .faq-filters {
    display: none;
  }
}
.faq-filters .faq-filter {
  display: block;
  border-bottom: 2px solid #ddd;
  font-size: 24px;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .faq-filters .faq-filter {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .faq-filters .faq-filter {
    font-size: 12px;
  }
}
.faq-filters .faq-filter:hover {
  border-bottom: 6px solid #ddd;
  padding-bottom: 6px;
}
.faq-filters .faq-filter.faq-filter--active {
  border-bottom: 6px solid #BB8D3F;
  padding-bottom: 6px;
}
.faq-filters .faq-filter.faq-filter--active:hover {
  border-bottom: 6px solid #BB8D3F;
  padding-bottom: 6px;
}
.faq-filters .faq-filter--subscriber {
  display: none !important;
}

.faq-section .faq {
  border: 1px solid #ddd;
  margin-bottom: 25px;
  padding: 15px;
}
.faq-section .faq button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.faq-section .faq button.collapsed .faq__link:before {
  content: "Learn More";
}
.faq-section .faq__link {
  color: #BB8D3F;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.faq-section .faq__link:before {
  content: "Close";
}
.faq-section .faq p {
  margin-top: 15px;
  margin-bottom: 0;
}

.fade {
  opacity: 0;
  transition: 0.4s;
}
.fade.show {
  opacity: 1;
}

.collapse {
  display: none;
}
.collapse.show {
  display: block;
}

tr.collapse.show {
  display: table-row;
}

tbody.collapse.show {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.volunteer-boxes {
  display: flex;
  flex-wrap: wrap;
}
.volunteer-boxes .content-box {
  height: 100%;
}

.volunteer-box {
  margin-bottom: 30px;
}

.box-wrapper {
  background: #FFF;
}

.volunteer-cancel {
  background: #333;
  color: #FFF;
}
.volunteer-cancel .button, .volunteer-cancel input[type=submit] {
  margin-top: 10px;
}

@media screen and (max-width: 991px) {
  .sidebar--volunteer .sidebar-header {
    display: block !important;
  }
  .sidebar--volunteer .sidebar-content:nth-of-type(2) {
    border-top: none;
    padding-top: 10px;
  }
}

.show-preview--volunteer .volunteer-date {
  float: left;
  margin-right: 15px;
  width: 55px;
}
.show-preview--volunteer .volunteer-date .sidebar-header__day {
  font-size: 48px;
  letter-spacing: -1px;
}
.show-preview--volunteer .volunteer-date .sidebar-header__month {
  text-align: center;
}
.show-preview--volunteer .performance-toggle {
  margin-top: 5px;
  padding-left: 65px;
}
@media screen and (max-width: 767px) {
  .show-preview--volunteer .button, .show-preview--volunteer input[type=submit] {
    margin-top: 15px;
  }
}
.show-preview--volunteer .event-details {
  margin-top: 5px;
  flex-direction: row;
}
.show-preview--volunteer .event-details .divider {
  margin: 0 5px;
}
.show-preview--volunteer .performance-notes {
  margin: 0;
  padding: 0;
}
.show-preview--volunteer h4 {
  margin: 0;
}

.filter-mobile--volunteer {
  margin-top: 15px;
}

.volunteer-cancel-link {
  color: #767676;
  font-size: 10px;
}

.cancel-form .button, .cancel-form input[type=submit] {
  margin-top: 25px;
}

.alert-volunteer {
  background: #BB8D3F;
  border-radius: 0;
  color: #FFF;
  display: block;
  font-weight: bold;
  width: 100%;
}

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