.btn-group-rounded .button-group-btn:first-of-type a{border-top-left-radius:50px!important;border-bottom-left-radius:50px!important}.btn-group-rounded .button-group-btn:last-of-type a{border-top-right-radius:50px!important;border-bottom-right-radius:50px!important}@media only screen and (min-width:600px){.btn-group-rounded-m .button-group-btn:first-of-type a{border-top-left-radius:50px!important;border-bottom-left-radius:50px!important}.btn-group-rounded-m .button-group-btn:last-of-type a{border-top-right-radius:50px!important;border-bottom-right-radius:50px!important}}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
 */

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 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(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 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 {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    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: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .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 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .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 {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 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 hingeIn {
  0% {
  transform: translate3d(0, 700px, 0);
    opacity: 0;
  }

  20%, 60% {
  transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 0.50;
  }

  40%, 80% {
  transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
}

.hingeIn {
  animation-name: hingeIn;
}

@keyframes jackInTheBox {
  from {
    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;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

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

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

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

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

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

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}
.infix{z-index:9990;position:fixed;top:0;right:0;bottom:0;left:0;white-space:nowrap;outline:none!important;overflow:hidden}.infix.infix-section{z-index:999}.infix *{-webkit-box-sizing:border-box;box-sizing:border-box}.infix-wrap{z-index:9990;top:0;right:0;bottom:0;left:0;text-align:center;outline:none!important}.infix.infix-body{position:fixed}.infix.no-nav>.infix-wrap>.infix-nav{display:none}.infix.infix-body .infix-wrap{position:fixed}.infix.infix-section{position:absolute}.infix.infix-section .infix-wrap{position:absolute}.infix-wrap:before{content:'';display:inline-block;height:100%;vertical-align:middle}.splb-loader{z-index:99999;color:#fff;position:absolute;top:50%;margin-top:-0.8em;width:100%;text-align:center;font-size:14px;font-family:Arial,Helvetica,sans-serif;opacity:0;-webkit-transition:opacity .6s ease;transition:opacity .6s ease}.infix-loading .splb-loader{opacity:1}.infix-container{z-index:9992;position:relative;text-align:left;vertical-align:middle;display:inline-block;white-space:normal;max-width:100%;max-height:100%;outline:none!important}.infix.stacks-v-top .infix-container{vertical-align:top}.infix.stacks-v-bottom .infix-container{vertical-align:bottom}.infix.infix-section .infix-container{position:static}.infix.infix-section.infix-inline .infix-container{position:static}.infix-content{z-index:9993;width:100%}.infix-content::after{content:'';position:absolute;left:0;top:0;bottom:0;display:block;right:0;z-index:-1}.infix-body .infix-close{position:fixed}.infix-body.infix-inline .infix-container{width:96%;max-width:1000px}.infix-body.cross-overlay .infix-close{position:fixed}.infix-body.cross-inside .infix-close{position:absolute}.infix-section .infix-close{position:absolute}.infix-closed:not(.infix-closing){z-index:-99!important;height:0!important}.infix-close{display:none;cursor:pointer;text-decoration:none;text-align:center;font-style:normal;border:0;-webkit-appearance:none;outline:0;background:0;-webkit-box-shadow:none;box-shadow:none}.infix-close,[data-infix-next],[data-infix-prev]{cursor:pointer}.infix-close.icon-tr{right:0;top:0}.infix-close.icon-tl{left:0;top:0}.infix-close.icon-br{right:0;bottom:0}.infix-close.icon-bl{left:0;bottom:0}.infix-close::-moz-focus-inner{border:0;padding:0}.infix-img{max-width:100%;margin:0 auto;display:block;line-height:0;border:0}.infix-section.size-target.infix-image .infix-img[style],.infix-section.size-native.infix-image .infix-img[style]{max-height:none!important}.infix.infix-section.size-native{overflow:visible}.infix.infix-section.size-native,.infix.infix-section.size-native>.infix-wrap,.infix.infix-section.size-native>.infix-wrap>.infix-container{position:relative;width:100%}.infix.infix-section.size-native.infix-closing{display:none!important}.infix.size-native>.infix-wrap>.infix-container>.infix-content>.splb{max-height:none!important}.infix-iframe .infix-container{width:100%}.infix-body.infix-iframe .infix-container{max-width:1000px}.infix-section.infix-iframe.full-frame .infix-container{max-width:100%}.infix-section.infix-iframe.auto-size-section .infix-iframe-container{max-height:none!important}.size-target:not(.lightbox-open)[style]{max-height:initial!important;min-height:initial!important}.infix-iframe-container{width:100%;height:0;padding-top:56.25%;overflow:auto;pointer-events:auto;-webkit-transform:translateZ(0);transform:translateZ(0);-webkit-overflow-scrolling:touch}.infix-iframe-container iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%}.infix-htmlvideo video{position:absolute;top:0;width:100%}.infix-instagram .infix-content{margin:0 auto;width:100%}.infix-instagram .infix-content .infix-iframe-container{padding-top:113.0719%}.infix-error{text-align:center}.infix-err-txt{color:black;background-color:rgba(255,255,255,0.4);padding:3px 6px} .spl-lightbox,.spl-lightbox::before,.spl-lightbox::after{display:none}.limelight-launcher{cursor:pointer}.limelight-launcher:not(.allowclicks) *{pointer-events:none}
/* Source - A lightweight CSS framework by Shaking the Habitual
* (Source is based on Barebones V3 Copyright 2019 Steve Cochran) - Free to use under the MIT license.
* (Barebones is based on Skeleton by Dave Gamache) - Free to use under the MIT license.
*/

html {
	--text-color-richer: rgba(227, 230, 230, 1.00);
	--text-color-normal: rgba(252, 255, 255, 1.00);
	--text-color-softer: rgba(255, 255, 255, 1.00);
  --accent-color: rgba(167, 37, 23, 1.00);
  --accent-color-hover: rgba(148, 21, 19, 1.00);
	--accent-text-color: rgba(33, 255, 6, 1.00);
	--accent-text-color-hover: rgba(8, 230, 0, 1.00);
	--link-color: rgba(167, 37, 23, 1.00);
	--link-color-hover: rgba(148, 21, 19, 1.00);
  --border-color: rgba(187, 187, 187, 1.00);
	--border-color-softer: rgba(237, 237, 237, 1.00);
	--border-color-richer: rgba(137, 137, 137, 1.00);
	--background-color: rgba(255, 255, 255, 1.00);
	--background-color-alt: rgba(51, 51, 51, 0.10);
	--nav-bg: rgba(255, 255, 255, 0.96);
	--nav-bg-hover: rgba(51, 51, 51, 0.05);
	--nav-link: rgba(5, 95, 122, 1.00);
	--nav-link-hover: rgba(5, 95, 122, 1.00);
  --code-background: rgba(241, 241, 241, 1.00);
	--code-text: rgba(34, 34, 34, 1.00);
	--button-primary-color: rgba(33, 255, 6, 1.00);
	--button-primary-color-hover: rgba(8, 230, 0, 1.00);
	--second-color: rgba(167, 37, 23, 1.00);
	--second-color-hover: rgba(148, 21, 19, 1.00);
	--second-color-alt: rgba(255, 255, 255, 1.00);
	--base-font-size: 62.5%;
	--container-max-width: 1140px;
}

* {
vertical-align: baseline;
border: 0 none;
outline: 0;
padding: 0;
margin: 0;
}













		
		
		



html {
	font-size: 62.5%;
  font-size: var(--base-font-size);
	-webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
	box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit; }

html, body {
  height: 100%
}

body {
  font-size: 1.60rem;
  line-height: 1.60;
  font-weight: normal;
	
		
  
	font-family: 'Gamja Flower', sans-serif;
	
	
	/* Basic fallback for older browsers */
	color: rgba(252, 255, 255, 1.00);
	background-color: rgba(255, 255, 255, 1.00);
	/* Use variables for modern browsers */
  color: var(--text-color-normal);
  background-color: var(--background-color);
	
}

@media (min-width: 600px) {
body {
	 font-size: 1.60rem;
}
p.lead {
	font-size: 1.80rem;
}
}


h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.2rem;
	
	font-weight: bold;
	font-style: normal;
	font-family: 'Gamja Flower', sans-serif;
 }


 

h1, .h1 { font-size: 4.00rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2, .h2 { font-size: 3.60rem; line-height: 1.25; letter-spacing: -.1rem; }
h3, .h3 { font-size: 3.00rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4, .h4 { font-size: 2.40rem; line-height: 1.35; letter-spacing: -.08rem; }
h5, .h5 { font-size: 1.80rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6, .h6 { font-size: 1.60rem; line-height: 1.6;  letter-spacing: 0; }

@media (min-width: 600px) {
  h1, .h1 { font-size: 5.00rem; }
  h2, .h2 { font-size: 4.20rem; }
  h3, .h3 { font-size: 3.60rem; }
  h4, .h4{ font-size: 3.00rem; }
  h5, .h5 { font-size: 2.40rem; }
  h6, .h6 { font-size: 2.00rem; }
}

p {
  margin-top: 0; }

p.lead {
	font-size: 1.80rem;
}

blockquote {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 1rem;
	margin-right: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--accent-color);
	color: var(--text-color-softer);
}

a {
  color: var(--link-color);
text-decoration: none;
transition: all 0.2s ease 0s;}
a:hover:not(.source-button):not(.button) {
  color: var(--link-color-hover);
text-decoration: none;}

.stripped-button a, .source-btn {
			line-height: 38px;
			font-size: 14px;
			height: 38px;
			font-weight: bolder;
			text-transform: uppercase;
			display: inline-block;
			padding: 0 30px;
			text-decoration: none;
			color: var(--text-color-softer);
			text-align: center;
			letter-spacing: .1rem;
			text-decoration: none;
			white-space: nowrap;
			background-color: transparent;
			border-radius: 4px;
			border: 1px solid var(--border-color);
			cursor: pointer;
			box-sizing: border-box;
			transition: all 0.2s ease 0s;
}

.button-nav a, .source-btn-nav a {
	color: var(--button-primary-color) !important;
	background-color: var(--nav-link) !important;
	border-color: var(--nav-link) !important; }

.button-nav a:hover, .button-nav a:focus, .source-btn-nav a:focus, .source-btn-nav a:hover {
	color: var(--button-primary-color);
	background-color: var(--nav-link-hover);
	border-color: var(--nav-link-hover); }

.button-second a, .s-button-second {
	color: var(--second-color-alt) !important;
	background-color: var(--second-color) !important;
	border-color: var(--second-color) !important; }

.button-second a:hover, .button-second a:focus, .s-button-second:hover, .s-button-second:focus {
	color: var(--second-color-alt) !important;
	background-color: var(--second-color-hover) !important;
	border-color: var(--second-color-hover) !important; }

.button-primary-flip a, .s-button-primary-flip {
color: var(--accent-color) !important;
background-color: var(--button-primary-color) !important;
border-color: var(--accent-color) !important }

.button-primary-flip a:hover, .button-primary-flip a:focus, .s-button-primary-flip:hover, .s-button-primary-flip:focus {
color: var(--button-primary-color) !important;
background-color: var(--accent-color) !important;
border-color: var(--accent-color) !important; }

.button-primary a, .s-button-primary {
	color: var(--button-primary-color) !important;
	background-color: var(--accent-color) !important;
	border-color: var(--accent-color) !important; }

.button-primary a:hover, .button-primary a:focus, .s-button-primary:hover, .s-button-primary:focus {
	color: var(--button-primary-color) !important;
	background-color: var(--accent-color-hover) !important;
	border-color: var(--accent-color-hover) !important; }

.button-ghost a:hover, .button-ghost a:focus {
	border-color: var(--border-color-richer) !important; }


input{
	font-size: 14px;
}



button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	font-size: 14px;
	font-weight: bolder;
	text-transform: uppercase;
  display: inline-block;
  padding: 0 30px;
  text-decoration: none;
  color: var(--text-color-softer);
  text-align: center;
  letter-spacing: .1rem;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  box-sizing: border-box; }
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  color: var(--text-color-normal);
  border-color: var(--text-color-softer);
  outline: 0;
text-decoration: none; }

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	font-size: 14px;
  padding: 6px 10px;
  background-color: var(--background-color);
  border: 1px solid var(--border-color-softer);
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="button"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: 1px solid var(--accent-color);
  outline: 0; }
label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600;
 	padding: 2px;}
fieldset {
  padding: 0;
  border-width: 0; }
input[type="checkbox"],
input[type="radio"] {
  display: inline; }
label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }


.quizArea label {
display: inline-block;
}

ul {
  list-style: circle inside; }
ol {
  list-style: decimal inside; }
ol, ul {
  padding-left: 1rem;
  margin-top: 0; }
ul ul, ul ol, ol ol, ol ul {
	font-size: 100%;
	margin: 1rem 0 1rem 2rem;
	color: var(--text-color-softer);
}
li {
  margin-bottom: 0.5rem;
	margin-left: 3rem}

code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 95%;
  white-space: nowrap;
  background: var(--code-background);
	color: var(--code-text);
  border: 1px solid var(--border-color-softer);
  border-radius: 4px; }
pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
  overflow: auto; }



