@charset "UTF-8";
.animated {
  animation-duration: .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; }

#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 .5s ease-out;
  -moz-transition: opacity .5s ease-out;
  -o-transition: opacity .5s ease-out;
  transition: opacity .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: .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: .14285714em;
  text-align: center; }

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

.fa-border {
  padding: .2em .25em .15em;
  border: solid .08em #eee;
  border-radius: .1em; }

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

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

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

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

.pull-right {
  float: right; }

.pull-left {
  float: left; }

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

.fa.pull-right {
  margin-left: .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: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

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

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

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

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

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

.fa-th:before {
  content: "\f00a"; }

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

.fa-check:before {
  content: "\f00c"; }

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

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

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

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

.fa-signal:before {
  content: "\f012"; }

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

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

.fa-home:before {
  content: "\f015"; }

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

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

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

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

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

.fa-inbox:before {
  content: "\f01c"; }

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

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

.fa-refresh:before {
  content: "\f021"; }

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

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

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

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

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

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

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

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

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

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

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

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

.fa-list:before {
  content: "\f03a"; }

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

.fa-indent:before {
  content: "\f03c"; }

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

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

.fa-pencil:before {
  content: "\f040"; }

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

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

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

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

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

.fa-arrows:before {
  content: "\f047"; }

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

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

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

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

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

.fa-eject:before {
  content: "\f052"; }

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

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

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

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

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

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

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

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

.fa-crosshairs:before {
  content: "\f05b"; }

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

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

.fa-ban:before {
  content: "\f05e"; }

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

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

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

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

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

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

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

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

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

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

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

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

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

.fa-retweet:before {
  content: "\f079"; }

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

.fa-folder:before {
  content: "\f07b"; }

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

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

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

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

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

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

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

.fa-key:before {
  content: "\f084"; }

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

.fa-comments:before {
  content: "\f086"; }

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

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

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

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

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

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

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

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

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

.fa-trophy:before {
  content: "\f091"; }

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

.fa-upload:before {
  content: "\f093"; }

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

.fa-phone:before {
  content: "\f095"; }

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

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

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

.fa-twitter:before {
  content: "\f099"; }

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

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

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

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

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

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

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

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

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

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

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

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

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

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

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

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

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

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

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

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

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

.fa-paperclip:before {
  content: "\f0c6"; }

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

.fa-square:before {
  content: "\f0c8"; }

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

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

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

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

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

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

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

.fa-money:before {
  content: "\f0d6"; }

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

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

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

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

.fa-columns:before {
  content: "\f0db"; }

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

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

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

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

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

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

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

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

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

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

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

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

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

.fa-exchange:before {
  content: "\f0ec"; }

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

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

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

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

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

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

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

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

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

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

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

.fa-beer:before {
  content: "\f0fc"; }

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

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

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

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

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

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

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

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

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

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

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

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

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

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

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

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

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

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

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

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

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

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

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

.fa-gamepad:before {
  content: "\f11b"; }

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

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

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

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

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

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

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

.fa-crop:before {
  content: "\f125"; }

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

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

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

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

.fa-microphone:before {
  content: "\f130"; }

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

.fa-shield:before {
  content: "\f132"; }

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

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

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

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

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

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

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

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

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

.fa-bullseye:before {
  content: "\f140"; }

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

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

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

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

.fa-ticket:before {
  content: "\f145"; }

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

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

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

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

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

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

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

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

.fa-compass:before {
  content: "\f14e"; }

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

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

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

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

.fa-gbp:before {
  content: "\f154"; }

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

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

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

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

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

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

.fa-file:before {
  content: "\f15b"; }

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

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

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

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

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

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

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

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

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

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

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

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

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

.fa-dropbox:before {
  content: "\f16b"; }

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

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

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

.fa-tumblr:before {
  content: "\f173"; }

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

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

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

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

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

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

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

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

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

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

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

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

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

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

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

.fa-wheelchair:before {
  content: "\f193"; }

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

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

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

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

.fa-slack:before {
  content: "\f198"; }

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

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

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

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

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

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

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

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

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

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

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

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

.fa-steam:before {
  content: "\f1b6"; }

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

.fa-recycle:before {
  content: "\f1b8"; }

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

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

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

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

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

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

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

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

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

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

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

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

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

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

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

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

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

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

.fa-git:before {
  content: "\f1d3"; }

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

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

.fa-qq:before {
  content: "\f1d6"; }

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

.fa-send:before, .fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before, .fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before, .fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before, .fa-sheqel:before, .fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-intersex:before, .fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-genderless:before {
  content: "\f22d"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before, .fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

.fa-yc:before, .fa-y-combinator:before {
  content: "\f23b"; }

.fa-optin-monster:before {
  content: "\f23c"; }

.fa-opencart:before {
  content: "\f23d"; }

.fa-expeditedssl:before {
  content: "\f23e"; }

.fa-battery-4:before, .fa-battery:before, .fa-battery-full:before {
  content: "\f240"; }

.fa-battery-3:before, .fa-battery-three-quarters:before {
  content: "\f241"; }

.fa-battery-2:before, .fa-battery-half:before {
  content: "\f242"; }

.fa-battery-1:before, .fa-battery-quarter:before {
  content: "\f243"; }

.fa-battery-0:before, .fa-battery-empty:before {
  content: "\f244"; }

.fa-mouse-pointer:before {
  content: "\f245"; }

.fa-i-cursor:before {
  content: "\f246"; }

.fa-object-group:before {
  content: "\f247"; }

.fa-object-ungroup:before {
  content: "\f248"; }

.fa-sticky-note:before {
  content: "\f249"; }

.fa-sticky-note-o:before {
  content: "\f24a"; }

.fa-cc-jcb:before {
  content: "\f24b"; }

.fa-cc-diners-club:before {
  content: "\f24c"; }

.fa-clone:before {
  content: "\f24d"; }

.fa-balance-scale:before {
  content: "\f24e"; }

.fa-hourglass-o:before {
  content: "\f250"; }

.fa-hourglass-1:before, .fa-hourglass-start:before {
  content: "\f251"; }

.fa-hourglass-2:before, .fa-hourglass-half:before {
  content: "\f252"; }

.fa-hourglass-3:before, .fa-hourglass-end:before {
  content: "\f253"; }

.fa-hourglass:before {
  content: "\f254"; }

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
  content: "\f255"; }

.fa-hand-stop-o:before, .fa-hand-paper-o:before {
  content: "\f256"; }

.fa-hand-scissors-o:before {
  content: "\f257"; }

.fa-hand-lizard-o:before {
  content: "\f258"; }

.fa-hand-spock-o:before {
  content: "\f259"; }

.fa-hand-pointer-o:before {
  content: "\f25a"; }

.fa-hand-peace-o:before {
  content: "\f25b"; }

.fa-trademark:before {
  content: "\f25c"; }

.fa-registered:before {
  content: "\f25d"; }

.fa-creative-commons:before {
  content: "\f25e"; }

.fa-gg:before {
  content: "\f260"; }

.fa-gg-circle:before {
  content: "\f261"; }

.fa-tripadvisor:before {
  content: "\f262"; }

.fa-odnoklassniki:before {
  content: "\f263"; }

.fa-odnoklassniki-square:before {
  content: "\f264"; }

.fa-get-pocket:before {
  content: "\f265"; }

.fa-wikipedia-w:before {
  content: "\f266"; }

.fa-safari:before {
  content: "\f267"; }

.fa-chrome:before {
  content: "\f268"; }

.fa-firefox:before {
  content: "\f269"; }

.fa-opera:before {
  content: "\f26a"; }

.fa-internet-explorer:before {
  content: "\f26b"; }

.fa-tv:before, .fa-television:before {
  content: "\f26c"; }

.fa-contao:before {
  content: "\f26d"; }

.fa-500px:before {
  content: "\f26e"; }

.fa-amazon:before {
  content: "\f270"; }

.fa-calendar-plus-o:before {
  content: "\f271"; }

.fa-calendar-minus-o:before {
  content: "\f272"; }

.fa-calendar-times-o:before {
  content: "\f273"; }

.fa-calendar-check-o:before {
  content: "\f274"; }

.fa-industry:before {
  content: "\f275"; }

.fa-map-pin:before {
  content: "\f276"; }

.fa-map-signs:before {
  content: "\f277"; }

.fa-map-o:before {
  content: "\f278"; }

.fa-map:before {
  content: "\f279"; }

.fa-commenting:before {
  content: "\f27a"; }

.fa-commenting-o:before {
  content: "\f27b"; }

.fa-houzz:before {
  content: "\f27c"; }

.fa-vimeo:before {
  content: "\f27d"; }

.fa-black-tie:before {
  content: "\f27e"; }

.fa-fonticons:before {
  content: "\f280"; }

.fa-reddit-alien:before {
  content: "\f281"; }

.fa-edge:before {
  content: "\f282"; }

.fa-credit-card-alt:before {
  content: "\f283"; }

.fa-codiepie:before {
  content: "\f284"; }

.fa-modx:before {
  content: "\f285"; }

.fa-fort-awesome:before {
  content: "\f286"; }

.fa-usb:before {
  content: "\f287"; }

.fa-product-hunt:before {
  content: "\f288"; }

.fa-mixcloud:before {
  content: "\f289"; }

.fa-scribd:before {
  content: "\f28a"; }

.fa-pause-circle:before {
  content: "\f28b"; }

.fa-pause-circle-o:before {
  content: "\f28c"; }

.fa-stop-circle:before {
  content: "\f28d"; }

.fa-stop-circle-o:before {
  content: "\f28e"; }

.fa-shopping-bag:before {
  content: "\f290"; }

.fa-shopping-basket:before {
  content: "\f291"; }

.fa-hashtag:before {
  content: "\f292"; }

.fa-bluetooth:before {
  content: "\f293"; }

.fa-bluetooth-b:before {
  content: "\f294"; }

.fa-percent:before {
  content: "\f295"; }

.fa-gitlab:before {
  content: "\f296"; }

.fa-wpbeginner:before {
  content: "\f297"; }

.fa-wpforms:before {
  content: "\f298"; }

.fa-envira:before {
  content: "\f299"; }

.fa-universal-access:before {
  content: "\f29a"; }

.fa-wheelchair-alt:before {
  content: "\f29b"; }

.fa-question-circle-o:before {
  content: "\f29c"; }

.fa-blind:before {
  content: "\f29d"; }

.fa-audio-description:before {
  content: "\f29e"; }

.fa-volume-control-phone:before {
  content: "\f2a0"; }

.fa-braille:before {
  content: "\f2a1"; }

.fa-assistive-listening-systems:before {
  content: "\f2a2"; }

.fa-asl-interpreting:before, .fa-american-sign-language-interpreting:before {
  content: "\f2a3"; }

.fa-deafness:before, .fa-hard-of-hearing:before, .fa-deaf:before {
  content: "\f2a4"; }

.fa-glide:before {
  content: "\f2a5"; }

.fa-glide-g:before {
  content: "\f2a6"; }

.fa-signing:before, .fa-sign-language:before {
  content: "\f2a7"; }

.fa-low-vision:before {
  content: "\f2a8"; }

.fa-viadeo:before {
  content: "\f2a9"; }

.fa-viadeo-square:before {
  content: "\f2aa"; }

.fa-snapchat:before {
  content: "\f2ab"; }

.fa-snapchat-ghost:before {
  content: "\f2ac"; }

.fa-snapchat-square:before {
  content: "\f2ad"; }

.fa-pied-piper:before {
  content: "\f2ae"; }

.fa-first-order:before {
  content: "\f2b0"; }

.fa-yoast:before {
  content: "\f2b1"; }

.fa-themeisle:before {
  content: "\f2b2"; }

.fa-google-plus-circle:before, .fa-google-plus-official:before {
  content: "\f2b3"; }

.fa-fa:before, .fa-font-awesome:before {
  content: "\f2b4"; }

.fa-handshake-o:before {
  content: "\f2b5"; }

.fa-envelope-open:before {
  content: "\f2b6"; }

.fa-envelope-open-o:before {
  content: "\f2b7"; }

.fa-linode:before {
  content: "\f2b8"; }

.fa-address-book:before {
  content: "\f2b9"; }

.fa-address-book-o:before {
  content: "\f2ba"; }

.fa-vcard:before, .fa-address-card:before {
  content: "\f2bb"; }

.fa-vcard-o:before, .fa-address-card-o:before {
  content: "\f2bc"; }

.fa-user-circle:before {
  content: "\f2bd"; }

.fa-user-circle-o:before {
  content: "\f2be"; }

.fa-user-o:before {
  content: "\f2c0"; }

.fa-id-badge:before {
  content: "\f2c1"; }

.fa-drivers-license:before, .fa-id-card:before {
  content: "\f2c2"; }

.fa-drivers-license-o:before, .fa-id-card-o:before {
  content: "\f2c3"; }

.fa-quora:before {
  content: "\f2c4"; }

.fa-free-code-camp:before {
  content: "\f2c5"; }

.fa-telegram:before {
  content: "\f2c6"; }

.fa-thermometer-4:before, .fa-thermometer:before, .fa-thermometer-full:before {
  content: "\f2c7"; }

.fa-thermometer-3:before, .fa-thermometer-three-quarters:before {
  content: "\f2c8"; }

.fa-thermometer-2:before, .fa-thermometer-half:before {
  content: "\f2c9"; }

.fa-thermometer-1:before, .fa-thermometer-quarter:before {
  content: "\f2ca"; }

.fa-thermometer-0:before, .fa-thermometer-empty:before {
  content: "\f2cb"; }

.fa-shower:before {
  content: "\f2cc"; }

.fa-bathtub:before, .fa-s15:before, .fa-bath:before {
  content: "\f2cd"; }

.fa-podcast:before {
  content: "\f2ce"; }

.fa-window-maximize:before {
  content: "\f2d0"; }

.fa-window-minimize:before {
  content: "\f2d1"; }

.fa-window-restore:before {
  content: "\f2d2"; }

.fa-times-rectangle:before, .fa-window-close:before {
  content: "\f2d3"; }

.fa-times-rectangle-o:before, .fa-window-close-o:before {
  content: "\f2d4"; }

.fa-bandcamp:before {
  content: "\f2d5"; }

.fa-grav:before {
  content: "\f2d6"; }

.fa-etsy:before {
  content: "\f2d7"; }

.fa-imdb:before {
  content: "\f2d8"; }

.fa-ravelry:before {
  content: "\f2d9"; }

.fa-eercast:before {
  content: "\f2da"; }

.fa-microchip:before {
  content: "\f2db"; }

.fa-snowflake-o:before {
  content: "\f2dc"; }

.fa-superpowers:before {
  content: "\f2dd"; }

.fa-wpexplorer:before {
  content: "\f2de"; }

.fa-meetup:before {
  content: "\f2e0"; }

.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: #BA862D; }

.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: #BA862D;
  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: 14px;
  color: #767676;
  font-weight: 600;
  text-transform: uppercase; }