button,
.source-button {
  margin-bottom: 1rem; }
input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

.u-full-width {
  width: 100%;
  box-sizing: border-box; }
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }
.u-pull-right {
  float: right; }
.u-pull-left {
  float: left; }
.u-align-left {
	text-align: left; }
.u-align-right {
	text-align: right; }
.u-align-center {
		text-align: center; }

@media (max-width: 600px) {
	.s-align-left {
		text-align: left; }
	.s-align-right {
		text-align: right; }
	.s-align-center {
			text-align: center; }
}

@media (min-width: 600px) {
	.m-align-left {
		text-align: left; }
	.m-align-right {
		text-align: right; }
	.m-align-center {
			text-align: center; }
}

@media (min-width: 900px) {
	.l-align-left {
		text-align: left; }
	.l-align-right {
		text-align: right; }
	.l-align-center {
			text-align: center; }
}

@media (min-width: 1200px) {
	.xl-align-left {
		text-align: left; }
	.xl-align-right {
		text-align: right; }
	.xl-align-center {
			text-align: center; }
}

hr {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  border-width: 0;
  border-top: 1px solid var(--border-color-softer); }



.u-cf:before,
.container:before,
.row:before,
.s3_row:before,
.u-cf:after,
.container:after,
.row:after,
.s3_row:after {
    content: "";
    display: table;
}

.u-cf:after,
.container:after,
.row:after,
.s3_row:after {
    clear: both;
}

.stripped-container, .s-container-lite, .stripped-content, .stripped-outer, .stripped-wrapper, .s-grid-item, .s-cols-item, .s-coder-wrap  {
	position: relative;
}

.stripped-container, .stripped-content{
	box-sizing: border-box;
}

img{max-width: 100%}

.stripped-img, .stripped-svg, .img-fit-wrap, picture {line-height: 0;}

.stripped-img img, .s-cols-item, .s-grid-item, .stripped-svg svg, .s-lift, .s-drop, .s-zoom, .s-zoom-big {
	transition: transform 0.2s ease-out 0s;
}

.s-container-lite, .s-content-center{margin-left: auto; margin-right: auto;}


.s-grid-item, .s-cols-item, .s-flex {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
}

.s-flow-down{
	flex-wrap: nowrap !important;
}

.s-self-end{
	justify-self: end;
}

.s-grid-item > .stacks_out, .s-cols-item > .stacks_out, .s-flex > .stacks_out {
	width: 100%;
}

.s-cols-container{
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	vertical-align: top;
}

.s-grid-item, .s-cols-item {
  margin-bottom: 20px;
}

@supports (display: grid) {
  .s-grid-item, .s-cols-item {
    margin-bottom: 0px;
  }
}

.s-grid-link, .s-img-fit-link, .s-coder-link {
	display: contents;
}

.s-button-group{
  display: flex;
	flex-wrap: wrap;
}

.w-100 {
  width: 100% !important
}

.s-no-lift{
	transform: translateY(0) !important;
}

.s-lift:hover{
	transform: translateY(-5px) !important;
}

.s-drop:hover{
	transform: translateY(5px) !important;
}

.s-zoom:hover{
	transform: scale(1.05) !important;
	z-index: 10 !important;
}

.s-zoom-big:hover{
	transform: scale(1.1) !important;
	z-index: 10 !important;
}

.s-bright{
	filter: brightness(70%);
  transition: all 250ms ease-in-out !important;
}

.s-bright:hover{
	filter: brightness(100%);
}

.s-dark {
filter: brightness(100%);
transition: all 250ms ease-in-out !important}

.s-dark:hover {
filter: brightness(60%)}

.s-shad{
	box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
}

.s-shad-hov:hover{
	box-shadow: 0px 0px 18px rgba(0,0,0,0.2)
}

@media (min-width:600px) {
	.s-shad-m{
		box-shadow: 0px 3px 15px rgba(0,0,0,0.2);
	}

	.s-shad-hov-m:hover{
		box-shadow: 0px 0px 18px rgba(0,0,0,0.2)
	}
}

.s-screen{
	mix-blend-mode: screen;
}

.s-multiply{
	mix-blend-mode: multiply;
}

.s-no-pointer{
	pointer-events: none;
}

.grid-container {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	display: grid;
}

.stripped-container > .stripped-link a, .stripped-outer > .stripped-link a, .s-grid-item > .s-grid-link a, .s-cols-item > .s-grid-link a, .s-img-fit-link a, .s-coder-wrap > .s-coder-link a {
	position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  z-index: 998;
	text-decoration: none;
}



.stacks_out { overflow: visible !important }
 .stacks_in { overflow: visible }

 .s-inliner >.stacks_out {
    margin: 0;
    width: auto;
    display: inline-block
  }

.mb-0{margin-bottom: 0 !important}

/* Colour classes with temporary fallback for older browsers */
.stripped-base-width{
	max-width: 1140px;
	max-width: var(--container-max-width);
}

.alt-bg {
	background-color: rgba(51, 51, 51, 0.10) !important;
	background-color: var(--background-color-alt) !important;}

.page-bg {
	background-color: rgba(255, 255, 255, 1.00) !important;
	background-color: var(--background-color) !important;}

.page-fg {
	color: rgba(255, 255, 255, 1.00) !important;
	color: var(--background-color) !important;}

.text-bg {
	background-color: rgba(252, 255, 255, 1.00) !important;
	background-color: var(--text-color-normal) !important;}

.s-accent, .accent-bg {
	background-color: rgba(167, 37, 23, 1.00) !important;
	background-color: var(--accent-color) !important;
}

.s-accent-text, .accent-alt-bg {
	background-color: rgba(33, 255, 6, 1.00) !important;
	background-color: var(--button-primary-color) !important;
}

.s-accent-hover, .accent-hover-bg {
	background-color: rgba(148, 21, 19, 1.00) !important;
	background-color: var(--accent-color-hover) !important;
}

.s-accent-c, .accent-fg {
	color: rgba(167, 37, 23, 1.00) !important;
	color: var(--accent-color) !important;
}

.s-accent-text-c, .accent-alt-fg {
	color: rgba(33, 255, 6, 1.00) !important;
	color: var(--button-primary-color) !important;
}

.s-accent-hover-c, .accent-hover-fg {
	color: rgba(148, 21, 19, 1.00) !important;
	color: var(--accent-color-hover) !important;
}

.second-hover-fg {
	color: rgba(148, 21, 19, 1.00) !important;
	color: var(--second-color-hover) !important;
}

.second-hover-bg {
	background-color: rgba(148, 21, 19, 1.00) !important;
	background-color: var(--second-color-hover) !important;
}

.s-second-c, .second-fg {
	color: rgba(167, 37, 23, 1.00) !important;
	color: var(--second-color) !important;
}

.s-second-text-c, .second-alt-fg {
	color: rgba(255, 255, 255, 1.00) !important;
	color: var(--second-color-alt) !important;
}

.s-second, .second-bg {
	background-color: rgba(167, 37, 23, 1.00) !important;
	background-color: var(--second-color) !important;
}

.s-second-text, .second-alt-bg {
	background-color: rgba(255, 255, 255, 1.00) !important;
	background-color: var(--second-color-alt) !important;
}





.source-browser-warning {
		
    text-align: center;
    width: 80%;
    top: 0;
		left: 10%;
		position: fixed;
    margin: 20px auto;
    padding: 10px;
    background: #EC4D3B;
    color: white;
    border-radius: 4px;
    z-index: 9999
}

.source-browser-warning a {
	color: white;
	text-decoration: underline;
}

@supports (display: grid) {
  .source-browser-warning {
    display: none;
  }
}

@important "partials/maps";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }
  .animated.infinite {
    animation-iteration-count: infinite; }
  .animated.hinge {
    animation-duration: 2s; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 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 {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1); } }

.rubberBand {
  animation-name: rubberBand; }

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

.swing {
  transform-origin: top center;
  animation-name: swing; }

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

.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 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.39063deg) skewY(0.39063deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 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: scale3d(1, 1, 1); } }

.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 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 {
  from, 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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    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: translate3d(0, 0, 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 {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.fadeIn {
  animation-name: fadeIn; }

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

.fadeInDown {
  animation-name: fadeInDown; }

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

.fadeInDownBig {
  animation-name: fadeInDownBig; }

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

.fadeInLeft {
  animation-name: fadeInLeft; }

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

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

.fadeOutLeft {
  animation-name: fadeOutLeft; }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

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

.fadeOutUp {
  animation-name: fadeOutUp; }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out; }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out; }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -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 {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

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

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

@keyframes flipOutX {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

@keyframes flipOutY {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

@keyframes lightSpeedIn {
  from {
    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 {
  from {
    opacity: 1; }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

.rotateInUpRight {
  animation-name: rotateInUpRight; }

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

.rotateOut {
  animation-name: rotateOut; }

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 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; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInDown {
  animation-name: slideInDown; }

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

.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInRight {
  animation-name: slideInRight; }

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

.slideOutDown {
  animation-name: slideOutDown; }

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

.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

.slideOutRight {
  animation-name: slideOutRight; }

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

.slideOutUp {
  animation-name: slideOutUp; }

#noticeContainer_stacks_in_269_page0 {
  /*  */
  display: block;
  position: relative; }
  #noticeContainer_stacks_in_269_page0 .clearfix:before {
    content: " ";
    display: table; }
  #noticeContainer_stacks_in_269_page0 .clearfix:after {
    content: " ";
    display: table;
    clear: both; }

#notice_stacks_in_269_page0 {
  /*  */
  /*  */
  opacity: 0;
  left: 0px;
  right: 0px;
  max-height: 100%;
  /*  */
  position: fixed;
  /*  */
  overflow-y: auto;
  visibility: hidden;
  /*  */
  z-index: 999999;
  /*  */
  max-width: 100%;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  top: 50%;
  transform: translateY(-50%);
  /*  */
  /*  */
  /*  */
  margin-left: auto;
  margin-right: auto;
  /*  */
  /*  */
  /*  */
  /*  */
  background: rgba(0, 0, 0, 0.90);
  /*  */
  /*  */
  /*  */
  /*  */
  border-width: 3px 3px 3px 3px;
  border-style: solid;
  border-color: rgba(36, 89, 54, 1.00);
  /*  */
  /*  */
  /*  */
  font-family: "Gamja Flower";
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  color: rgba(255, 255, 255, 1.00);
  border-radius: 0px 0px 0px 0px; }
  #notice_stacks_in_269_page0.show {
    opacity: 1;
    visibility: visible; }
  #notice_stacks_in_269_page0.hide {
    opacity: 0;
    visibility: hidden; }
  #notice_stacks_in_269_page0.cookie-hide {
    display: none; }