.gform_title {
  font-size: 36px;
  font-weight: bold; }

.gfield_label {
  color: #767676;
  font-size: 16px;
  font-weight: 600;
  margin-top: 30px;
  text-transform: uppercase; }

legend.gfield_label.gfield_label_before_complex {
  display: none; }

input.gform_button {
  margin-left: 0px !important; }

a {
  transition:  0.4s;
  color: #BA862D;
  font-weight: 400;
  text-decoration: none; }
  a:hover {
    color: #aa7a29; }
  a:focus {
    outline-offset: 3px;
    color: #aa7a29; }
  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: #BA862D;
    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: 18px;
  line-height: 1.35; }

.p--small {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.25; }
  .p--small a {
    font-size: 16px; }

.p--tiny {
  font-size: 14px; }

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

.performance-single.container:first-of-type {
  margin-top: 0px; }

.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: 16px;
  border: 1px solid #BA862D;
  border-radius: 0;
  background: #BA862D;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase; }
  .button:hover, input[type="submit"]:hover, .button:focus, input[type="submit"]:focus {
    background: #aa7a29;
    border-color: #aa7a29;
    color: #fff;
    cursor: pointer;
    text-decoration: none; }
  .button--black {
    background: #222;
    border-color: #222;
    color: #BA862D; }
  .button--centered {
    display: block;
    max-width: 300px;
    margin: 0 auto; }
  .button--outline, .homeslide__button:nth-of-type(2), .slide__button:nth-of-type(2) {
    border-color: #767676;
    background: none;
    color: #BA862D; }
    .button--outline:hover, .homeslide__button:hover:nth-of-type(2), .slide__button:hover:nth-of-type(2) {
      background: rgba(186, 134, 45, 0.1);
      border-color: #BA862D;
      color: #BA862D; }
  .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: #BA862D; }
    @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: #BA862D;
          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(186, 134, 45, 0.1);
      border-color: #BA862D;
      color: #BA862D; }

.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: #BA862D;
    text-decoration: none; }
    .pdf:hover .pdf__name,
    .pdf:hover .pdf__size {
      color: #BA862D; }

.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: #BA862D;
    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: #aa7a29;
    border-color: #aa7a29; }
    .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: #BA862D;
    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: #BA862D;
  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: #BA862D;
  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: #BA862D; }
  .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 #BA862D;
  color: #767676; }

.footer__top {
  padding-top: 50px;
  padding-bottom: 50px; }

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 188px;
  width: 100%;
  padding-left: 0px; }
  @media screen and (max-width: 767px) {
    .footer-nav ul {
      display: none; } }
  .footer-nav ul li {
    display: block;
    padding: 10px 0;
    margin-bottom: 0px;
    width: 260px; }
    @media screen and (max-width: 1199px) {
      .footer-nav ul li {
        width: 220px; } }
    @media screen and (max-width: 991px) {
      .footer-nav ul li {
        width: 160px; } }
    .footer-nav ul li .main-nav__arrow {
      display: inline-block !important; }
  .footer-nav ul a {
    transition:  0.4s;
    color: #fff;
    display: inline-block;
    font-weight: normal;
    font-size: 16px;
    text-decoration: none; }
    .footer-nav ul a:hover, .footer-nav ul a.active {
      color: #aa7a29;
      cursor: pointer; }
    @media screen and (max-width: 1199px) {
      .footer-nav ul 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: 25px 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:hover {
  color: #aa7a29;
  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: #BA862D;
      border-color: #BA862D; }
      .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: #BA862D;
  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: #aa7a29;
  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 #BA862D;
      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: #BA862D; }

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

.homeslide {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 0px;
  margin-bottom: -30px;
  padding-bottom: 50px;
  margin-bottom: 0px; }
  @media screen and (max-width: 991px) {
    .homeslide {
      padding-bottom: 0px;
      margin-bottom: -30px; } }
  .homeslide__content {
    display: flex;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
    width: 100%; }
    @media screen and (max-width: 600px) {
      .homeslide__content {
        margin-bottom: 30px; } }
  @media screen and (max-width: 600px) {
    .homeslide__content-box {
      padding-bottom: 50px; } }
  .homeslide__title {
    margin-bottom: 5px; }
    @media screen and (max-width: 600px) {
      .homeslide__title {
        font-size: 42px; } }
  .homeslide__subtitle {
    color: #898989;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400; }
    @media screen and (max-width: 600px) {
      .homeslide__subtitle {
        font-size: 16px; } }
  .homeslide__timeline {
    display: flex;
    align-items: center;
    margin-top: 10px; }
    .homeslide__timeline .icon {
      margin-right: 10px; }
    @media screen and (max-width: 600px) {
      .homeslide__timeline {
        font-size: 14px; } }
  .homeslide__buttons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end; }
    @media screen and (max-width: 991px) {
      .homeslide__buttons {
        justify-content: flex-start;
        margin-top: 15px; } }
    @media screen and (max-width: 575px) {
      .homeslide__buttons {
        flex-wrap: wrap; } }
  @media screen and (max-width: 575px) {
    .homeslide__button {
      width: 100%; } }
  @media screen and (max-width: 600px) {
    .homeslide__button {
      flex-grow: 2; } }
  .homeslide__button:nth-of-type(2) {
    margin-left: 30px; }
    @media screen and (max-width: 575px) {
      .homeslide__button:nth-of-type(2) {
        margin-left: 0;
        margin-top: 15px; } }
  .homeslide__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; }
    .homeslide__arrow:hover {
      text-decoration: none;
      cursor: pointer; }
    .homeslide__arrow.slick-prev {
      left: -40px;
      padding-right: 5px; }
    .homeslide__arrow.slick-next {
      right: -40px;
      padding-left: 5px; }
    @media screen and (max-width: 1024px) {
      .homeslide__arrow {
        opacity: .5;
        top: -50px; }
        .homeslide__arrow.slick-prev {
          padding-right: 0;
          left: 15px; }
        .homeslide__arrow.slick-next {
          padding-left: 0;
          right: 15px; } }
    @media screen and (max-width: 575px) {
      .homeslide__arrow {
        display: none !important; } }

.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: .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: #BA862D;
  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 #f9f9f8;
  background: #f9f9f8;
  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: #BA862D;
    margin: 0; }
  .sidebar-toggle.active {
    background: #fff;
    border-color: #BA862D; }
    .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: #BA862D;
  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, .warning .p--small a {
      font-size: 14px; } }

.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: #BA862D;
    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: #BA862D;
    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: "\201C";
      color: #BA862D; }
    blockquote p:after {
      content: "\201D";
      color: #BA862D; }

.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: #BA862D;
    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: #BA862D; }
  .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: #BA862D;
  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: #BA862D; }
    @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: #BA862D;
  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; } }

button > .faq__question {
  text-align: left;
  line-height: 1.2em; }

.certificate {
  background: #fff;
  border: 15px solid #BA862D;
  border-radius: 3px;
  padding: 40px;
  position: relative; }
  @media screen and (max-width: 767px) {
    .certificate {
      margin-bottom: 30px; } }
  .certificate .corner {
    background: #BA862D;
    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: #BA862D;
    display: inline-block;
    margin-right: 5px;
    position: absolute;
    top: 0;
    left: -25px; }
  .range-h1 span.range-dollar-sign {
    color: #BA862D;
    display: inline-block;
    margin-right: 5px;
    top: 0;
    position: absolute; }
  .range-h1 span.range-value-start {
    font-weight: normal;
    font-size: 60px; }
  .range-h1 span.range-value-end {
    font-weight: normal;
    font-size: 60px;
    padding: 20px; }

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

.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: #BA862D;
    opacity: 1;
    background: #BA862D; }
    .subscription-radios input[type="radio"]:checked ~ label .subscription-radios__promo {
      background: #BA862D; }
    .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: #BA862D;
      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; }

.contact-form > .gform_wrapper .gform_heading .gform_description {
  display: none; }

.contact-form > .gform_wrapper .gform_heading .gform_required_legend {
  display: none; }

.contact-form > .gform_wrapper .donate-now-g-form .gform_card_icon_container {
  display: none; }

.contact-form > .gform_wrapper .donate-now-g-form input {
  border: none !important; }

.contact-form > .gform_wrapper .donate-now-g-form .gform_fields {
  display: flex;
  flex-wrap: wrap; }

.contact-form > .gform_wrapper .donate-now-g-form .ginput_amount {
  height: 70px;
  font-size: 32px !important; }

/* For larger screens */
@media (min-width: 1200px) {
  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-half {
    width: 49%; }

  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-half:nth-child(even) {
    margin-left: 18px; }

  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-full {
    width: 100%; }

  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-third {
    width: 32.5%; }

  .gfield--width-third:nth-child(even) {
    margin-left: 10px;
    margin-right: 10px; }

  .gfield--width-fourth {
    width: 25%; }

  .ginput_container_creditcard {
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
    .ginput_container_creditcard .ginput_full {
      width: 50%; }
    .ginput_container_creditcard .ginput_full:last-of-type {
      width: 100%; }
    .ginput_container_creditcard .ginput_cardextras {
      display: flex; }
    .ginput_container_creditcard .ginput_cardinfo_left {
      width: 50%; }
      .ginput_container_creditcard .ginput_cardinfo_left .gform-field-label {
        border-bottom: none !important;
        padding-top: 26px;
        padding-left: 10px;
        margin-bottom: 0px;
        color: #767676;
        font-size: 16px;
        font-weight: 600;
        margin-top: 30px;
        text-transform: uppercase; }
      .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container {
        display: flex; }
        .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container {
          width: 50%;
          margin: 10px 0px 10px 10px; }
          .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container .ginput_card_expiration {
            background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
            border: none !important;
            height: 47px; }
        .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container {
          width: 50%;
          margin: 10px; }
          .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container .ginput_card_expiration_year {
            background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
            border: none !important;
            height: 47px; }
    .ginput_container_creditcard .contact-form > .gform_wrapper .donate-now-g-form .ginput_cardinfo_right {
      width: 50%;
      display: block; }
      .ginput_container_creditcard .contact-form > .gform_wrapper .donate-now-g-form .ginput_cardinfo_right > :nth-child(even) {
        margin-right: 10px; }
      .ginput_container_creditcard .contact-form > .gform_wrapper .donate-now-g-form .ginput_cardinfo_right > :nth-child(odd) {
        margin-left: 10px; } }
/* For mobile screens */
@media (max-width: 1200px) {
  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-half,
  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-full,
  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-third,
  .contact-form > .gform_wrapper .donate-now-g-form .gfield--width-fourth {
    width: 100%; }

  .ginput_cardinfo_left .gform-field-label {
    border-bottom: none !important;
    padding-top: 26px;
    margin-bottom: 0px;
    color: #767676;
    font-size: 16px;
    font-weight: 600;
    margin-top: 30px;
    text-transform: uppercase; }
  .ginput_cardinfo_left .ginput_card_expiration_container {
    display: flex; }
    .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container {
      width: 50%;
      margin: 0px; }
      .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container .ginput_card_expiration {
        background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
        border: none !important;
        height: 47px; }
    .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container {
      width: 50%;
      margin: 0px;
      margin-left: 10px; }
      .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container .ginput_card_expiration_year {
        background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
        border: none !important;
        height: 47px; } }
.contact-form input:focus {
  background: #f5f5f4; }

@media (max-width: 1200px) {
  .flexible-title {
    font-size: 54px; } }
@media (max-width: 600px) {
  .flexible-title {
    font-size: 42px; } }
.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; } }

.contact-form > .gform_wrapper .gform_heading .gform_required_legend {
  display: none; }

.contact-form > .gform_wrapper .education-registration-g-form .gform_card_icon_container {
  display: none; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield_visibility_hidden {
  display: none; }

.contact-form > .gform_wrapper .education-registration-g-form .gf_progressbar_wrapper {
  position: relative;
  border-top: 2px solid #767676;
  margin: 60px; }

.gf_progressbar_wrapper::before,
.gf_progressbar_wrapper::after,
.gf_progressbar_percentage::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 1px solid #767676;
  border-radius: 50%;
  padding: 5px;
  top: -11px; }

.gf_progressbar_wrapper::before {
  left: 0; }

.gf_progressbar_wrapper::after {
  right: 0; }

.gf_progressbar_percentage::before {
  left: 50%;
  transform: translateX(-50%); }

.gf_progressbar_wrapper .gf_progressbar_title {
  display: none; }

.gf_progressbar_percentage > span {
  display: none; }

.gf_progressbar > .percentbar_33::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #BA862D;
  border-radius: 50px; }

.gf_progressbar > .percentbar_66::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background-color: #BA862D;
  border-radius: 50px; }