#notice_stacks_in_269_page0 .notice-inner-stacks {
  clear: both;
  margin: 0 auto;
  max-width: 1000px;
  padding: 10px 10px 35px 10px; }

#notice_stacks_in_269_page0 .notice-inner {
  clear: both;
  margin: 0 auto;
  max-width: 1000px;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 10px 10px 35px 10px;
  /*  */
  /*  */
  text-align: center;
  /*  */
  /*  */
  /*  */
  display: -ms-flexbox;
  display: flex;
  /*  */
  /*  */ }
  #notice_stacks_in_269_page0 .notice-inner-text {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    max-width: 100%;
    font-size: 50px;
    line-height: 35px; }
  #notice_stacks_in_269_page0 .notice-inner-icon {
    /*  */
    /*  */
    /*  */
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    /*  */
    /*  */
    -ms-flex: 0 1 auto;
        flex: 0 1 auto;
    color: rgba(255, 255, 255, 1.00);
    padding: 5px 20px 5px 10px; }
    #notice_stacks_in_269_page0 .notice-inner-icon i {
      font-size: 50px;
      vertical-align: middle; }

#notice_stacks_in_269_page0 .notice-close-btn {
  float: right;
  cursor: pointer;
  color: rgba(255, 255, 255, 1.00);
  padding: 10px 10px 0px 10px; }
  #notice_stacks_in_269_page0 .notice-close-btn i {
    cursor: pointer;
    vertical-align: middle; }

#notice_stacks_in_269_page0 .notice-action {
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  /*  */
  color: inherit;
  background: none;
  /*  */ }
  #notice_stacks_in_269_page0 .notice-action i {
    vertical-align: middle; }
  #notice_stacks_in_269_page0 .notice-action-close {
    border-style: solid;
    border-width: 1px 0 0 0;
    border-color: rgba(29, 72, 41, 1.00); }
    #notice_stacks_in_269_page0 .notice-action-close:hover {
      /*  */ }
  #notice_stacks_in_269_page0 .notice-action-custom {
    border-style: solid;
    border-width: 1px 0 0 1px;
    border-color: rgba(29, 72, 41, 1.00); }
    #notice_stacks_in_269_page0 .notice-action-custom:hover {
      /*  */ }
    #notice_stacks_in_269_page0 .notice-action-custom a {
      color: inherit;
      width: 100%;
      height: 100%;
      /*  */
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      text-decoration: none;
      -ms-flex-pack: center;
          justify-content: center;
      /*  */ }
  #notice_stacks_in_269_page0 .notice-action-btn {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: center;
    -ms-flex-align: center;
        align-items: center;
    box-sizing: border-box;
    -ms-flex-pack: center;
        justify-content: center; }
    #notice_stacks_in_269_page0 .notice-action-btn:hover {
      cursor: pointer; }

@media (max-width: 480px) {
  #notice_stacks_in_269_page0 .notice-action {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 90px; }
    #notice_stacks_in_269_page0 .notice-action-custom {
      border-width: 1px 0 0 0; }
    #notice_stacks_in_269_page0 .notice-action div {
      height: 50%;
      width: 100%; } }

/*  */
@media all and (-ms-high-contrast: none) {
  #notice_stacks_in_269_page0 {
    width: 100%; }
    #notice_stacks_in_269_page0 *::-ms-backdrop, #notice_stacks_in_269_page0 #notice_stacks_in_269_page0 {
      width: 100%; } }

/*  */
.stacks_in_292_page0 img{max-width:25%;border-radius:0px;}.stacks_in_292_page0 img:hover{ }
h3.stacks_in_288_page0{        }
h5.stacks_in_290_page0{        }

/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_286_page0 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_286_page0.animated {
	animation-duration: 5000ms;
	animation-delay: 2000ms;
}





/* @group Basics */

#videoPlayerContainerstacks_in_283_page0 {
	position: relative;
	z-index: 1;
}

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

#videoPlayerVideostacks_in_283_page0 {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 2;
}

/* @end */

/* @group Big Play Button */

#bigPlayButtonstacks_in_283_page0 {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 3;
	font-size: 100px;
	border: none;
	background: none;
	outline: none;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

#bigPlayButtonstacks_in_283_page0 [class^="fa fa-"] {
	cursor: pointer;
	color: rgba(161, 15, 31, 1.00);
}

/*  */

/* @end */

/* @group Video Controls */

#videoPlayerControlsstacks_in_283_page0 {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	overflow: hidden;
	margin: 0px;
	border-radius: 0px;
}

#videoPlayerControlsstacks_in_283_page0 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

/*  */

/*  */
#videoPlayerControlsstacks_in_283_page0 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	-o-transition: all 1000ms;
	-ms-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

#videoPlayerContainerstacks_in_283_page0:hover #videoPlayerControlsstacks_in_283_page0 {
	opacity: 1.00;
}
/*  */

/*  */

/*  */

/*  */

/*  */

/*  */

#videoPlayerControlsFillstacks_in_283_page0 {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.00);
	opacity: 0.75;
	z-index: 1;
}

#videoPlayerControlsWrapperstacks_in_283_page0 {
	display: flex;
	position: relative;
	z-index: 2;
}

#videoPlayerContainerstacks_in_283_page0:hover #videoPlayerControlsstacks_in_283_page0 {
	opacity: 1.00;
}

#videoPlayerControlsstacks_in_283_page0 button {
	background: none;
	border: 0;
	outline: none;
	color: #ffffff;
	display: inline-block;
	text-align: center;
	width: 60px;
	padding: 0;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	cursor: pointer;
}

button:hover {
	cursor: pointer;
}

#videoPlayerControlsstacks_in_283_page0 #videoPlayerPlayPausestacks_in_283_page0 {
	display: none;
}

#videoPlayerControlsstacks_in_283_page0 #videoPlayerFullScreenstacks_in_283_page0 {
	display: none;
}

/* @end */

/* @group Video Timing */

#videoPlayerVideoTimingstacks_in_283_page0 {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
	width: auto;
	padding: 0 15px;
	font-size: 12px;
}

#videoPlayerCurrentTimestacks_in_283_page0 {
	display: none;
}

#videoPlayerDurationstacks_in_283_page0 {
	display: none;
}

/*  */
#videoPlayerTimeDividerstacks_in_283_page0 {
	display: none;
}
/*  */

/*  */
#videoPlayerTimeDividerstacks_in_283_page0 {
	display: none;
}
/*  */

/* @end */

/* @group Seek Bar */

#progressBarstacks_in_283_page0 {
	flex: 1;
	padding-right: 10px;
	height: 60px;
	line-height: 60px;
	vertical-align: middle;
	display: none;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range] {
	-webkit-appearance: none;
	background: none;
	display: inline-block;
	width: 100%;
	height: 60px;
	line-height: 60px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]:focus {
	outline: none;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#videoPlayerSeekBarstacks_in_283_page0[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}
/* @end */

/* @group Volume */

#volumestacks_in_283_page0 {
	display: none;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	transition: all ease-in-out 300ms;
	text-align: center;
	position: relative;
	overflow: hidden;
	font-size: 18px;
	vertical-align: middle;
}

#volumestacks_in_283_page0 [class^="fa fa-"] {
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_283_page0:hover {
	max-width: 150px;
	width: 150px;
	padding: 0px 15px;
}

#volumeButtonstacks_in_283_page0 {
	display: inline-block;
	max-width: 60px;
	width: 60px;
	line-height: 60px;
	height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumestacks_in_283_page0:hover #volumeButtonstacks_in_283_page0 {
	display: none;
}

#volumeMinstacks_in_283_page0 {
	position: absolute;
	left: 10px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volumeMaxstacks_in_283_page0 {
	position: absolute;
	right: 5px;
	top: 0;
	height: 60px;
	line-height: 60px;
	color: rgba(255, 255, 255, 1.00);
}

#volume-barstacks_in_283_page0[type=range],
#volumeMinstacks_in_283_page0,
#volumeMaxstacks_in_283_page0 {
	display: none;
}

#volumeMinstacks_in_283_page0,
#volumeMaxstacks_in_283_page0 {
	cursor: pointer;
}

#volumestacks_in_283_page0:hover #volume-barstacks_in_283_page0,
#volumestacks_in_283_page0:hover #volumeMinstacks_in_283_page0,
#volumestacks_in_283_page0:hover #volumeMaxstacks_in_283_page0 {
	display: inline;
}

#volume-barstacks_in_283_page0[type=range] {
	-webkit-appearance: none;
	background: none;
	width: 70%;
	text-align: center;
	line-height: 60px;
	height: 60px;
}

#volume-barstacks_in_283_page0[type=range]::-webkit-slider-runnable-track {
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_283_page0[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
	margin-top: -5px;
}

#volume-barstacks_in_283_page0[type=range]:focus {
	outline: none;
}

#volume-barstacks_in_283_page0[type=range]:focus::-webkit-slider-runnable-track {
	background: #B3B3B3;
}

#volume-barstacks_in_283_page0[type=range]::-moz-range-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_283_page0[type=range]::-moz-range-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_283_page0[type=range]::-ms-track {
	width: 100%;
	height: 5px;
	background: #B3B3B3;
	border: none;
	border-radius: 3px;
}

#volume-barstacks_in_283_page0[type=range]::-ms-fill-lower {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_283_page0[type=range]::-ms-fill-upper {
	background: #B3B3B3;
	border-radius: 10px;
}

#volume-barstacks_in_283_page0[type=range]::-ms-thumb {
	border: none;
	height: 16px;
	width: 16px;
	border-radius: 50%;
	background: #FFFFFF;
}

#volume-barstacks_in_283_page0[type=range]:focus::-ms-fill-lower {
	background: #B3B3B3;
}

#volume-barstacks_in_283_page0[type=range]:focus::-ms-fill-upper {
	background: #B3B3B3;
}

/* @end */

/* @group Responsive Behavior */

@media screen and (max-width: 569px) {
	#videoPlayerControlsstacks_in_283_page0 #videoPlayerFullScreenstacks_in_283_page0,
	#videoPlayerControlsstacks_in_283_page0 #volumestacks_in_283_page0 {
		display: none;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_284_page0 {
	font-size: 150%;
}

#stacks_in_285_page0 {
	font-size: 150%;
}
 #preloader{position:fixed;top:0;left:0;right:0;bottom:0;background-color: rgba(0, 0, 0, 1.00);z-index:9999 !important}
#preloader_balls{position:absolute;left:50%;top:50%;background-repeat:no-repeat;background-position:center;margin:0 auto}#preloader_balls:before{width:20px;height:20px;border-radius:20px;background:blue;content:'';position:absolute;background: rgba(223, 228, 228, 1.00);-webkit-animation:preloader_3_before 1.5s infinite ease-in-out;-moz-animation:preloader_3_before 1.5s infinite ease-in-out;-ms-animation:preloader_3_before 1.5s infinite ease-in-out;animation:preloader_3_before 1.5s infinite ease-in-out}#preloader_balls:after{width:20px;height:20px;border-radius:20px;background:blue;content:'';position:absolute;background: rgba(198, 67, 75, 1.00);left:22px;-webkit-animation:preloader_3_after 1.5s infinite ease-in-out;-moz-animation:preloader_3_after 1.5s infinite ease-in-out;-ms-animation:preloader_3_after 1.5s infinite ease-in-out;animation:preloader_3_after 1.5s infinite ease-in-out}@-webkit-keyframes preloader_3_before{0%{-webkit-transform:translateX(0px) rotate(0deg)}50%{-webkit-transform:translateX(50px) scale(1.2) rotate(260deg);background:rgba(198, 67, 75, 1.00);border-radius:0px}100%{-webkit-transform:translateX(0px) rotate(0deg)}}@-webkit-keyframes preloader_3_after{0%{-webkit-transform:translateX(0px)}50%{-webkit-transform:translateX(-50px) scale(1.2) rotate(-260deg);background: rgba(223, 228, 228, 1.00);border-radius:0px}100%{-webkit-transform:translateX(0px)}}@-moz-keyframes preloader_3_before{0%{-moz-transform:translateX(0px) rotate(0deg)}50%{-moz-transform:translateX(50px) scale(1.2) rotate(260deg);background:rgba(198, 67, 75, 1.00);border-radius:0px}100%{-moz-transform:translateX(0px) rotate(0deg)}}@-moz-keyframes preloader_3_after{0%{-moz-transform:translateX(0px)}50%{-moz-transform:translateX(-50px) scale(1.2) rotate(-260deg);background: rgba(223, 228, 228, 1.00);border-radius:0px}100%{-moz-transform:translateX(0px)}}@-ms-keyframes preloader_3_before{0%{-ms-transform:translateX(0px) rotate(0deg)}50%{-ms-transform:translateX(50px) scale(1.2) rotate(260deg);background:rgba(198, 67, 75, 1.00);border-radius:0px}100%{-ms-transform:translateX(0px) rotate(0deg)}}@-ms-keyframes preloader_3_after{0%{-ms-transform:translateX(0px)}50%{-ms-transform:translateX(-50px) scale(1.2) rotate(-260deg);background: rgba(223, 228, 228, 1.00);border-radius:0px}100%{-ms-transform:translateX(0px)}}@keyframes preloader_3_before{0%{transform:translateX(0px) rotate(0deg)}50%{transform:translateX(50px) scale(1.2) rotate(260deg);background:rgba(198, 67, 75, 1.00);border-radius:0px}100%{transform:translateX(0px) rotate(0deg)}}@keyframes preloader_3_after{0%{transform:translateX(0px)}50%{transform:translateX(-50px) scale(1.2) rotate(-260deg);background: rgba(223, 228, 228, 1.00);border-radius:0px}100%{transform:translateX(0px)}}
.s-container-stacks_in_2_page0{ width:100%;  margin-left: auto; margin-right: auto;}#s-wrapper-stacks_in_2_page0{margin:0;  }#s-content-stacks_in_2_page0{justify-content:center;min-height:100vh; padding:0;  }@media (min-width:600px){.s-container-stacks_in_2_page0{ }#s-wrapper-stacks_in_2_page0{}#s-content-stacks_in_2_page0{ }}@media (min-width:900px){.s-container-stacks_in_2_page0{ }#s-wrapper-stacks_in_2_page0{}#s-content-stacks_in_2_page0{ }}@media (min-width:1200px){.s-container-stacks_in_2_page0{ }#s-wrapper-stacks_in_2_page0{}#s-content-stacks_in_2_page0{ }} .s-bg-stacks_in_2_page0{border-radius:0px 0px 0px 0px;  background-image:linear-gradient(to right,rgba(34, 34, 34, 0.00),rgba(34, 34, 34, 0.00)),url(../files/s-background-img-s-local_2.png);background-size:cover;background-repeat:no-repeat;background-position:center center;  }@media (min-width:600px){.s-bg-stacks_in_2_page0{ background-image:linear-gradient(to right,rgba(34, 34, 34, 0.00),rgba(34, 34, 34, 0.00)),url(../files/s-background-img-m-local_2.png);background-position:center center;background-size:cover;background-repeat:no-repeat;  }}.s-bg-stacks_in_2_page0{z-index:0}#s-outer-stacks_in_2_page0{border-radius:0px 0px 0px 0px}
 .s-container-stacks_in_8_page0{ width:100%;}#s-wrapper-stacks_in_8_page0{margin:0; }#s-content-stacks_in_8_page0{justify-content:flex-start; padding:0; }.s-bg-stacks_in_8_page0{z-index:0}#s-outer-stacks_in_8_page0{border-radius:0px 0px 0px 0px}