.gf_progressbar > .percentbar_100::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: -7px;
  left: 100%;
  transform: translateX(-132%);
  width: 12px;
  height: 12px;
  background-color: #BA862D;
  border-radius: 50px; }

/* Step Labels */
.gf_progressbar_wrapper::before::after,
.gf_progressbar_wrapper::after::after,
.gf_progressbar_percentage::before::after {
  content: attr(data-step);
  position: absolute;
  top: -30px;
  font-size: 14px;
  white-space: nowrap; }

.contact-form > .gform_wrapper .education-registration-g-form input {
  border: none !important; }

.contact-form > .gform_wrapper .education-registration-g-form textarea {
  border: none !important;
  background-color: #f5f5f4; }

.contact-form > .gform_wrapper .education-registration-g-form select {
  border: none !important;
  background-color: #f5f5f4;
  padding: 10px; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield--input-type-price {
  visibility: hidden;
  height: 0px; }

.contact-form > .gform_wrapper .education-payment-g-form .gfield--type-address {
  width: 100%; }

.contact-form > .gform_wrapper .education-registration-g-form .gform_fields,
.contact-form > .gform_wrapper .education-payment-g-form .gform_fields {
  display: flex;
  flex-wrap: wrap; }
  .contact-form > .gform_wrapper .education-registration-g-form .gform_fields > .gfield--type-checkbox,
  .contact-form > .gform_wrapper .education-payment-g-form .gform_fields > .gfield--type-checkbox {
    display: none; }

.contact-form > .gform_wrapper .education-payment-g-form .gform_footer input:first-child {
  grid-column: 4 / span 1;
  justify-self: end;
  width: 100%; }

.contact-form > .gform_wrapper .education-payment-g-form .gform_footer,
.contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  display: grid;
  margin-top: 30px; }
  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input,
  .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input {
    width: 60%;
    margin-top: 0px !important; }
  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input:first-child:last-child,
  .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input:first-child:last-child {
    grid-column: 4 / span 1;
    justify-self: end; }
  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input:nth-child(2),
  .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input:nth-child(2) {
    grid-column: 4 / span 1;
    justify-self: end; }
  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer .gform_previous_button,
  .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer .gform_previous_button {
    background-color: white;
    border: 1px solid #767676 !important;
    color: #BA862D; }

.contact-form label {
  font-size: 14px;
  margin-top: 20px; }

.contact-form > .gform_wrapper .education-registration-g-form .ginput_amount {
  height: 70px;
  font-size: 32px !important; }

.contact-form > .gform_wrapper .education-registration-g-form .ginput_container_textarea textarea {
  height: 100px; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield_checkbox .gchoice {
  display: flex;
  align-items: center; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield_checkbox .gchoice input {
    width: fit-content;
    color: black; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield_checkbox .gchoice label {
    color: black;
    width: fit-content;
    margin-top: 4px;
    margin-left: 10px;
    margin-bottom: 0px; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield_required {
  display: none; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  padding-right: 50px; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield_radio .gchoice input {
    width: fit-content; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield_radio .gchoice label {
    width: fit-content;
    margin-top: 4px;
    margin-left: 10px;
    margin-bottom: 0px; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield_radio {
  display: flex;
  flex-wrap: wrap; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield--type-radio legend {
  border: none !important;
  margin-bottom: 5px;
  padding-top: 30px; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield--type-total {
  display: flex; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-total label {
    text-transform: none;
    color: black;
    font-size: 24px; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-total .ginput_container_total {
    margin-top: 12px;
    width: fit-content; }
    .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-total .ginput_container_total input {
      font-size: 22px !important;
      background-color: white; }

.contact-form > .gform_wrapper .education-registration-g-form .gfield--type-repeater,
.contact-form > .gform_wrapper .education-payment-g-form .gfield--type-repeater {
  width: 100%; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-repeater legend,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-repeater legend {
    display: none; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-repeater .gfield_repeater_items > div:not(:first-child),
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-repeater .gfield_repeater_items > div:not(:first-child) {
    border-top: 2px solid #f5f5f4; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-repeater .gfield_repeater_buttons,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-repeater .gfield_repeater_buttons {
    padding-bottom: 15px !important; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-repeater .gfield_repeater_items > div:not(:last-child) .gfield_repeater_buttons > .add_repeater_item,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-repeater .gfield_repeater_items > div:not(:last-child) .gfield_repeater_buttons > .add_repeater_item {
    display: none !important; }
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-repeater .gfield_repeater_items > div:not(:last-child) .gfield_repeater_buttons,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-repeater .gfield_repeater_items > div:not(:last-child) .gfield_repeater_buttons {
    justify-content: flex-end; }

.contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] {
  border-top: 2px solid #f5f5f4; }

.contact-form > .gform_wrapper .education-payment-g-form .gfield--type-creditcard {
  width: 100%; }

.contact-form > .gform_wrapper .education-payment-g-form .gfield--width-half:nth-child(even) {
  margin-left: 0px !important; }

/* For larger screens */
@media (min-width: 1200px) {
  .contact-form > .gform_wrapper .education-registration-g-form .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield_repeater_item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-top: 20px; }

  .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address {
    margin-top: 20px !important;
    padding-top: 20px !important; }

  .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address,
  .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-top: 10px;
    margin-top: 40px;
    border-top: 2px solid #f5f5f4; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :first-child,
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :first-child {
      grid-column: 1 / span 2; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(2),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(2) {
      grid-column: 3 / span 2;
      padding-left: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(3),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(3) {
      grid-column: 1 / span 1; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(4),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(4) {
      grid-column: 2 / span 1;
      padding-left: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(5),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(5) {
      grid-column: 3 / span 1;
      padding-left: 40px;
      padding-right: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(6),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(6) {
      grid-column: 4 / span 1; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons,
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons {
      grid-column: 1 / span 4;
      display: flex;
      justify-content: space-between;
      padding: 10px 0px; }
      .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons .add_repeater_item,
      .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons .add_repeater_item {
        text-transform: uppercase;
        color: #BA8A5D;
        font-size: 14px;
        font-weight: 800; }
      .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons .remove_repeater_item,
      .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons .remove_repeater_item {
        text-transform: uppercase;
        color: #767676;
        font-size: 14px;
        font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 4; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(3) {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(4) {
    grid-column: 3 / span 1;
    padding-right: 40px;
    padding-left: 40px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(5) {
    grid-column: 4 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(6) {
    grid-column: 1 / span 4; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(7) {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(8) {
    grid-column: 3 / span 2;
    padding-left: 40px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 4;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item {
    padding-bottom: 10px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
      grid-column: 1 / span 2; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
      grid-column: 3 / span 2;
      padding-left: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(3) {
      grid-column: 1 / span 2; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(4) {
      grid-column: 3 / span 2;
      padding-left: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons {
      grid-column: 1 / span 4;
      display: flex;
      justify-content: space-between;
      padding: 10px 0px; }
      .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
        text-transform: uppercase;
        color: #BA8A5D;
        font-size: 14px;
        font-weight: 800; }
      .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
        text-transform: uppercase;
        color: #767676;
        font-size: 14px;
        font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 3 / span 2;
    padding-left: 40px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 4;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--input-type-price,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-email {
    width: 50%; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-phone {
    width: 46%;
    margin-left: 40px !important; }

  #field_9_38 {
    width: 50% !important; }

  #field_9_39 {
    width: 46% !important;
    margin-left: 40px !important; }

  #field_9_50 {
    width: 50% !important; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield--width-full {
    width: 100%; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield--width-third {
    width: 32.5%; }

  .gfield--width-third:nth-child(even) {
    margin-left: 10px;
    margin-right: 10px; }

  .gfield--width-fourth {
    width: 25%; }

  .ginput_container_creditcard {
    display: flex;
    flex-wrap: wrap;
    width: 100%; }
    .ginput_container_creditcard .ginput_full {
      width: 50%; }
    .ginput_container_creditcard .ginput_full:last-of-type {
      width: 100%; }
      .ginput_container_creditcard .ginput_full:last-of-type label {
        margin-top: -5px !important; }
    .ginput_container_creditcard .ginput_cardextras {
      display: flex; }
    .ginput_container_creditcard .ginput_cardinfo_left {
      width: 50%;
      padding-left: 30px;
      padding-right: 30px; }
      .ginput_container_creditcard .ginput_cardinfo_left .gform-field-label {
        border-bottom: none !important;
        padding-top: 15px;
        padding-left: 10px;
        margin-bottom: 0px;
        color: #767676;
        font-size: 14px;
        font-weight: 600;
        margin-top: 30px;
        text-transform: uppercase; }
      .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container {
        display: flex; }
        .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container {
          width: 50%;
          margin: 10px 0px 10px 10px; }
          .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container .ginput_card_expiration {
            background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
            border: none !important;
            height: 47px;
            font-weight: 500; }
          .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container select > option[value=""] {
            color: #767676; }
        .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container {
          width: 50%;
          margin: 10px; }
          .ginput_container_creditcard .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container .ginput_card_expiration_year {
            background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
            border: none !important;
            height: 47px;
            font-weight: 500; }
    .ginput_container_creditcard .ginput_cardinfo_right {
      width: 50%;
      display: block; }
      .ginput_container_creditcard .ginput_cardinfo_right > :nth-child(even) {
        margin-right: 10px; }
      .ginput_container_creditcard .ginput_cardinfo_right > :nth-child(odd) {
        margin-right: 0px !important; } }
#field_9_49 {
  display: none !important; }

/* For mobile screens */
@media (max-width: 1200px) {
  .contact-form > .gform_wrapper .education-registration-g-form .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr 1fr; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield_repeater_item {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr; }

  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input,
  .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input {
    width: 100%;
    margin-top: 0px !important; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 4; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(3) {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(4) {
    grid-column: 1 / span 1;
    padding-right: 40px;
    padding-left: 0px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(5) {
    grid-column: 2 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(6) {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(7) {
    grid-column: 1 / span 1;
    padding-right: 40px;
    padding-left: 0px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(8) {
    grid-column: 2 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 2;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item {
    padding-bottom: 10px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
      grid-column: 1 / span 1; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
      grid-column: 2 / span 1;
      padding-left: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(3) {
      grid-column: 1 / span 1; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(4) {
      grid-column: 2 / span 1;
      padding-left: 40px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons {
      grid-column: 1 / span 2;
      display: flex;
      justify-content: space-between;
      padding: 10px 0px; }
      .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
        text-transform: uppercase;
        color: #BA8A5D;
        font-size: 14px;
        font-weight: 800; }
      .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
        text-transform: uppercase;
        color: #767676;
        font-size: 14px;
        font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 2 / span 1;
    padding-left: 40px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 2;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address,
  .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address {
    display: grid;
    grid-template-columns: 1fr 1fr; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :first-child,
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :first-child {
      grid-column: 1 / span 2; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(2),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(2) {
      grid-column: 1 / span 2;
      padding-left: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(3),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(3) {
      grid-column: 1 / span 1;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(4),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(4) {
      grid-column: 2 / span 1;
      padding-left: 40px;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(5),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(5) {
      grid-column: 1 / span 1;
      padding-left: 0px;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(6),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(6) {
      grid-column: 2 / span 1;
      padding-left: 40px;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons,
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons {
      grid-column: 1 / span 2;
      display: flex;
      justify-content: space-between;
      padding: 10px 0px; }
      .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons .add_repeater_item,
      .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons .add_repeater_item {
        text-transform: uppercase;
        color: #BA8A5D;
        font-size: 14px;
        font-weight: 800; }
      .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons .remove_repeater_item,
      .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons .remove_repeater_item {
        text-transform: uppercase;
        color: #767676;
        font-size: 14px;
        font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield--width-half,
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--width-full,
  .contact-form > .gform_wrapper .education-registration-g-form .gfield--width-third {
    width: 100%; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield--width-fourth {
    width: 50%; }

  .ginput_cardinfo_left .gform-field-label {
    border-bottom: none !important;
    padding-top: 26px;
    margin-bottom: 0px;
    color: #767676;
    font-size: 14px;
    font-weight: 600;
    margin-top: 30px;
    text-transform: uppercase; }
  .ginput_cardinfo_left .ginput_card_expiration_container {
    display: flex; }
    .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container {
      width: 50%;
      margin: 0px; }
      .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_month_container .ginput_card_expiration {
        background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
        border: none !important;
        height: 47px;
        font-weight: 500; }
    .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container {
      width: 50%;
      margin: 0px;
      margin-left: 40px; }
      .ginput_cardinfo_left .ginput_card_expiration_container .ginput_card_expiration_year_container .ginput_card_expiration_year {
        background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center !important;
        border: none !important;
        height: 47px;
        font-weight: 500; } }
.contact-form input:focus {
  background: #f5f5f4; }

@media (max-width: 1200px) {
  .flexible-title {
    font-size: 54px; } }
@media (max-width: 800px) {
  .flexible-title {
    font-size: 42px; }

  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer,
  .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    margin-top: 30px; }
    .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input,
    .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input {
      width: 100%;
      margin-top: 0px !important; }
    .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input:first-child:last-child,
    .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input:first-child:last-child {
      grid-column: 4 / span 1;
      justify-self: end; }
    .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input:nth-child(2),
    .contact-form > .gform_wrapper .education-registration-g-form .gform_page_footer input:nth-child(2) {
      grid-column: 4 / span 1;
      justify-self: end; }

  .contact-form > .gform_wrapper .education-payment-g-form .gform_footer input:first-child {
    grid-column: 4 / span 1;
    justify-self: end;
    width: 100%; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield_checkbox {
    display: grid;
    grid-template-columns: 1fr; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield_repeater_item {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(3) {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(4) {
    grid-column: 1 / span 1;
    padding-right: 0px;
    padding-left: 0px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(5) {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(6) {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(7) {
    grid-column: 1 / span 1;
    padding-right: 0px;
    padding-left: 0px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(8) {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 1;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 10px 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="1110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address,
  .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address {
    display: grid;
    grid-template-columns: 1fr; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :first-child,
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :first-child {
      grid-column: 1 / span 1; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(2),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(2) {
      grid-column: 1 / span 1;
      padding-left: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(3),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(3) {
      grid-column: 1 / span 1; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(4),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(4) {
      grid-column: 1 / span 1;
      padding-left: 0px;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(5),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(5) {
      grid-column: 1 / span 1;
      padding-left: 0px;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address :nth-child(6),
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address :nth-child(6) {
      grid-column: 1 / span 1;
      padding-left: 0px;
      padding-right: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons,
    .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons {
      grid-column: 1 / span 1;
      display: flex;
      justify-content: space-between;
      padding: 10px 0px; }
      .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons .add_repeater_item,
      .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons .add_repeater_item {
        text-transform: uppercase;
        color: #BA8A5D;
        font-size: 14px;
        font-weight: 800; }
      .contact-form > .gform_wrapper .education-registration-g-form .ginput_container_address .gfield_repeater_buttons .remove_repeater_item,
      .contact-form > .gform_wrapper .education-payment-g-form .ginput_container_address .gfield_repeater_buttons .remove_repeater_item {
        text-transform: uppercase;
        color: #767676;
        font-size: 14px;
        font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item {
    padding-bottom: 10px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
      grid-column: 1 / span 1;
      padding-right: 0px;
      padding-left: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
      grid-column: 1 / span 1;
      padding-right: 0px;
      padding-left: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(3) {
      grid-column: 1 / span 1;
      padding-right: 0px;
      padding-left: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(4) {
      grid-column: 1 / span 1;
      padding-right: 0px;
      padding-left: 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons {
      grid-column: 1 / span 1;
      display: flex;
      justify-content: space-between;
      padding: 10px 0px; }
      .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
        text-transform: uppercase;
        color: #BA8A5D;
        font-size: 14px;
        font-weight: 800; }
      .contact-form > .gform_wrapper .education-registration-g-form [id*="2110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
        text-transform: uppercase;
        color: #767676;
        font-size: 14px;
        font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 1;
    padding-right: 0px;
    padding-left: 0px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 1;
    padding-right: 0px;
    padding-left: 0px; }
  .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 1;
    display: flex;
    justify-content: space-between;
    padding: 10px 0px; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-registration-g-form [id*="3110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; } }
.p-22px > p {
  font-size: 22px; }

.contact-form > .gform_wrapper .education-payment-g-form input {
  border: none !important; }

.contact-form > .gform_wrapper .education-payment-g-form textarea {
  border: none !important;
  background-color: #f5f5f4; }

.contact-form > .gform_wrapper .education-payment-g-form select {
  border: none !important;
  background-color: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center;
  padding: 10px; }

.contact-form > .gform_wrapper .education-payment-g-form .gform_card_icon_container {
  display: none; }

@media (min-width: 1200px) {
  .contact-form > .gform_wrapper .education-payment-g-form .gfield_repeater_item {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-top: 10px; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--input-type-price,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-email {
    width: 50%; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-phone {
    width: 46%;
    margin-left: 40px !important; }

  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 4; }
  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 4;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px !important; }
    .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; } }
@media (max-width: 1200px) {
  .contact-form > .gform_wrapper .education-payment-g-form .gfield_repeater_item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 10px; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--input-type-price,
  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-email {
    width: 100%; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--type-phone {
    width: 100%;
    margin-left: 0px !important; }

  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 2; }
  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 4; }
  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 2;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px !important; }
    .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; }

  .contact-form > .gform_wrapper .education-registration-g-form .gfield--type-date {
    width: 50% !important;
    margin: 0px; }

  #field_9_54 {
    width: 46%;
    margin-left: 40px; } }
@media (max-width: 800px) {
  .contact-form > .gform_wrapper .education-payment-g-form .gfield_repeater_item {
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 10px; }

  .contact-form > .gform_wrapper .education-payment-g-form .gfield--width-half {
    width: 100%; }

  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_cell:first-child {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_cell:nth-child(2) {
    grid-column: 1 / span 1; }
  .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons {
    grid-column: 1 / span 1;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px !important; }
    .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons .add_repeater_item {
      text-transform: uppercase;
      color: #BA8A5D;
      font-size: 14px;
      font-weight: 800; }
    .contact-form > .gform_wrapper .education-payment-g-form [id*="4110"] .gfield_repeater_item .gfield_repeater_buttons .remove_repeater_item {
      text-transform: uppercase;
      color: #767676;
      font-size: 14px;
      font-weight: 800; } }
.education-donors-container {
  max-height: 500px;
  overflow-y: scroll; }

@media (min-width: 992px) {
  .education-donors-container {
    max-height: 1100px;
    overflow-y: scroll; } }
.education-donors-container {
  border: 1px solid lightgray;
  padding: 20px; }
  .education-donors-container ul {
    list-style: none;
    padding: 0px; }
    .education-donors-container ul li {
      display: flex;
      justify-content: space-between;
      align-items: center; }

.gform_submission_error {
  color: #E91F00;
  font-weight: 600; }

.education-donation input {
  border: none !important; }
.education-donation input[type="submit"] {
  max-width: 100% !important; }
.education-donation .gfield select {
  border: none !important;
  background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center; }
.education-donation .gfield_label {
  border: none !important; }
.education-donation .gform_ajax_spinner_12 {
  display: none !important; }
.education-donation .gform_heading {
  display: none !important; }
.education-donation .ginput_container_creditcard .ginput_full {
  width: 100% !important; }
.education-donation .gform_card_icon_container {
  display: none !important; }
.education-donation .ginput_cardinfo_left {
  padding-left: 0px !important; }
.education-donation .ginput_card_expiration_month_container {
  margin-left: 0px !important; }
.education-donation .gform-field-label {
  padding-left: 0px !important; }
.education-donation .gfield_description {
  font-size: 12px;
  padding: 12px 0px;
  color: #767676;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 1px solid lightgray; }
.education-donation .ginput_left {
  float: left;
  margin-right: 20px;
  width: auto; }
.education-donation .ginput_right {
  float: right;
  width: auto; }
.education-donation .ginput_address_country {
  width: 46% !important; }
.education-donation .ginput_card_expiration_year_container {
  margin-right: 0px !important; }
.education-donation .ginput_card_security_code {
  margin-right: 10px !important; }
.education-donation .gfield_radio {
  display: flex;
  justify-content: space-between; }
  .education-donation .gfield_radio .gchoice_12_3_0,
  .education-donation .gfield_radio .gchoice_11_3_0 {
    display: flex !important;
    width: 100% !important;
    align-items: center !important; }
    .education-donation .gfield_radio .gchoice_12_3_0 .gfield-choice-input,
    .education-donation .gfield_radio .gchoice_11_3_0 .gfield-choice-input {
      margin: 0px; }
    .education-donation .gfield_radio .gchoice_12_3_0 .gform-field-label,
    .education-donation .gfield_radio .gchoice_11_3_0 .gform-field-label {
      margin: 0px; }
  .education-donation .gfield_radio .gchoice_12_3_1,
  .education-donation .gfield_radio .gchoice_11_3_1 {
    display: flex !important;
    width: 100% !important;
    align-items: center !important; }
    .education-donation .gfield_radio .gchoice_12_3_1 .gfield-choice-input,
    .education-donation .gfield_radio .gchoice_11_3_1 .gfield-choice-input {
      margin: 0px; }
    .education-donation .gfield_radio .gchoice_12_3_1 .gform-field-label,
    .education-donation .gfield_radio .gchoice_11_3_1 .gform-field-label {
      margin: 0px; }
  .education-donation .gfield_radio .gfield-choice-input {
    width: 50px !important; }

.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: #BA862D; }
  .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: #BA862D;
    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: #BA862D; }

.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: #BA862D;
  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: #BA862D;
    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 #7c5a1e 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: #aa7a29; }

.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 .5s step-end infinite alternate, blink-alt .5s .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; } }

@media screen and (max-width: 600px) {
  .grid-logo-text {
    font-size: 14px !important; } }
.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: #BA862D;
  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: #BA862D;
    width: 14px !important; }
    .filter-modal .close svg:hover {
      fill: #aa7a29; }
.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: #aa7a29;
      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: #BA862D;
    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;
  text-align: center;
  width: 100%; }

.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;
  color: #fff; }

.show-preview {
  background-color: #fff; }
  .show-preview .show-details {
    margin-top: 7px; }

.show-preview__content {
  background-color: #fff;
  padding: 20px 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: #BA862D;
    text-transform: uppercase; }

.event-details {
  font-size: 14px;
  font-weight: normal; }
  .event-details .volunteer {
    font-size: 12px; }

.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%; }
      .show-preview--horizontal .event-details__item .volunteer {
        font-size: 12px; } }
  @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;
      min-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: #BA862D;
  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 #BA862D;
    position: absolute;
    top: -6px;
    left: 50%;
    margin-left: -6px; }
.js-copy-button.copied .prompt {
  opacity: 1; }

.performance-icons {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  @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;
  padding-bottom: 10px; }
  @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: -350px;
    padding-bottom: 350px; }

.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 !important; }
    @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%; }
  @media (max-width: 767px) {
    .performance-card .performance-card--date {
      display: none; } }
  .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: #BA862D;
      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: #aa7a29;
        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; }

.mobile-performance-update-button {
  width: 100%; }

.sp-thumbnail-desktop {
  position: absolute;
  left: 200px;
  top: 120px; }

.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: #BA862D !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: #BA862D; }

.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: #BA862D;
      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: #BA862D;
    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; } }

.p-support-highlight p {
  font-size: 16px;
  color: #222222;
  font-weight: lighter;
  letter-spacing: 0.5px; }

.support-mobile-column {
  display: block; }
  @media screen and (max-width: 991px) {
    .support-mobile-column {
      padding-left: 15px;
      padding-right: 15px; } }

.sidebar-support {
  margin-bottom: 30px;
  position: relative;
  z-index: 1010; }
  @media screen and (max-width: 991px) {
    .sidebar-support {
      display: block; } }
  @media screen and (max-width: 991px) {
    .sidebar-support.active {
      display: block; } }

.support-icons-wrapper {
  flex-direction: column; }
  @media screen and (max-width: 1199px) {
    .support-icons-wrapper {
      flex-direction: row;
      flex-wrap: wrap; } }

.support-icons {
  flex-direction: column; }
  @media screen and (max-width: 991px) {
    .support-icons {
      flex-direction: row;
      flex-wrap: wrap; } }
  @media screen and (max-width: 767px) {
    .support-icons {
      flex-direction: row;
      flex-wrap: wrap; } }

.support-icons-inner {
  flex-direction: column; }
  @media screen and (max-width: 991px) {
    .support-icons-inner {
      flex-direction: row;
      flex-wrap: wrap;
      max-width: 50%; } }
  @media screen and (max-width: 767px) {
    .support-icons-inner {
      flex-direction: row;
      flex-wrap: wrap;
      max-width: 100%;
      width: 100%; } }

.support-icon-paragraph {
  width: 200px !important; }
  @media screen and (max-width: 1199px) {
    .support-icon-paragraph {
      width: 80% !important; } }
  @media screen and (max-width: 767px) {
    .support-icon-paragraph {
      width: 80% !important; } }
  @media screen and (max-width: 575px) {
    .support-icon-paragraph {
      width: 80% !important; } }

.support-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 991px) {
    .support-buttons {
      margin-top: 30px;
      margin-right: 0px;
      padding-left: 0;
      padding-top: 15px;
      padding-bottom: 15px; } }

.support-buttons-wrapper {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 991px) {
    .support-buttons-wrapper {
      padding-left: 0px;
      padding-right: 0px;
      border-left: none;
      border-top: 1px solid #ddd;
      flex-direction: row;
      align-items: flex-start;
      justify-content: flex-start; }
      .support-buttons-wrapper:nth-child(even) {
        padding-right: 20px !important; } }
  @media screen and (max-width: 575px) {
    .support-buttons-wrapper {
      padding-left: 0px;
      padding-right: 0px;
      border-left: none;
      border-top: 1px solid #ddd;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start; }
      .support-buttons-wrapper:nth-child(even) {
        padding-right: 0px !important; } }

.con-left-border {
  border-left: 1px solid #ddd !important;
  border-top: none !important; }
  @media screen and (max-width: 767px) {
    .con-left-border {
      border-left: none !important;
      border-top: 1px solid #ddd !important; } }

.highlight-icons {
  max-width: 250px; }
  @media screen and (max-width: 1199px) {
    .highlight-icons {
      max-width: 50%; } }
  @media screen and (max-width: 767px) {
    .highlight-icons {
      max-width: 100%; } }

.p-support {
  font-size: 16px;
  color: #222222;
  font-weight: lighter;
  letter-spacing: 0.5px; }

.support-contact-wrapper {
  flex-direction: column; }
  @media screen and (max-width: 991px) {
    .support-contact-wrapper {
      flex-direction: row; } }
  @media screen and (max-width: 767px) {
    .support-contact-wrapper {
      flex-direction: column; } }

@media screen and (max-width: 1199px) {
  .support-contact {
    margin-right: 30px; } }
@media screen and (max-width: 767px) {
  .support-contact {
    margin-right: 0px; } }

.support-donation-types {
  flex-direction: column;
  align-items: center;
  max-width: 48%;
  margin-bottom: 30px; }
  .support-donation-types:nth-child(odd) {
    margin-right: 4%; }
    @media screen and (max-width: 767px) {
      .support-donation-types:nth-child(odd) {
        width: 100%;
        margin-right: 0px; } }
  @media screen and (max-width: 767px) {
    .support-donation-types {
      max-width: 100%; } }

.highlight-image-wrapper {
  align-items: center;
  justify-content: center; }
  @media screen and (max-width: 991px) {
    .highlight-image-wrapper {
      padding-bottom: 20px; } }

.highlight-image {
  object-fit: cover;
  width: 100%;
  height: -webkit-fill-available; }
  @media screen and (max-width: 991px) {
    .highlight-image {
      height: 300px; } }

.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 .4s; }
  .arrow-link__text {
    color: #333;
    margin-bottom: 0; }
  .arrow-link__icon {
    width: 12px; }
  .arrow-link:hover {
    background: #aa7a29;
    text-decoration: none; }
    .arrow-link:hover .arrow-link__text {
      color: #FFF; }

.divider-below {
  margin: 20px 0px;
  border-bottom: 1px solid #eee; }

.divider-below:last-child {
  border-bottom: none;
  margin: 0px 0px; }

.grid-paragraph p {
  font-size: 16px !important; }

.support-form label {
  color: #767676;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase; }
.support-form input,
.support-form textarea {
  transition:  0.4s;
  border: none; }
  .support-form input:focus,
  .support-form textarea:focus {
    border: none;
    background: #f5f5f4; }
.support-form input[type="submit"] {
  border: none;
  display: block;
  max-width: 200px; }
.support-form select {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  border: none;
  background: #f5f5f4 url(../img/fs-selecter-arrow.png) no-repeat right center; }
.support-form fieldset {
  min-width: 100% !important; }
.support-form div.gchoice {
  align-items: baseline;
  display: flex; }
.support-form li .gchoice {
  align-items: baseline;
  display: flex; }
.support-form label#label_8_1_1 {
  margin-top: 0px; }
.support-form label#label_8_1_0,
.support-form label#label_8_1_1 {
  text-transform: initial;
  font-weight: 500;
  color: #333333;
  line-height: 1.4; }
.support-form legend.gfield_label {
  margin-bottom: 0px; }
.support-form .gchoice.gchoice_8_1_1 {
  width: 50%; }
.support-form .gchoice.gchoice_8_1_0 {
  width: 50%; }
.support-form #input_8_1.gfield_radio {
  display: flex;
  align-items: baseline; }
.support-form li .gchoice input {
  width: auto;
  margin-right: 10px; }
.support-form input.gfield-choice-input {
  width: auto;
  margin-right: 10px; }
.support-form div#ui-datepicker-div.ui-datepicker.gform-theme-datepicker {
  background-color: lightgray; }
.support-form .gform_footer .top_label {
  margin-top: 60px;
  padding-top: 50px; }
.support-form .gfield--width-half:nth-child(odd) {
  float: left;
  width: 49%;
  clear: none;
  padding-right: 20px; }
  @media screen and (max-width: 767px) {
    .support-form .gfield--width-half:nth-child(odd) {
      width: 100%;
      padding-right: 0px; } }
.support-form .gfield--width-half:nth-child(even) {
  float: right;
  width: 49%;
  clear: none;
  padding-bottom: 20px; }
  @media screen and (max-width: 767px) {
    .support-form .gfield--width-half:nth-child(even) {
      width: 100%; } }
.support-form .ginput_left {
  float: left;
  width: 49%;
  clear: none;
  padding-right: 20px; }
  @media screen and (max-width: 767px) {
    .support-form .ginput_left {
      width: 100%;
      padding-right: 0px; } }
.support-form .ginput_right {
  float: right;
  width: 49%;
  clear: none; }
  @media screen and (max-width: 767px) {
    .support-form .ginput_right {
      width: 100%; } }
.support-form .validation_message {
  color: #E91F00;
  font-weight: bold;
  font-size: 16px; }
.support-form .gfield_error input,
.support-form .gfield_error textarea {
  border: 2px solid #E91F00; }
.support-form .gform_fileupload_rules {
  font-size: 14px !important; }
.support-form .selecter {
  position: relative; }
.support-form .selecter-selected {
  border: none;
  background-color: #f5f5f4; }
.support-form .selecter-options {
  border-left: none;
  border-right: none; }
.support-form .selecter-item {
  border-bottom: none;
  font-size: 18px;
  font-weight: 400; }

div#ui-datepicker-div {
  background-color: #fff;
  padding: 10px; }

.support-border-repeater {
  margin-right: 0px;
  border-left: 1px solid #ddd;
  border-top: none; }
  @media screen and (max-width: 1199px) {
    .support-border-repeater {
      border-left: none;
      border-top: 1px solid #ddd;
      padding-left: 0;
      padding-top: 30px; } }

.support-border-repeater-first {
  margin-right: 0px;
  border-left: none;
  border-top: none; }
  @media screen and (max-width: 1199px) {
    .support-border-repeater-first {
      border-left: none;
      border-top: 1px solid #ddd;
      padding-left: 0;
      padding-top: 30px !important; } }

.support-border {
  margin-right: 0px;
  border-left: 1px solid #ddd;
  border-top: none; }
  @media screen and (max-width: 991px) {
    .support-border {
      border-left: none;
      border-top: 1px solid #ddd;
      padding-left: 0;
      padding-top: 30px; } }

.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"],
    .theater-banner__buttons input.slick-disabled[type="submit"] {
      background: transparent;
      border-color: #898989;
      color: #898989; }
    .theater-banner__buttons i {
      margin-top: 5px; }

.theater-banner-sponsor {
  display: block;
  color: #fff;
  height: 750px;
  margin-bottom: -400px;
  padding-top: 150px; }
  @media screen and (max-width: 991px) {
    .theater-banner-sponsor {
      margin-bottom: -350px; } }
  @media screen and (max-width: 767px) {
    .theater-banner-sponsor {
      height: 830px;
      padding-top: 100px; } }
  .theater-banner-sponsor .overview-title:after {
    content: "";
    display: block;
    width: 17%;
    padding-top: 20px;
    margin-left: 5px;
    border-bottom: 4px solid #E91F00; }
  .theater-banner-sponsor__icon {
    display: block;
    margin: 0 auto 15px;
    height: 35px; }
    @media screen and (max-width: 991px) {
      .theater-banner-sponsor__icon {
        margin-top: 10px;
        margin-bottom: 5px; } }
    @media screen and (max-width: 767px) {
      .theater-banner-sponsor__icon {
        margin-top: 25px; } }
    @media screen and (max-width: 575px) {
      .theater-banner-sponsor__icon {
        height: 25px; } }
    .theater-banner-sponsor__icon svg {
      height: 100%; }
  .theater-banner-sponsor__text {
    display: block;
    font-weight: 500; }
    @media screen and (max-width: 991px) {
      .theater-banner-sponsor__text {
        font-size: 12px; } }
  .theater-banner-sponsor__slider {
    margin-bottom: 100px; }
    @media screen and (max-width: 991px) {
      .theater-banner-sponsor__slider {
        margin-bottom: 50px; } }
    .theater-banner-sponsor__slider .low-count-slider .performance-card--data:first-of-type {
      margin-left: 0;
      padding-left: 0;
      padding-right: 0; }
  .theater-banner-sponsor__buttons {
    position: absolute;
    right: 30px;
    bottom: 420px; }
    @media screen and (max-width: 991px) {
      .theater-banner-sponsor__buttons {
        bottom: 380px; } }
    @media screen and (max-width: 575px) {
      .theater-banner-sponsor__buttons {
        bottom: 406px; } }
    .theater-banner-sponsor__buttons .button.slick-disabled, .theater-banner-sponsor__buttons input.slick-disabled[type="submit"],
    .theater-banner-sponsor__buttons input.slick-disabled[type="submit"] {
      background: transparent;
      border-color: #898989;
      color: #898989; }
    .theater-banner-sponsor__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; }

.theater-feature {
  margin-top: 30px !important; }
  @media screen and (max-width: 991px) {
    .theater-feature {
      margin-top: 30px !important; }
      .theater-feature:first-child {
        margin-top: 0; } }
  .theater-feature img {
    width: 100%; }

.theater-about .display-title {
  color: #BA862D;
  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: #BA862D; }
.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: #BA862D;
    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: #BA862D;
      display: block;
      width: 1px;
      height: 30px;
      position: absolute;
      bottom: 0px;
      left: 50%; }
    .timeline .timeline-event:before {
      content: '';
      background: #BA862D;
      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 .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 29px 5px; }
  @media screen and (max-width: 991px) {
    header {
      padding: 15px 15px 5px; } }
  @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;
      margin-top: auto;
      margin-bottom: auto; } }
  .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-content: center;
  margin-left: auto;
  text-align: right;
  padding-top: 25px;
  margin-bottom: -15px;
  order: 3; }
  @media screen and (max-width: 991px) {
    .main-nav,
    .icon-nav {
      margin-top: 0px; } }
  @media screen and (max-width: 865px) {
    .main-nav,
    .icon-nav {
      margin-top: 0;
      margin-left: 0; } }

.main-nav ul,
.icon-nav ul {
  padding-left: 0px; }
  .main-nav ul > li,
  .icon-nav ul > li {
    margin-left: 15px;
    padding-left: 5px;
    padding-right: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative; }
    @media screen and (max-width: 1199px) {
      .main-nav ul > li,
      .icon-nav ul > li {
        margin-left: 10px; } }
    @media screen and (max-width: 991px) {
      .main-nav ul > li,
      .icon-nav ul > li {
        padding-left: 0;
        padding-right: 0; } }
    @media screen and (max-width: 926px) {
      .main-nav ul > li,
      .icon-nav ul > li {
        display: none; } }
    .main-nav ul > li:hover .sub-menu,
    .icon-nav ul > li:hover .sub-menu {
      display: block;
      opacity: 1; }
    .main-nav ul > li a,
    .main-nav ul > li button,
    .icon-nav ul > li a,
    .icon-nav ul > li button {
      font-size: 16px;
      color: #BA862D;
      display: inline-block;
      font-weight: normal;
      text-decoration: none; }
      .main-nav ul > li a:hover, .main-nav ul > li a.active,
      .main-nav ul > li button:hover,
      .main-nav ul > li button.active,
      .icon-nav ul > li a:hover,
      .icon-nav ul > li a.active,
      .icon-nav ul > li button:hover,
      .icon-nav ul > li button.active {
        cursor: pointer; }
        .main-nav ul > li a:hover span, .main-nav ul > li a.active span,
        .main-nav ul > li button:hover span,
        .main-nav ul > li button.active span,
        .icon-nav ul > li a:hover span,
        .icon-nav ul > li a.active span,
        .icon-nav ul > li button:hover span,
        .icon-nav ul > li button.active span {
          color: #aa7a29; }
      @media screen and (max-width: 1199px) {
        .main-nav ul > li a,
        .main-nav ul > li button,
        .icon-nav ul > li a,
        .icon-nav ul > li button {
          font-size: 14px; } }
      .main-nav ul > li a span,
      .main-nav ul > li button span,
      .icon-nav ul > li a span,
      .icon-nav ul > li button span {
        transition:  0.4s;
        color: #fff; }
    .main-nav ul > li a.nav-link--icon,
    .main-nav ul > li button.nav-link--icon,
    .icon-nav ul > li a.nav-link--icon,
    .icon-nav ul > li button.nav-link--icon {
      display: flex;
      align-items: center; }
      .main-nav ul > li a.nav-link--icon svg,
      .main-nav ul > li button.nav-link--icon svg,
      .icon-nav ul > li a.nav-link--icon svg,
      .icon-nav ul > li button.nav-link--icon svg {
        display: inline-block;
        width: 18px; }
  .main-nav ul .mobile-menu,
  .icon-nav ul .mobile-menu {
    display: none; }
    @media screen and (max-width: 926px) {
      .main-nav ul .mobile-menu,
      .icon-nav ul .mobile-menu {
        display: inline-block;
        margin-left: 30px; } }
    @media screen and (max-width: 575px) {
      .main-nav ul .mobile-menu,
      .icon-nav ul .mobile-menu {
        display: inline-block; } }
    @media screen and (max-width: 926px) {
      .main-nav ul .mobile-menu a,
      .main-nav ul .mobile-menu button,
      .icon-nav ul .mobile-menu a,
      .icon-nav ul .mobile-menu button {
        font-size: 26px;
        line-height: 1; } }
    .main-nav ul .mobile-menu a:hover,
    .main-nav ul .mobile-menu button:hover,
    .icon-nav ul .mobile-menu a:hover,
    .icon-nav ul .mobile-menu button:hover {
      cursor: pointer; }
  .main-nav ul .search-link,
  .icon-nav ul .search-link {
    display: inline-block !important; }
  .main-nav ul .sub-menu,
  .icon-nav ul .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: 38px;
    right: 0;
    margin-right: -80px;
    z-index: 1000; }
    @media screen and (max-width: 991px) {
      .main-nav ul .sub-menu,
      .icon-nav ul .sub-menu {
        box-shadow: none; } }
    .main-nav ul .sub-menu:before,
    .icon-nav ul .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 ul .sub-menu li,
    .icon-nav ul .sub-menu li {
      border-top: 1px solid #020101;
      display: block;
      margin: 0;
      padding: 0;
      position: relative; }
      .main-nav ul .sub-menu li:first-of-type,
      .icon-nav ul .sub-menu li:first-of-type {
        border-top: none; }
      .main-nav ul .sub-menu li:hover .main-nav__arrow,
      .icon-nav ul .sub-menu li:hover .main-nav__arrow {
        color: #BA862D; }
      .main-nav ul .sub-menu li a,
      .icon-nav ul .sub-menu li a {
        background: #333;
        color: #fff;
        display: block;
        font-size: 14px;
        padding: 10px; }
      .main-nav ul .sub-menu li .main-nav__arrow,
      .icon-nav ul .sub-menu li .main-nav__arrow {
        transition:  0.4s;
        font-size: 20px;
        color: #020101;
        position: absolute;
        right: 15px;
        top: 10px; }
      .main-nav ul .sub-menu li .fa-angle-down:before,
      .icon-nav ul .sub-menu li .fa-angle-down:before {
        content: "\f105"; }

.icon-nav {
  margin-left: 0; }

.search-link__icon svg {
  fill: #BA862D;
  height: 18px;
  width: 18px; }
  .search-link__icon svg:hover {
    opacity: .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: #aa7a29;
    cursor: pointer; }
  @media screen and (max-width: 1199px) {
    a.nav-link {
      font-size: 14px; } }

@media screen and (max-width: 926px) {
  .early-hide {
    display: none; } }

.menu-item-has-children .main-nav__arrow {
  display: inline-block; }

.main-nav__arrow {
  color: #BA862D;
  display: none;
  padding-left: 5px;
  transition: .4s; }

.utility-nav {
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 30px;
  text-align: right;
  text-transform: uppercase;
  list-style-type: none; }
  @media screen and (max-width: 926px) {
    .utility-nav {
      display: none; } }
  .utility-nav ul {
    font-size: 14px; }
    @media screen and (max-width: 1199px) {
      .utility-nav ul {
        font-size: 12px; } }
  .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: #BA862D; }
    .utility-nav a:hover {
      color: #aa7a29; }

.rotate {
  transform: rotate(180deg); }

a.hamburger-menu {
  color: #BA862D; }

.mobile-nav {
  position: fixed;
  z-index: -100;
  background: #333;
  top: -100vh;
  opacity: 0;
  transform: scale(0.8);
  transition: all .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: #BA862D;
      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: #BA862D;
        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 .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 .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: 926px) {
    .modal-size {
      background: #333;
      margin: 0;
      min-height: 100%;
      width: 100%; } }
  @media screen and (max-width: 926px) {
    .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 .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: #BA862D;
      width: 24px; }
      .search-modal .close svg:hover,
      .filter-modal .close svg:hover,
      .staff-listing-modal .close svg:hover {
        fill: #aa7a29; }
  .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, #BA862D, #d8aa5c);
  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: #BA862D;
  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: #BA862D;
  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: #aa7a29;
    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: #BA862D;
    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 #BA862D;
      padding-bottom: 6px; }
      .faq-filters .faq-filter.faq-filter--active:hover {
        border-bottom: 6px solid #BA862D;
        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: #BA862D;
    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; }

.faq-tabs {
  display: block; }

.faq-select {
  display: none; }

@media (max-width: 767px) {
  .faq-tabs {
    display: none; }

  .faq-select {
    display: block;
    width: 75%;
    font-size: 16px !important; }

  .faq-section .faq button.collapsed .faq__link:before {
    content: "\f107";
    font-family: "FontAwesome";
    font-size: 18px;
    padding-left: 10px; }

  .faq-section .faq button:not(.collapsed) .faq__link:before {
    content: "\f106";
    font-family: "FontAwesome";
    font-size: 18px;
    padding-left: 5px; } }
.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; }

.theater-feature > .box-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column; }
  .theater-feature > .box-wrapper > .blog-post__preview {
    display: flex;
    flex-direction: column;
    flex: 1; }
    .theater-feature > .box-wrapper > .blog-post__preview > .content-box {
      display: flex;
      flex-direction: column;
      flex: 1; }
      .theater-feature > .box-wrapper > .blog-post__preview > .content-box > .p--medium {
        flex: 1; }

.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 {
  margin-bottom: 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;
    font-size: 14px; }
  .show-preview--volunteer h4 {
    margin-bottom: 0px; }

.filter-mobile--volunteer {
  margin-top: 15px; }

.volunteer-cancel-link {
  color: #767676;
  font-size: 12px; }

.cancel-form .button, .cancel-form input[type="submit"] {
  margin-top: 25px; }

.alert-volunteer {
  background: #BA862D;
  border-radius: 0;
  color: #fff;
  display: block;
  font-weight: bold;
  width: 100%; }

.fill-ptitle {
  font-weight: bold; }

@font-face {
  font-family: 'Voga Medium';
  font-style: normal;
  font-weight: normal;
  src: local("Voga Medium"), url("../../fonts/Voga-Medium.woff") format("woff"), url("../../fonts/voga-medium-webfont.woff2") format("woff2"); }
.sa {
  background: #020101; }

.sa-banner-container {
  background: #020101 center right no-repeat;
  background-size: cover;
  height: 1000px;
  position: relative;
  justify-content: center; }

body.page-template-template-season-announcement {
  overflow-x: hidden !important; }

.sa-banner-gradient {
  z-index: 1;
  background: linear-gradient(180deg, transparent 0, black), linear-gradient(360deg, transparent 0, rgba(0, 0, 0, 0.4)), linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.4)), linear-gradient(270deg, transparent 0, rgba(0, 0, 0, 0.4));
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

.sa-small-text {
  font-weight: bold;
  letter-spacing: 5px; }

.sa-xl-text {
  font-family: "Voga Medium";
  font-size: 130px;
  font-weight: normal; }

.sa-gold-border {
  border: #ba862d 1px solid;
  margin: 40px;
  position: relative; }

.sa-flex-center {
  justify-content: center;
  align-items: center; }

.sa-details-desktop {
  padding-left: 100px;
  padding-right: 100px; }

.sa-button-mobile {
  font-size: 10px;
  padding: 4px 10px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #ba862d;
  border-radius: 0;
  background: #ba862d;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  transition: 0.4s; }

.sa-button-desktop {
  transition: 0.4s;
  font-size: 16px;
  border: 1px solid #ba862d;
  border-radius: 0;
  background: #ba862d;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase; }

.sa-button--outline {
  border-color: #767676;
  background: none;
  color: #ba862d; }

.sa-button--outline:hover {
  background: rgba(186, 134, 45, 0.1);
  border-color: #ba862d;
  color: #ba862d; }

.sa-performance-icons {
  display: flex;
  justify-content: flex-start; }
  @media screen and (max-width: 991px) {
    .sa-performance-icons {
      justify-content: space-between; } }
  @media screen and (max-width: 767px) {
    .sa-performance-icons {
      flex-wrap: wrap; } }
  .sa-performance-icons p {
    margin: 0;
    font-size: 18px; }
    @media screen and (max-width: 1199px) {
      .sa-performance-icons p {
        font-size: 13px; } }
    @media screen and (max-width: 575px) {
      .sa-performance-icons p {
        font-size: 16px; } }
  .sa-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) {
    .sa-performance-icons .p--small {
      font-size: 14px;
      text-align: center; } }
  @media screen and (max-width: 1199px) {
    .sa-performance-icons .p--tiny {
      font-size: 12px;
      text-align: center; } }

.fancybox-thumbs {
  display: none; }

.performance-card--small img {
  border: solid 1px #222; }

.saparagraph {
  font-size: 18px !important;
  margin-bottom: 10px; }

.msa-mobile {
  padding: 10px !important; }

.banner-mobile {
  padding: 5px; }
  .banner-mobile .sa-small-header {
    font-size: 18px; }
  .banner-mobile .sa-xl-text {
    font-size: 80px; }

.sa-button-nav-renew, .sa-button-nav-subscribe {
  padding: 6px 16px; }

.special-desktop {
  margin-left: 40px;
  margin-right: 40px; }

.special-mobile {
  margin-left: 5px;
  margin-right: 5px; }

.sa-thumbnail-mobile {
  position: absolute;
  left: 100px;
  top: 50px; }

.sa-thumbnail-desktop {
  position: absolute;
  left: 140px;
  top: 90px; }

@media screen and (max-width: 991px) {
  .performance-slider {
    margin-top: 25px !important; } }

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