/* Start Defender stack CSS code */.stacks_in_31_page0edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_31_page0info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code */.stacks_in_10_page0 img{max-width:100%;border-radius:0px;}.stacks_in_10_page0 img:hover{ }

#stacks_in_10_page0 {
	padding: 20px 20px 0px 20px;
}
.s-container-stacks_in_17_page0{max-width:500px;   margin-left:0; margin-right: auto;}#s-wrapper-stacks_in_17_page0{margin:0;  }#s-content-stacks_in_17_page0{justify-content:center;  padding:10px 10px 0px 30px; }@media (min-width:600px){.s-container-stacks_in_17_page0{ }#s-wrapper-stacks_in_17_page0{}#s-content-stacks_in_17_page0{ }}@media (min-width:900px){.s-container-stacks_in_17_page0{ }#s-wrapper-stacks_in_17_page0{}#s-content-stacks_in_17_page0{ }}@media (min-width:1200px){.s-container-stacks_in_17_page0{ }#s-wrapper-stacks_in_17_page0{}#s-content-stacks_in_17_page0{ }}.s-bg-stacks_in_17_page0{z-index:0}#s-outer-stacks_in_17_page0{border-radius:0px 0px 0px 0px}
.s-cols-stacks_in_177_page0{justify-content:space-around;align-items:stretch;}.s-cols-stacks_in_177_page0>.s-cols-item{border-radius:0px;margin-bottom:0px;width:calc((100% - calc(1 * 0px)) / 2);  padding:0px 0px 0px 0px;   }.s-cols-stacks_in_177_page0>.s-cols-item:hover{ }#stacks_out_177_page0{width:100%}

#stacks_out_177_page0 {
	width: 75%;
}
.item_stacks_in_179_page0{justify-content:flex-start;overflow:hidden;  }
   
.stacks_in_175_page0 .source-button{max-width:100%; font-size:25px;line-height:40px;border-radius:4px;padding:0 10px;border-width:1px;height:calc(40px + 2px);     }#stacks_in_175_page0 .s-button-group{justify-content:flex-start}#stacks_in_175_page0 .s-button-group .button-group-btn{padding-right:10px}

.item_stacks_in_181_page0{justify-content:flex-start;overflow:hidden;  }
   
.stacks_in_14_page0 .source-button{max-width:100%; font-size:25px;line-height:40px;border-radius:4px;padding:0 10px;border-width:1px;height:calc(40px + 2px);     }@media only screen and (max-width:600px){.stacks_in_14_page0 .source-button,#stacks_in_14_page0 .s-button-group{display:block}#stacks_in_14_page0 .s-button-group .button-group-btn{padding-right:0!important}}#stacks_in_14_page0 .s-button-group{justify-content:flex-start}#stacks_in_14_page0 .s-button-group .button-group-btn{padding-right:10px}

 .s-container-stacks_in_6_page0{ width:100%;}#s-wrapper-stacks_in_6_page0{margin:0; }#s-content-stacks_in_6_page0{justify-content:flex-end;min-height:70vh; padding:0; }.s-bg-stacks_in_6_page0{z-index:0}#s-outer-stacks_in_6_page0{border-radius:0px 0px 0px 0px}
/* Start Defender stack CSS code */.stacks_in_48_page0edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_48_page0info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_86_page0 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_86_page0.animated {
	animation-duration: 7000ms;
	animation-delay: 7000ms;
}






/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_53_page0 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_53_page0.animated {
	animation-duration: 4000ms;
	animation-delay: 5000ms;
}





.stacks_in_50_page0 img{max-height:200px;border-radius:0px;}.stacks_in_50_page0 img:hover{ }

#stacks_out_50_page0 {
	width: 80%;
}
.stacks_in_155_page0 img{max-height:200px;border-radius:0px;}.stacks_in_155_page0 img:hover{ }
/* Start Defender stack CSS code */.stacks_in_33_page0edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_33_page0info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_138_page0 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_138_page0.animated {
	animation-duration: 6000ms;
	animation-delay: 10000ms;
}






/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_124_page0 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_124_page0.animated {
	animation-duration: 8000ms;
	animation-delay: 2000ms;
}






/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_126_page0 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_126_page0.animated {
	animation-duration: 8000ms;
	animation-delay: 8000ms;
}





.stacks_in_11_page0 img{max-width:400px;border-radius:0px;}.stacks_in_11_page0 img:hover{ }

#stacks_out_11_page0 {
	width: 80%;
}
.s-cols-stacks_in_254_page0{justify-content:space-around;align-items:stretch;}.s-cols-stacks_in_254_page0>.s-cols-item{border-radius:0px;margin-bottom:20px;width:calc((100% - calc(1 * 20px)) / 2);  padding:0px 0px 0px 0px;   }.s-cols-stacks_in_254_page0>.s-cols-item:hover{ }#stacks_out_254_page0{width:100%}
.item_stacks_in_256_page0{justify-content:flex-start;overflow:hidden;  }
.item_stacks_in_258_page0{justify-content:flex-start;overflow:hidden;  }
 .lb-master_stacks_in_156_page0.bg-vault.bg-color.style-pro-stacks_in_156_page0{background-color:rgba(0, 0, 0, 0.78)}.lb-master_stacks_in_156_page0.close-vis-never .infix-close{display:none!important} .ll-overlay#ovl_stacks_in_156_page0.bg-color{background-color:rgba(0, 0, 0, 0.78)}@media screen and (max-width:640px){.ll-overlay#ovl_stacks_in_156_page0.small-bg-color{background-color:rgba(0, 0, 0, 0.78)}.ll-overlay#ovl_stacks_in_156_page0.small-bg-color::before{background-color:transparent!important;background-image:none!important}}body>.ll-overlay#ovl_stacks_in_156_page0{position:fixed}.ll-open-stacks_in_156_page0>.ll-overlay#ovl_stacks_in_156_page0{z-index:9989}.ll-open-stacks_in_156_page0.sectionsPro1>.ll-overlay#ovl_stacks_in_156_page0{z-index:998} @media screen and (min-width:640px){.lb-master_stacks_in_156_page0.close-vis-small-only .infix-close{display:none!important}}@media screen and (max-width:640px){.lb-master_stacks_in_156_page0.close-vis-large-only .infix-close{display:none!important}}#stacks_in_156_page0 .infix-close.lb-close-master{display:none!important}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0.infix-section.large-hide-overlay{background-color:transparent!important}} [data-ll-target="limelight1"].sectionsPro1.size-target.lightbox-open.ll-open-stacks_in_156_page0>.shear-wrapper{position:absolute}    .lb-master_stacks_in_156_page0.maxw-frame:not(.infix-image):not(.custom-size) .infix-container{width:100%}@media screen and (max-width:640px){.lb-master_stacks_in_156_page0.maxw-frame:not(.infix-image):not(.custom-size) .infix-container{width:100%}}.lb-master_stacks_in_156_page0.maxw-frame.infix-image:not(.custom-size) .infix-container>.infix-content{margin:0 auto;width:100%}@media screen and (max-width:640px){.lb-master_stacks_in_156_page0.maxw-frame.infix-image:not(.custom-size) .infix-container>.infix-content{width:100%}}.lb-master_stacks_in_156_page0.maxw-frame:not(.custom-size) .infix-container{max-width:1000px}@media screen and (max-width:640px){.lb-master_stacks_in_156_page0.maxw-frame:not(.custom-size) .infix-container{max-width:1000px}}.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image) .infix-iframe-container{padding-top:85vh}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image) .infix-iframe-container{padding-top:85vh}}.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container,.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-content,.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .splb{height:85vh!important;max-height:85vh!important}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container,.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .infix-content,.lb-master_stacks_in_156_page0.prop-height.infix-body:not(.vid-letterbox):not(.infix-image).infix-inline .splb{height:85vh!important;max-height:85vh!important}}.lb-master_stacks_in_156_page0.prop-height.infix-section:not(.vid-letterbox):not(.infix-image) .infix-container{top:calc((100% - 85%) / 2)!important;height:85%!important}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0.prop-height.infix-section:not(.vid-letterbox):not(.infix-image) .infix-container{top:calc((100% - 85%) / 2)!important;height:85%!important}}.lb-master_stacks_in_156_page0.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container{height:85%!important;max-height:85%!important}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .infix-container{height:85%!important;max-height:85%!important}
}.lb-master_stacks_in_156_page0.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .infix-content,.lb-master_stacks_in_156_page0.prop-height.infix-section:not(.vid-letterbox):not(.infix-image).infix-inline .splb{height:100%!important;max-height:100%!important} .lb-master_stacks_in_156_page0.infix-iframe.infix-section .infix-container,.lb-master_stacks_in_156_page0.infix-iframe.infix-section .infix-content,.lb-master_stacks_in_156_page0.infix-iframe.infix-section .infix-iframe-container{position:static;top:0;left:0;height:100%;width:100%}.lb-master_stacks_in_156_page0.infix-iframe.infix-section.size-float .infix-iframe-container{padding-top:0}    .lb-master_stacks_in_156_page0 .infix-content::after{-webkit-box-shadow:0 0 36px 0px rgba(0, 0, 0, 0.30);box-shadow:0 0 36px 0px rgba(0, 0, 0, 0.30)} .lb-master_stacks_in_156_page0 .infix-close{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-line-pack:center;align-content:center;z-index:9999;padding:8px;border-radius:0% 0% 0% 0%;background:rgba(0, 0, 0, 0.00)}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap{position:relative;width:40px;height:40px;opacity:.94}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap:hover,html.bwd-touch .lb-master_stacks_in_156_page0 .infix-close>.close-wrap{opacity:1}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap.close-text-only{width:auto;height:auto;color:rgba(255, 255, 255, 0.96);font-size:12px;line-height:1}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap.close-text-only .text-border{padding:8px;border:1px solid rgba(255, 255, 255, 0.00);border-radius:8px;background-color:rgba(255, 255, 255, 0.00);text-align:center}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg{width:40px;height:40px;-webkit-transform-origin:50% 50%;transform-origin:50% 50%}
.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg circle.bg{fill:rgba(255, 255, 255, 0.00)}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg .ring{stroke:rgba(255, 255, 255, 0.00);stroke-width:4px}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg .action-icon path{stroke:rgba(255, 255, 255, 0.96);stroke-width:4px;fill:none}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg .ring,.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg .action-icon path{-webkit-transition:stroke 200ms ease-out;transition:stroke 200ms ease-out}.lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg circle.bg{-webkit-transition:fill 220ms ease-out;transition:fill 220ms ease-out}.lb-master_stacks_in_156_page0 .infix-close:hover,html.bwd-touch .lb-master_stacks_in_156_page0 .infix-close{background:rgba(0, 0, 0, 0.00)}.lb-master_stacks_in_156_page0 .infix-close:hover>.close-wrap>svg circle.bg,html.bwd-touch .lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg circle.bg{fill:rgba(255, 255, 255, 0.00)}.lb-master_stacks_in_156_page0 .infix-close:hover>.close-wrap>svg .ring,html.bwd-touch .lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg .ring{stroke:rgba(255, 255, 255, 1.00)}.lb-master_stacks_in_156_page0 .infix-close:hover>.close-wrap>svg .action-icon path,html.bwd-touch .lb-master_stacks_in_156_page0 .infix-close>.close-wrap>svg .action-icon path{stroke:rgba(255, 255, 255, 1.00);fill:none}.lb-master_stacks_in_156_page0 .infix-close:hover>.close-wrap.close-text-only,html.bwd-touch .lb-master_stacks_in_156_page0 .infix-close>.close-wrap.close-text-only{color:rgba(255, 255, 255, 1.00)}.lb-master_stacks_in_156_page0 .infix-close i.fa,.lb-master_stacks_in_156_page0 .infix-close svg,.lb-master_stacks_in_156_page0 .infix-close .simple-icon,.lb-master_stacks_in_156_page0 .infix-close .close-wrap,.lb-master_stacks_in_156_page0 .infix-close .text-border{pointer-events:none}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0 .infix-close .close-wrap,.lb-master_stacks_in_156_page0 .infix-close .close-wrap>svg{width:40px;height:40px}.lb-master_stacks_in_156_page0 .infix-close .close-wrap.close-text-only{font-size:16px}}.lb-master_stacks_in_156_page0 .infix-close .action-icon>g{display:none}.lb-master_stacks_in_156_page0 .infix-close.close-cross .action-icon>g#cross{display:block}.lb-master_stacks_in_156_page0 .infix-close.close-small-cross .action-icon>g#smallcross{display:block}.lb-master_stacks_in_156_page0 .infix-close.close-left-arrow .action-icon>g#arrow{display:block}.lb-master_stacks_in_156_page0 .infix-close.close-hamburger .action-icon>g#burger{display:block}@media screen and (min-width:640px){.lb-master_stacks_in_156_page0.close-bg-small-only .infix-close{background:0}} .lb-master_stacks_in_156_page0 .splb-loader .loader-message{display:none}  .lb-master_stacks_in_156_page0 .splb-loader svg{display:none}
.lb-master_stacks_in_156_page0 .splb-loader>.loader-message{margin-top:0}
 .infix-content.bg-vault.bg-color.style-pro-stacks_in_160_page0{background-color:rgba(64, 65, 65, 1.00)}#stacks_in_160_page0.splb{padding:12px}#splb_stacks_in_160_page0 .infix-iframe-container{background-color:}  #stacks_in_160_page0{display:none}.infix-opened #stacks_in_160_page0,.infix-closed #stacks_in_160_page0{display:block}.info{cursor:pointer} #stacks_in_160_page0.splb{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_160_page0.splb.ll-overflow{overflow:visible!important}
.stacks_in_172_page0 img{max-width:30%;border-radius:0px;}.stacks_in_172_page0 img:hover{ }

#stacks_in_172_page0 {
	padding: 20px 0px 0px 0px;
}
h3.stacks_in_207_page0{        }
#p-stacks_in_209_page0 p{ font-size:3.60rem;   }#p-stacks_in_209_page0 p.lead{font-size:1.80rem;}#p-stacks_in_209_page0 a{color:var(--link-color);}#p-stacks_in_209_page0 a:hover{color:var(--link-color-hover); }
 .infix-content.bg-vault.bg-color.style-pro-stacks_in_240_page0{background-color:rgba(0, 0, 0, 1.00)}#stacks_in_240_page0.splb{padding:12px}#splb_stacks_in_240_page0 .infix-iframe-container{background-color:}  #stacks_in_240_page0{display:none}.infix-opened #stacks_in_240_page0,.infix-closed #stacks_in_240_page0{display:block}.booknow{cursor:pointer} #stacks_in_240_page0.splb{overflow-y:auto;-webkit-overflow-scrolling:touch}#stacks_in_240_page0.splb.ll-overflow{overflow:visible!important}
.stacks_in_242_page0 img{max-width:30%;border-radius:0px;}.stacks_in_242_page0 img:hover{ }

#stacks_in_242_page0 {
	padding: 20px 0px 20px 0px;
}

.stacks_in_304_page0 img{max-width:75px;border-radius:0px;}.stacks_in_304_page0 img:hover{ }
#p-stacks_in_302_page0 p{    }#p-stacks_in_302_page0 p.lead{}#p-stacks_in_302_page0 a{color:var(--link-color);}#p-stacks_in_302_page0 a:hover{color:var(--link-color-hover); }
 .style-pro-stacks_in_156_page0::before{position:absolute;top:0;bottom:0;left:0;right:0;content:"";z-index:-1}    .style-pro-stacks_in_156_page0:not(.bg-vault):not(.bg-featured)::before{background-color:rgba(126, 167, 227, 1.00)}   

.ll-overlay#ovl_stacks_in_156_page0 {
  z-index: -99;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: opacity 600ms ease, z-index 0ms 600ms, visibility 0ms 600ms ease; }

.ll-open-stacks_in_156_page0 > .ll-overlay#ovl_stacks_in_156_page0 {
  transition: opacity 300ms ease;
  opacity: 1;
  visibility: visible; }

.lb-master_stacks_in_156_page0, .lb-master_stacks_in_156_page0.infix-closed {
  opacity: 0;
  visibility: hidden; }

.lb-master_stacks_in_156_page0.infix-opened {
  opacity: 1;
  visibility: visible; }

.lb-master_stacks_in_156_page0 [data-infix-close]:not(.infix-wrap), .lb-master_stacks_in_156_page0.infix-closed [data-infix-close]:not(.infix-wrap) {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  transition: opacity 40ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0ms 100ms cubic-bezier(0.25, 0.46, 0.45, 0.94) transform 40ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_156_page0.infix-opened [data-infix-close]:not(.infix-wrap) {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: opacity 200ms 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0ms, transform 200ms 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_156_page0.close-on-hover.infix-opened [data-infix-close]:not(.infix-wrap) {
  opacity: 0;
  transition: all 200ms ease-out; }

.lb-master_stacks_in_156_page0.close-on-hover:hover.infix-opened [data-infix-close]:not(.infix-wrap) {
  opacity: 1; }

.lb-master_stacks_in_156_page0.infix-closed .infix-container::after, .lb-master_stacks_in_156_page0.infix-loading .infix-container::after {
  opacity: 0;
  transition: opacity 80ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 680ms; }

.lb-master_stacks_in_156_page0.infix-opened .infix-container::after {
  opacity: 1;
  transition: opacity 80ms 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s; }

.lb-master_stacks_in_156_page0, .lb-master_stacks_in_156_page0.infix-closed {
  transition: opacity 120ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_156_page0.infix-opened {
  transition: opacity 120ms cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s 0s; }

.lb-master_stacks_in_156_page0.infix-loading .infix-content,
.lb-master_stacks_in_156_page0.infix-closed .infix-content {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.lb-master_stacks_in_156_page0.infix-opened .infix-content {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.lb-master_stacks_in_156_page0.infix.hide-nav .infix-nav {
  display: none; }

.lb-master_stacks_in_156_page0.infix.no-loop.ll-first [data-infix-prev] {
  display: none; }

.lb-master_stacks_in_156_page0.infix.no-loop.ll-last [data-infix-next] {
  display: none; }

.lb-master_stacks_in_156_page0 [data-infix-next], .lb-master_stacks_in_156_page0 [data-infix-prev] {
  position: absolute;
  z-index: 9999;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: calc(50% + 25px);
  margin-top: -25px;
  border: 2px solid rgba(255, 255, 255, 0.00);
  opacity: 1;
  background: rgba(255, 255, 255, 0.00);
  transition: opacity 200ms ease-out, background 200ms ease-out, transform 0.8s cubic-bezier(0, 1.01, 0.22, 1), border 0.3s ease-out; }

.lb-master_stacks_in_156_page0 html:not(.bwd-touch) [data-infix-next], .lb-master_stacks_in_156_page0 html:not(.bwd-touch) [data-infix-prev] {
  opacity: 0; }

.lb-master_stacks_in_156_page0 html:not(.bwd-touch) [data-infix-next] {
  transform: translate(-15px, -50%) scale(0.6); }

.lb-master_stacks_in_156_page0 html:not(.bwd-touch) [data-infix-prev] {
  transform: translate(15px, -50%) scale(0.6); }

.lb-master_stacks_in_156_page0 html:not(.bwd-touch).infix:hover [data-infix-next],
.lb-master_stacks_in_156_page0 html:not(.bwd-touch).infix:hover [data-infix-prev] {
  transform: translate(0, -50%) rotate(0deg) scale(1);
  opacity: 1; }

.lb-master_stacks_in_156_page0 [data-infix-next] {
  right: 12px; }

.lb-master_stacks_in_156_page0 [data-infix-prev] {
  left: 12px; }

.lb-master_stacks_in_156_page0 [data-infix-next]::before,
.lb-master_stacks_in_156_page0 [data-infix-next]::after,
.lb-master_stacks_in_156_page0 [data-infix-prev]::before,
.lb-master_stacks_in_156_page0 [data-infix-prev]::after {
  background: rgba(255, 255, 255, 0.96);
  top: 50%;
  left: 0;
  width: 2px;
  height: 17px;
  content: '';
  position: absolute;
  margin: -14px 23px; }

.lb-master_stacks_in_156_page0 html.bwd-touch [data-infix-next], .lb-master_stacks_in_156_page0 [data-infix-next]:hover,
.lb-master_stacks_in_156_page0 html.bwd-touch [data-infix-prev], .lb-master_stacks_in_156_page0 [data-infix-prev]:hover {
  border: 2px solid rgba(255, 255, 255, 1.00);
  background: rgba(255, 255, 255, 0.00); }
  .lb-master_stacks_in_156_page0 html.bwd-touch [data-infix-next]::before, .lb-master_stacks_in_156_page0 html.bwd-touch [data-infix-next]::after, .lb-master_stacks_in_156_page0 [data-infix-next]:hover::before,
  .lb-master_stacks_in_156_page0 [data-infix-next]:hover::after,
  .lb-master_stacks_in_156_page0 html.bwd-touch [data-infix-prev]::before, .lb-master_stacks_in_156_page0 html.bwd-touch [data-infix-prev]::after, .lb-master_stacks_in_156_page0 [data-infix-prev]:hover::before, .lb-master_stacks_in_156_page0 [data-infix-prev]:hover::after {
    background: rgba(255, 255, 255, 1.00); }

.lb-master_stacks_in_156_page0 [data-infix-next]::after,
.lb-master_stacks_in_156_page0 [data-infix-prev]::after {
  margin-top: -3px; }

.lb-master_stacks_in_156_page0 [data-infix-prev]::after, .lb-master_stacks_in_156_page0 [data-infix-prev]::before {
  left: -3px; }

.lb-master_stacks_in_156_page0 [data-infix-next]::after {
  transform: rotate(45deg); }

.lb-master_stacks_in_156_page0 [data-infix-next]::before {
  transform: rotate(-45deg); }

.lb-master_stacks_in_156_page0 [data-infix-prev]::after {
  transform: rotate(315deg); }

.lb-master_stacks_in_156_page0 [data-infix-prev]::before {
  transform: rotate(-315deg); }
