/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

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

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

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

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

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

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

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

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

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
[data-src],
[data-md-src],
.md-image img,
.object-images img {
  overflow: hidden;
  transition: background-image 0.25s, filter 0.25s;
  filter: blur(10px);
}
[data-src].image-ready,
[data-md-src].image-ready,
.md-image img.image-ready,
.object-images img.image-ready {
  filter: none;
}
@charset "UTF-8";
:root {
  --global-width: 79rem;
}

/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal.large, .reveal.small, .reveal.tiny, .reveal {
    right: auto;
    left: auto;
    margin: 0 auto;
  }
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

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

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

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

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

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

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

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[data-whatintent=mouse] *, [data-whatintent=mouse] *:focus,
[data-whatintent=touch] *,
[data-whatintent=touch] *:focus,
[data-whatinput=mouse] *,
[data-whatinput=mouse] *:focus,
[data-whatinput=touch] *,
[data-whatinput=touch] *:focus {
  outline: none;
}

[draggable=false] {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em&floating-element=99em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #525252;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0.25rem;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0.25rem;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  appearance: none;
  border: 0;
  border-radius: 0.25rem;
  background: transparent;
  line-height: 1;
  cursor: auto;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
}

.is-visible {
  display: block !important;
}

.is-hidden {
  display: none !important;
}

.grid-container {
  padding-right: 2rem;
  padding-left: 2rem;
  max-width: 79rem;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.fluid {
  padding-right: 2rem;
  padding-left: 2rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.grid-container.full {
  padding-right: 0;
  padding-left: 0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grid-x {
  display: flex;
  flex-flow: row wrap;
}

.cell {
  flex: 0 0 auto;
  min-height: 0;
  min-width: 0;
  width: 100%;
}
.cell.auto {
  flex: 1 1 0;
}
.cell.shrink {
  flex: 0 0 auto;
}

.grid-x > .auto {
  width: auto;
}
.grid-x > .shrink {
  width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto;
  }
}
.grid-x > .small-12, .grid-x > .small-11, .grid-x > .small-10, .grid-x > .small-9, .grid-x > .small-8, .grid-x > .small-7, .grid-x > .small-6, .grid-x > .small-5, .grid-x > .small-4, .grid-x > .small-3, .grid-x > .small-2, .grid-x > .small-1 {
  flex: 0 0 auto;
}

.grid-x > .small-1 {
  width: 8.3333333333%;
}

.grid-x > .small-2 {
  width: 16.6666666667%;
}

.grid-x > .small-3 {
  width: 25%;
}

.grid-x > .small-4 {
  width: 33.3333333333%;
}

.grid-x > .small-5 {
  width: 41.6666666667%;
}

.grid-x > .small-6 {
  width: 50%;
}

.grid-x > .small-7 {
  width: 58.3333333333%;
}

.grid-x > .small-8 {
  width: 66.6666666667%;
}

.grid-x > .small-9 {
  width: 75%;
}

.grid-x > .small-10 {
  width: 83.3333333333%;
}

.grid-x > .small-11 {
  width: 91.6666666667%;
}

.grid-x > .small-12 {
  width: 100%;
}

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .medium-12, .grid-x > .medium-11, .grid-x > .medium-10, .grid-x > .medium-9, .grid-x > .medium-8, .grid-x > .medium-7, .grid-x > .medium-6, .grid-x > .medium-5, .grid-x > .medium-4, .grid-x > .medium-3, .grid-x > .medium-2, .grid-x > .medium-1, .grid-x > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .medium-shrink {
    width: auto;
  }
  .grid-x > .medium-1 {
    width: 8.3333333333%;
  }
  .grid-x > .medium-2 {
    width: 16.6666666667%;
  }
  .grid-x > .medium-3 {
    width: 25%;
  }
  .grid-x > .medium-4 {
    width: 33.3333333333%;
  }
  .grid-x > .medium-5 {
    width: 41.6666666667%;
  }
  .grid-x > .medium-6 {
    width: 50%;
  }
  .grid-x > .medium-7 {
    width: 58.3333333333%;
  }
  .grid-x > .medium-8 {
    width: 66.6666666667%;
  }
  .grid-x > .medium-9 {
    width: 75%;
  }
  .grid-x > .medium-10 {
    width: 83.3333333333%;
  }
  .grid-x > .medium-11 {
    width: 91.6666666667%;
  }
  .grid-x > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0;
    width: auto;
  }
  .grid-x > .large-12, .grid-x > .large-11, .grid-x > .large-10, .grid-x > .large-9, .grid-x > .large-8, .grid-x > .large-7, .grid-x > .large-6, .grid-x > .large-5, .grid-x > .large-4, .grid-x > .large-3, .grid-x > .large-2, .grid-x > .large-1, .grid-x > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-x > .large-shrink {
    width: auto;
  }
  .grid-x > .large-1 {
    width: 8.3333333333%;
  }
  .grid-x > .large-2 {
    width: 16.6666666667%;
  }
  .grid-x > .large-3 {
    width: 25%;
  }
  .grid-x > .large-4 {
    width: 33.3333333333%;
  }
  .grid-x > .large-5 {
    width: 41.6666666667%;
  }
  .grid-x > .large-6 {
    width: 50%;
  }
  .grid-x > .large-7 {
    width: 58.3333333333%;
  }
  .grid-x > .large-8 {
    width: 66.6666666667%;
  }
  .grid-x > .large-9 {
    width: 75%;
  }
  .grid-x > .large-10 {
    width: 83.3333333333%;
  }
  .grid-x > .large-11 {
    width: 91.6666666667%;
  }
  .grid-x > .large-12 {
    width: 100%;
  }
}
.grid-margin-x:not(.grid-x) > .cell {
  width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
  height: auto;
}

.grid-margin-x {
  margin-left: -2rem;
  margin-right: -2rem;
}
.grid-margin-x > .cell {
  width: calc(100% - 4rem);
  margin-left: 2rem;
  margin-right: 2rem;
}
.grid-margin-x > .auto {
  width: auto;
}
.grid-margin-x > .shrink {
  width: auto;
}
.grid-margin-x > .small-1 {
  width: calc(8.3333333333% - 4rem);
}
.grid-margin-x > .small-2 {
  width: calc(16.6666666667% - 4rem);
}
.grid-margin-x > .small-3 {
  width: calc(25% - 4rem);
}
.grid-margin-x > .small-4 {
  width: calc(33.3333333333% - 4rem);
}
.grid-margin-x > .small-5 {
  width: calc(41.6666666667% - 4rem);
}
.grid-margin-x > .small-6 {
  width: calc(50% - 4rem);
}
.grid-margin-x > .small-7 {
  width: calc(58.3333333333% - 4rem);
}
.grid-margin-x > .small-8 {
  width: calc(66.6666666667% - 4rem);
}
.grid-margin-x > .small-9 {
  width: calc(75% - 4rem);
}
.grid-margin-x > .small-10 {
  width: calc(83.3333333333% - 4rem);
}
.grid-margin-x > .small-11 {
  width: calc(91.6666666667% - 4rem);
}
.grid-margin-x > .small-12 {
  width: calc(100% - 4rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-x > .medium-auto {
    width: auto;
  }
  .grid-margin-x > .medium-shrink {
    width: auto;
  }
  .grid-margin-x > .medium-1 {
    width: calc(8.3333333333% - 4rem);
  }
  .grid-margin-x > .medium-2 {
    width: calc(16.6666666667% - 4rem);
  }
  .grid-margin-x > .medium-3 {
    width: calc(25% - 4rem);
  }
  .grid-margin-x > .medium-4 {
    width: calc(33.3333333333% - 4rem);
  }
  .grid-margin-x > .medium-5 {
    width: calc(41.6666666667% - 4rem);
  }
  .grid-margin-x > .medium-6 {
    width: calc(50% - 4rem);
  }
  .grid-margin-x > .medium-7 {
    width: calc(58.3333333333% - 4rem);
  }
  .grid-margin-x > .medium-8 {
    width: calc(66.6666666667% - 4rem);
  }
  .grid-margin-x > .medium-9 {
    width: calc(75% - 4rem);
  }
  .grid-margin-x > .medium-10 {
    width: calc(83.3333333333% - 4rem);
  }
  .grid-margin-x > .medium-11 {
    width: calc(91.6666666667% - 4rem);
  }
  .grid-margin-x > .medium-12 {
    width: calc(100% - 4rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x > .large-auto {
    width: auto;
  }
  .grid-margin-x > .large-shrink {
    width: auto;
  }
  .grid-margin-x > .large-1 {
    width: calc(8.3333333333% - 4rem);
  }
  .grid-margin-x > .large-2 {
    width: calc(16.6666666667% - 4rem);
  }
  .grid-margin-x > .large-3 {
    width: calc(25% - 4rem);
  }
  .grid-margin-x > .large-4 {
    width: calc(33.3333333333% - 4rem);
  }
  .grid-margin-x > .large-5 {
    width: calc(41.6666666667% - 4rem);
  }
  .grid-margin-x > .large-6 {
    width: calc(50% - 4rem);
  }
  .grid-margin-x > .large-7 {
    width: calc(58.3333333333% - 4rem);
  }
  .grid-margin-x > .large-8 {
    width: calc(66.6666666667% - 4rem);
  }
  .grid-margin-x > .large-9 {
    width: calc(75% - 4rem);
  }
  .grid-margin-x > .large-10 {
    width: calc(83.3333333333% - 4rem);
  }
  .grid-margin-x > .large-11 {
    width: calc(91.6666666667% - 4rem);
  }
  .grid-margin-x > .large-12 {
    width: calc(100% - 4rem);
  }
}

.grid-padding-x .grid-padding-x {
  margin-right: -2rem;
  margin-left: -2rem;
}
.grid-container:not(.full) > .grid-padding-x {
  margin-right: -2rem;
  margin-left: -2rem;
}
.grid-padding-x > .cell {
  padding-right: 2rem;
  padding-left: 2rem;
}

.small-up-1 > .cell {
  width: 100%;
}

.small-up-2 > .cell {
  width: 50%;
}

.small-up-3 > .cell {
  width: 33.3333333333%;
}

.small-up-4 > .cell {
  width: 25%;
}

.small-up-5 > .cell {
  width: 20%;
}

.small-up-6 > .cell {
  width: 16.6666666667%;
}

.small-up-7 > .cell {
  width: 14.2857142857%;
}

.small-up-8 > .cell {
  width: 12.5%;
}

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%;
  }
  .medium-up-2 > .cell {
    width: 50%;
  }
  .medium-up-3 > .cell {
    width: 33.3333333333%;
  }
  .medium-up-4 > .cell {
    width: 25%;
  }
  .medium-up-5 > .cell {
    width: 20%;
  }
  .medium-up-6 > .cell {
    width: 16.6666666667%;
  }
  .medium-up-7 > .cell {
    width: 14.2857142857%;
  }
  .medium-up-8 > .cell {
    width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%;
  }
  .large-up-2 > .cell {
    width: 50%;
  }
  .large-up-3 > .cell {
    width: 33.3333333333%;
  }
  .large-up-4 > .cell {
    width: 25%;
  }
  .large-up-5 > .cell {
    width: 20%;
  }
  .large-up-6 > .cell {
    width: 16.6666666667%;
  }
  .large-up-7 > .cell {
    width: 14.2857142857%;
  }
  .large-up-8 > .cell {
    width: 12.5%;
  }
}
.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 4rem);
}

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 4rem);
}

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 4rem);
}

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 4rem);
}

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 4rem);
}

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 4rem);
}

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 4rem);
}

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 4rem);
}

@media print, screen and (min-width: 40em) {
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 4rem);
  }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 4rem);
  }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 4rem);
  }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 4rem);
  }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 4rem);
  }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 4rem);
  }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 4rem);
  }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 4rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 4rem);
  }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 4rem);
  }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 4rem);
  }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 4rem);
  }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 4rem);
  }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 4rem);
  }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 4rem);
  }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 4rem);
  }
}
.small-margin-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .cell {
  margin-right: 0;
  margin-left: 0;
}
.small-margin-collapse > .small-1 {
  width: 8.3333333333%;
}
.small-margin-collapse > .small-2 {
  width: 16.6666666667%;
}
.small-margin-collapse > .small-3 {
  width: 25%;
}
.small-margin-collapse > .small-4 {
  width: 33.3333333333%;
}
.small-margin-collapse > .small-5 {
  width: 41.6666666667%;
}
.small-margin-collapse > .small-6 {
  width: 50%;
}
.small-margin-collapse > .small-7 {
  width: 58.3333333333%;
}
.small-margin-collapse > .small-8 {
  width: 66.6666666667%;
}
.small-margin-collapse > .small-9 {
  width: 75%;
}
.small-margin-collapse > .small-10 {
  width: 83.3333333333%;
}
.small-margin-collapse > .small-11 {
  width: 91.6666666667%;
}
.small-margin-collapse > .small-12 {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .small-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .medium-3 {
    width: 25%;
  }
  .small-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .medium-6 {
    width: 50%;
  }
  .small-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .medium-9 {
    width: 75%;
  }
  .small-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .small-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .small-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .small-margin-collapse > .large-3 {
    width: 25%;
  }
  .small-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .small-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .small-margin-collapse > .large-6 {
    width: 50%;
  }
  .small-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .small-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .small-margin-collapse > .large-9 {
    width: 75%;
  }
  .small-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .small-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .small-margin-collapse > .large-12 {
    width: 100%;
  }
}

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0;
}
.small-padding-collapse > .cell {
  padding-right: 0;
  padding-left: 0;
}

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .small-3 {
    width: 25%;
  }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .small-6 {
    width: 50%;
  }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .small-9 {
    width: 75%;
  }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .medium-3 {
    width: 25%;
  }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .medium-6 {
    width: 50%;
  }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .medium-9 {
    width: 75%;
  }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .medium-margin-collapse > .large-3 {
    width: 25%;
  }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .medium-margin-collapse > .large-6 {
    width: 50%;
  }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .medium-margin-collapse > .large-9 {
    width: 75%;
  }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .medium-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .small-3 {
    width: 25%;
  }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .small-6 {
    width: 50%;
  }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .small-9 {
    width: 75%;
  }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .small-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .medium-3 {
    width: 25%;
  }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .medium-6 {
    width: 50%;
  }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .medium-9 {
    width: 75%;
  }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .medium-12 {
    width: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%;
  }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%;
  }
  .large-margin-collapse > .large-3 {
    width: 25%;
  }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%;
  }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%;
  }
  .large-margin-collapse > .large-6 {
    width: 50%;
  }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%;
  }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%;
  }
  .large-margin-collapse > .large-9 {
    width: 75%;
  }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%;
  }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%;
  }
  .large-margin-collapse > .large-12 {
    width: 100%;
  }
}

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .large-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
  }
}

.small-offset-0 {
  margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 4rem / 2);
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 4rem / 2);
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 4rem / 2);
}

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

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 4rem / 2);
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 4rem / 2);
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 4rem / 2);
}

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

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 4rem / 2);
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 4rem / 2);
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 4rem / 2);
}

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

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 4rem / 2);
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 4rem / 2);
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 4rem / 2);
}

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 4rem / 2);
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 4rem / 2);
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 4rem / 2);
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 4rem / 2);
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 4rem / 2);
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 4rem / 2);
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 4rem / 2);
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 4rem / 2);
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 4rem / 2);
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 4rem / 2);
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 4rem / 2);
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 4rem / 2);
  }
}
@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%;
  }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 4rem / 2);
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 4rem / 2);
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 4rem / 2);
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 4rem / 2);
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 4rem / 2);
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 4rem / 2);
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 4rem / 2);
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 4rem / 2);
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 4rem / 2);
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 4rem / 2);
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 4rem / 2);
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 4rem / 2);
  }
}
.grid-y {
  display: flex;
  flex-flow: column nowrap;
}
.grid-y > .cell {
  height: auto;
  max-height: none;
}
.grid-y > .auto {
  height: auto;
}
.grid-y > .shrink {
  height: auto;
}
.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
  flex-basis: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
    flex-basis: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
    flex-basis: auto;
  }
}
.grid-y > .small-12, .grid-y > .small-11, .grid-y > .small-10, .grid-y > .small-9, .grid-y > .small-8, .grid-y > .small-7, .grid-y > .small-6, .grid-y > .small-5, .grid-y > .small-4, .grid-y > .small-3, .grid-y > .small-2, .grid-y > .small-1 {
  flex: 0 0 auto;
}
.grid-y > .small-1 {
  height: 8.3333333333%;
}
.grid-y > .small-2 {
  height: 16.6666666667%;
}
.grid-y > .small-3 {
  height: 25%;
}
.grid-y > .small-4 {
  height: 33.3333333333%;
}
.grid-y > .small-5 {
  height: 41.6666666667%;
}
.grid-y > .small-6 {
  height: 50%;
}
.grid-y > .small-7 {
  height: 58.3333333333%;
}
.grid-y > .small-8 {
  height: 66.6666666667%;
}
.grid-y > .small-9 {
  height: 75%;
}
.grid-y > .small-10 {
  height: 83.3333333333%;
}
.grid-y > .small-11 {
  height: 91.6666666667%;
}
.grid-y > .small-12 {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .grid-y > .medium-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .medium-12, .grid-y > .medium-11, .grid-y > .medium-10, .grid-y > .medium-9, .grid-y > .medium-8, .grid-y > .medium-7, .grid-y > .medium-6, .grid-y > .medium-5, .grid-y > .medium-4, .grid-y > .medium-3, .grid-y > .medium-2, .grid-y > .medium-1, .grid-y > .medium-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .medium-shrink {
    height: auto;
  }
  .grid-y > .medium-1 {
    height: 8.3333333333%;
  }
  .grid-y > .medium-2 {
    height: 16.6666666667%;
  }
  .grid-y > .medium-3 {
    height: 25%;
  }
  .grid-y > .medium-4 {
    height: 33.3333333333%;
  }
  .grid-y > .medium-5 {
    height: 41.6666666667%;
  }
  .grid-y > .medium-6 {
    height: 50%;
  }
  .grid-y > .medium-7 {
    height: 58.3333333333%;
  }
  .grid-y > .medium-8 {
    height: 66.6666666667%;
  }
  .grid-y > .medium-9 {
    height: 75%;
  }
  .grid-y > .medium-10 {
    height: 83.3333333333%;
  }
  .grid-y > .medium-11 {
    height: 91.6666666667%;
  }
  .grid-y > .medium-12 {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y > .large-auto {
    flex: 1 1 0;
    height: auto;
  }
  .grid-y > .large-12, .grid-y > .large-11, .grid-y > .large-10, .grid-y > .large-9, .grid-y > .large-8, .grid-y > .large-7, .grid-y > .large-6, .grid-y > .large-5, .grid-y > .large-4, .grid-y > .large-3, .grid-y > .large-2, .grid-y > .large-1, .grid-y > .large-shrink {
    flex: 0 0 auto;
  }
  .grid-y > .large-shrink {
    height: auto;
  }
  .grid-y > .large-1 {
    height: 8.3333333333%;
  }
  .grid-y > .large-2 {
    height: 16.6666666667%;
  }
  .grid-y > .large-3 {
    height: 25%;
  }
  .grid-y > .large-4 {
    height: 33.3333333333%;
  }
  .grid-y > .large-5 {
    height: 41.6666666667%;
  }
  .grid-y > .large-6 {
    height: 50%;
  }
  .grid-y > .large-7 {
    height: 58.3333333333%;
  }
  .grid-y > .large-8 {
    height: 66.6666666667%;
  }
  .grid-y > .large-9 {
    height: 75%;
  }
  .grid-y > .large-10 {
    height: 83.3333333333%;
  }
  .grid-y > .large-11 {
    height: 91.6666666667%;
  }
  .grid-y > .large-12 {
    height: 100%;
  }
}

.grid-padding-y .grid-padding-y {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.grid-padding-y > .cell {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.grid-margin-y {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.grid-margin-y > .cell {
  height: calc(100% - 4rem);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 4rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 4rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 4rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 4rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 4rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 4rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 4rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 4rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 4rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 4rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 4rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 4rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 4rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 4rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 4rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 4rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 4rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 4rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 4rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 4rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 4rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 4rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 4rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 4rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 4rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 4rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 4rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 4rem);
  }
}

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw;
}

.cell .grid-frame {
  width: 100%;
}

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

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%;
}
.cell-block-container > .grid-x {
  max-height: 100%;
  flex-wrap: nowrap;
}

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .medium-grid-frame {
    width: 100%;
  }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .medium-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw;
  }
  .cell .large-grid-frame {
    width: 100%;
  }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
  }
  .large-cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap;
  }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
  }
}
.grid-y.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh;
  width: auto;
}
@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh;
    width: auto;
  }
}

.cell .grid-y.grid-frame {
  height: 100%;
}
@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%;
  }
}
@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%;
  }
}

.grid-margin-y {
  margin-top: -2rem;
  margin-bottom: -2rem;
}
.grid-margin-y > .cell {
  height: calc(100% - 4rem);
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.grid-margin-y > .auto {
  height: auto;
}
.grid-margin-y > .shrink {
  height: auto;
}
.grid-margin-y > .small-1 {
  height: calc(8.3333333333% - 4rem);
}
.grid-margin-y > .small-2 {
  height: calc(16.6666666667% - 4rem);
}
.grid-margin-y > .small-3 {
  height: calc(25% - 4rem);
}
.grid-margin-y > .small-4 {
  height: calc(33.3333333333% - 4rem);
}
.grid-margin-y > .small-5 {
  height: calc(41.6666666667% - 4rem);
}
.grid-margin-y > .small-6 {
  height: calc(50% - 4rem);
}
.grid-margin-y > .small-7 {
  height: calc(58.3333333333% - 4rem);
}
.grid-margin-y > .small-8 {
  height: calc(66.6666666667% - 4rem);
}
.grid-margin-y > .small-9 {
  height: calc(75% - 4rem);
}
.grid-margin-y > .small-10 {
  height: calc(83.3333333333% - 4rem);
}
.grid-margin-y > .small-11 {
  height: calc(91.6666666667% - 4rem);
}
.grid-margin-y > .small-12 {
  height: calc(100% - 4rem);
}
@media print, screen and (min-width: 40em) {
  .grid-margin-y > .medium-auto {
    height: auto;
  }
  .grid-margin-y > .medium-shrink {
    height: auto;
  }
  .grid-margin-y > .medium-1 {
    height: calc(8.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-2 {
    height: calc(16.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-3 {
    height: calc(25% - 4rem);
  }
  .grid-margin-y > .medium-4 {
    height: calc(33.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-5 {
    height: calc(41.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-6 {
    height: calc(50% - 4rem);
  }
  .grid-margin-y > .medium-7 {
    height: calc(58.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-8 {
    height: calc(66.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-9 {
    height: calc(75% - 4rem);
  }
  .grid-margin-y > .medium-10 {
    height: calc(83.3333333333% - 4rem);
  }
  .grid-margin-y > .medium-11 {
    height: calc(91.6666666667% - 4rem);
  }
  .grid-margin-y > .medium-12 {
    height: calc(100% - 4rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y > .large-auto {
    height: auto;
  }
  .grid-margin-y > .large-shrink {
    height: auto;
  }
  .grid-margin-y > .large-1 {
    height: calc(8.3333333333% - 4rem);
  }
  .grid-margin-y > .large-2 {
    height: calc(16.6666666667% - 4rem);
  }
  .grid-margin-y > .large-3 {
    height: calc(25% - 4rem);
  }
  .grid-margin-y > .large-4 {
    height: calc(33.3333333333% - 4rem);
  }
  .grid-margin-y > .large-5 {
    height: calc(41.6666666667% - 4rem);
  }
  .grid-margin-y > .large-6 {
    height: calc(50% - 4rem);
  }
  .grid-margin-y > .large-7 {
    height: calc(58.3333333333% - 4rem);
  }
  .grid-margin-y > .large-8 {
    height: calc(66.6666666667% - 4rem);
  }
  .grid-margin-y > .large-9 {
    height: calc(75% - 4rem);
  }
  .grid-margin-y > .large-10 {
    height: calc(83.3333333333% - 4rem);
  }
  .grid-margin-y > .large-11 {
    height: calc(91.6666666667% - 4rem);
  }
  .grid-margin-y > .large-12 {
    height: calc(100% - 4rem);
  }
}

.grid-frame.grid-margin-y {
  height: calc(100vh + 4rem);
}
@media print, screen and (min-width: 40em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 4rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-frame.grid-margin-y {
    height: calc(100vh + 4rem);
  }
}

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 4rem);
  }
}
@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 4rem);
  }
}
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: 600;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  line-height: 0;
  color: #cccccc;
}

h1, .h1, .h1, .h1 {
  font-size: 1.75rem;
  line-height: 1.1428571429;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

h2, .h2, .h2, .h2 {
  font-size: 1.625rem;
  line-height: 1.1538461538;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

h3, .h3, .h3, .h3 {
  font-size: 1.375rem;
  line-height: 1.2727272727;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

h4, .h4, .h4, .h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

h5, .h5, .h5, .h5 {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

h6, .h6, .h6, .h6 {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  h1, .h1, .h1, .h1 {
    font-size: 2rem;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
  h2, .h2, .h2, .h2 {
    font-size: 1.75rem;
    line-height: 1.1428571429;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
  h3, .h3, .h3, .h3 {
    font-size: 1.5rem;
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
  h4, .h4, .h4, .h4 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
  h5, .h5, .h5, .h5 {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
  h6, .h6, .h6, .h6 {
    font-size: 0.75rem;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0.625rem;
  }
}
a {
  line-height: inherit;
  color: #009bdf;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #0056b8;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 79rem;
  height: 0;
  margin: 1.5rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px dashed #cccccc;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: 600;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 0.3125rem solid #e2e2e2;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #009bdf;
}

abbr, abbr[title] {
  border-bottom: 1px dotted #000000;
  cursor: help;
  text-decoration: none;
}

figure {
  margin: 0;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #b6b5bc;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #000000;
  border-radius: 0.25rem;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #333333;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
  margin-left: 0;
  list-style: none;
}

.cite-block, cite {
  display: block;
  color: #333333;
  font-size: 0.8125rem;
}
.cite-block:before, cite:before {
  content: "— ";
}

.code-inline, code {
  border: 1px solid #cccccc;
  background-color: #b6b5bc;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
  display: inline;
  max-width: 100%;
  word-wrap: break-word;
  padding: 0.125rem 0.3125rem 0.0625rem;
}

.code-block {
  border: 1px solid #cccccc;
  background-color: #b6b5bc;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #000000;
  display: block;
  overflow: auto;
  white-space: pre;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: black !important;
    print-color-adjust: economy;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #333333;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.578125rem;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  background-color: #ffffff;
  box-shadow: none;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.875;
  color: #525252;
  appearance: none;
}
[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
  outline: none;
  border: 1px solid #009bdf;
  background-color: #ffffff;
  box-shadow: none;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #b6b5bc;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  appearance: none;
  border-radius: 0.25rem;
}

input[type=search] {
  box-sizing: border-box;
}

::placeholder {
  color: #525252;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1.5rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.75rem;
  margin-right: 1.5rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.75rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  color: #525252;
}
label.middle {
  margin: 0 0 1.5rem;
  line-height: 1.5;
  padding: 0.8125rem 0;
}

.help-text {
  margin-top: -0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  color: #525252;
}

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1.5rem;
  align-items: stretch;
}
.input-group > :first-child, .input-group > :first-child.input-group-button > * {
  border-radius: 0.25rem 0 0 0.25rem;
}
.input-group > :last-child, .input-group > :last-child.input-group-button > * {
  border-radius: 0 0.25rem 0.25rem 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cccccc;
  background: #b6b5bc;
  color: #000000;
  text-align: center;
  white-space: nowrap;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  align-self: stretch;
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.875rem;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.75rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cccccc;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
}

select {
  height: 2.578125rem;
  margin: 0 0 1.5rem;
  padding: 0.5rem 1rem;
  appearance: none;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  background-color: #ffffff;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.875;
  color: #525252;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\" width=\"32\" height=\"24\" viewBox=\"0 0 32 24\"><polygon points=\"0,0 32,0 16,24\" style=\"fill: rgb%28140, 140, 140%29\"></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.5rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 2.25rem;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==);
  }
}
select:focus {
  outline: none;
  border: 1px solid #009bdf;
  background-color: #ffffff;
  box-shadow: none;
}
select:disabled {
  background-color: #b6b5bc;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}
select:not([multiple]) {
  padding-top: 0;
  padding-bottom: 0;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1.5rem 0;
  padding: 0.625rem 0.875rem;
  border: none;
  border-radius: 0.25rem;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.875rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button.tiny {
  font-size: 0.6rem;
}
.button.small {
  font-size: 0.75rem;
}
.button.large {
  font-size: 1rem;
}
.button.expanded {
  display: block;
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}
.button, .button.disabled, .button[disabled], .button.disabled:hover, .button[disabled]:hover, .button.disabled:focus, .button[disabled]:focus {
  background-color: #009bdf;
  color: #ffffff;
}
.button:hover, .button:focus {
  background-color: #0084be;
  color: #ffffff;
}
.button.primary, .button.primary.disabled, .button.primary[disabled], .button.primary.disabled:hover, .button.primary[disabled]:hover, .button.primary.disabled:focus, .button.primary[disabled]:focus {
  background-color: #009bdf;
  color: #000000;
}
.button.primary:hover, .button.primary:focus {
  background-color: #007cb2;
  color: #000000;
}
.button.secondary, .button.secondary.disabled, .button.secondary[disabled], .button.secondary.disabled:hover, .button.secondary[disabled]:hover, .button.secondary.disabled:focus, .button.secondary[disabled]:focus {
  background-color: #cccccc;
  color: #000000;
}
.button.secondary:hover, .button.secondary:focus {
  background-color: #a3a3a3;
  color: #000000;
}
.button.success, .button.success.disabled, .button.success[disabled], .button.success.disabled:hover, .button.success[disabled]:hover, .button.success.disabled:focus, .button.success[disabled]:focus {
  background-color: #3adb76;
  color: #000000;
}
.button.success:hover, .button.success:focus {
  background-color: #22bb5b;
  color: #000000;
}
.button.warning, .button.warning.disabled, .button.warning[disabled], .button.warning.disabled:hover, .button.warning[disabled]:hover, .button.warning.disabled:focus, .button.warning[disabled]:focus {
  background-color: #ffae00;
  color: #000000;
}
.button.warning:hover, .button.warning:focus {
  background-color: #cc8b00;
  color: #000000;
}
.button.alert, .button.alert.disabled, .button.alert[disabled], .button.alert.disabled:hover, .button.alert[disabled]:hover, .button.alert.disabled:focus, .button.alert[disabled]:focus {
  background-color: #cc4b37;
  color: #000000;
}
.button.alert:hover, .button.alert:focus {
  background-color: #a53b2a;
  color: #000000;
}
.button.hollow, .button.hollow:hover, .button.hollow:focus, .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
  background-color: transparent;
}
.button.hollow, .button.hollow.disabled, .button.hollow[disabled], .button.hollow.disabled:hover, .button.hollow[disabled]:hover, .button.hollow.disabled:focus, .button.hollow[disabled]:focus {
  border: 1px solid #009bdf;
  color: #009bdf;
}
.button.hollow:hover, .button.hollow:focus {
  border-color: #004e70;
  color: #004e70;
}
.button.hollow.primary, .button.hollow.primary.disabled, .button.hollow.primary[disabled], .button.hollow.primary.disabled:hover, .button.hollow.primary[disabled]:hover, .button.hollow.primary.disabled:focus, .button.hollow.primary[disabled]:focus {
  border: 1px solid #009bdf;
  color: #009bdf;
}
.button.hollow.primary:hover, .button.hollow.primary:focus {
  border-color: #004e70;
  color: #004e70;
}
.button.hollow.secondary, .button.hollow.secondary.disabled, .button.hollow.secondary[disabled], .button.hollow.secondary.disabled:hover, .button.hollow.secondary[disabled]:hover, .button.hollow.secondary.disabled:focus, .button.hollow.secondary[disabled]:focus {
  border: 1px solid #cccccc;
  color: #cccccc;
}
.button.hollow.secondary:hover, .button.hollow.secondary:focus {
  border-color: #666666;
  color: #666666;
}
.button.hollow.success, .button.hollow.success.disabled, .button.hollow.success[disabled], .button.hollow.success.disabled:hover, .button.hollow.success[disabled]:hover, .button.hollow.success.disabled:focus, .button.hollow.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button.hollow.success:hover, .button.hollow.success:focus {
  border-color: #157539;
  color: #157539;
}
.button.hollow.warning, .button.hollow.warning.disabled, .button.hollow.warning[disabled], .button.hollow.warning.disabled:hover, .button.hollow.warning[disabled]:hover, .button.hollow.warning.disabled:focus, .button.hollow.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button.hollow.warning:hover, .button.hollow.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button.hollow.alert, .button.hollow.alert.disabled, .button.hollow.alert[disabled], .button.hollow.alert.disabled:hover, .button.hollow.alert[disabled]:hover, .button.hollow.alert.disabled:focus, .button.hollow.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button.hollow.alert:hover, .button.hollow.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button.clear, .button.clear:hover, .button.clear:focus, .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear.disabled:hover, .button.clear[disabled]:hover, .button.clear.disabled:focus, .button.clear[disabled]:focus {
  color: #009bdf;
}
.button.clear:hover, .button.clear:focus {
  color: #004e70;
}
.button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary.disabled:hover, .button.clear.primary[disabled]:hover, .button.clear.primary.disabled:focus, .button.clear.primary[disabled]:focus {
  color: #009bdf;
}
.button.clear.primary:hover, .button.clear.primary:focus {
  color: #004e70;
}
.button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary.disabled:hover, .button.clear.secondary[disabled]:hover, .button.clear.secondary.disabled:focus, .button.clear.secondary[disabled]:focus {
  color: #cccccc;
}
.button.clear.secondary:hover, .button.clear.secondary:focus {
  color: #666666;
}
.button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success.disabled:hover, .button.clear.success[disabled]:hover, .button.clear.success.disabled:focus, .button.clear.success[disabled]:focus {
  color: #3adb76;
}
.button.clear.success:hover, .button.clear.success:focus {
  color: #157539;
}
.button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning.disabled:hover, .button.clear.warning[disabled]:hover, .button.clear.warning.disabled:focus, .button.clear.warning[disabled]:focus {
  color: #ffae00;
}
.button.clear.warning:hover, .button.clear.warning:focus {
  color: #805700;
}
.button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert.disabled:hover, .button.clear.alert[disabled]:hover, .button.clear.alert.disabled:focus, .button.clear.alert[disabled]:focus {
  color: #cc4b37;
}
.button.clear.alert:hover, .button.clear.alert:focus {
  color: #67251a;
}
.button.disabled, .button[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
}
.button.dropdown::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4em;
  content: "";
  border-bottom-width: 0;
  border-color: #ffffff transparent transparent;
  position: relative;
  top: 0.4em;
  display: inline-block;
  float: right;
  margin-left: 0.875rem;
}
.button.dropdown.hollow::after, .button.dropdown.clear::after {
  border-top-color: #009bdf;
}
.button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
  border-top-color: #009bdf;
}
.button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
  border-top-color: #cccccc;
}
.button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
  border-top-color: #3adb76;
}
.button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
  border-top-color: #ffae00;
}
.button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
  border-top-color: #cc4b37;
}
.button.arrow-only::after {
  top: -0.1em;
  float: none;
  margin-left: 0;
}

a.button:hover, a.button:focus {
  text-decoration: none;
}

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-grow: 1;
}
.button-group::before, .button-group::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.button-group::after {
  clear: both;
}
.button-group::before, .button-group::after {
  display: none;
}
.button-group .button {
  margin: 0;
  margin-right: 1px;
  margin-bottom: 1px;
  font-size: 0.875rem;
  flex: 0 0 auto;
}
.button-group .button:last-child {
  margin-right: 0;
}
.button-group.tiny .button {
  font-size: 0.6rem;
}
.button-group.small .button {
  font-size: 0.75rem;
}
.button-group.large .button {
  font-size: 1rem;
}
.button-group.expanded .button {
  flex: 1 1 0px;
}
.button-group.primary .button, .button-group.primary .button.disabled, .button-group.primary .button[disabled], .button-group.primary .button.disabled:hover, .button-group.primary .button[disabled]:hover, .button-group.primary .button.disabled:focus, .button-group.primary .button[disabled]:focus {
  background-color: #009bdf;
  color: #000000;
}
.button-group.primary .button:hover, .button-group.primary .button:focus {
  background-color: #007cb2;
  color: #000000;
}
.button-group.secondary .button, .button-group.secondary .button.disabled, .button-group.secondary .button[disabled], .button-group.secondary .button.disabled:hover, .button-group.secondary .button[disabled]:hover, .button-group.secondary .button.disabled:focus, .button-group.secondary .button[disabled]:focus {
  background-color: #cccccc;
  color: #000000;
}
.button-group.secondary .button:hover, .button-group.secondary .button:focus {
  background-color: #a3a3a3;
  color: #000000;
}
.button-group.success .button, .button-group.success .button.disabled, .button-group.success .button[disabled], .button-group.success .button.disabled:hover, .button-group.success .button[disabled]:hover, .button-group.success .button.disabled:focus, .button-group.success .button[disabled]:focus {
  background-color: #3adb76;
  color: #000000;
}
.button-group.success .button:hover, .button-group.success .button:focus {
  background-color: #22bb5b;
  color: #000000;
}
.button-group.warning .button, .button-group.warning .button.disabled, .button-group.warning .button[disabled], .button-group.warning .button.disabled:hover, .button-group.warning .button[disabled]:hover, .button-group.warning .button.disabled:focus, .button-group.warning .button[disabled]:focus {
  background-color: #ffae00;
  color: #000000;
}
.button-group.warning .button:hover, .button-group.warning .button:focus {
  background-color: #cc8b00;
  color: #000000;
}
.button-group.alert .button, .button-group.alert .button.disabled, .button-group.alert .button[disabled], .button-group.alert .button.disabled:hover, .button-group.alert .button[disabled]:hover, .button-group.alert .button.disabled:focus, .button-group.alert .button[disabled]:focus {
  background-color: #cc4b37;
  color: #000000;
}
.button-group.alert .button:hover, .button-group.alert .button:focus {
  background-color: #a53b2a;
  color: #000000;
}
.button-group.hollow .button, .button-group.hollow .button:hover, .button-group.hollow .button:focus, .button-group.hollow .button.disabled, .button-group.hollow .button.disabled:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled], .button-group.hollow .button[disabled]:hover, .button-group.hollow .button[disabled]:focus {
  background-color: transparent;
}
.button-group.hollow .button, .button-group.hollow .button.disabled, .button-group.hollow .button[disabled], .button-group.hollow .button.disabled:hover, .button-group.hollow .button[disabled]:hover, .button-group.hollow .button.disabled:focus, .button-group.hollow .button[disabled]:focus {
  border: 1px solid #009bdf;
  color: #009bdf;
}
.button-group.hollow .button:hover, .button-group.hollow .button:focus {
  border-color: #004e70;
  color: #004e70;
}
.button-group.hollow.primary .button, .button-group.hollow.primary .button.disabled, .button-group.hollow.primary .button[disabled], .button-group.hollow.primary .button.disabled:hover, .button-group.hollow.primary .button[disabled]:hover, .button-group.hollow.primary .button.disabled:focus, .button-group.hollow.primary .button[disabled]:focus, .button-group.hollow .button.primary, .button-group.hollow .button.primary.disabled, .button-group.hollow .button.primary[disabled], .button-group.hollow .button.primary.disabled:hover, .button-group.hollow .button.primary[disabled]:hover, .button-group.hollow .button.primary.disabled:focus, .button-group.hollow .button.primary[disabled]:focus {
  border: 1px solid #009bdf;
  color: #009bdf;
}
.button-group.hollow.primary .button:hover, .button-group.hollow.primary .button:focus, .button-group.hollow .button.primary:hover, .button-group.hollow .button.primary:focus {
  border-color: #004e70;
  color: #004e70;
}
.button-group.hollow.secondary .button, .button-group.hollow.secondary .button.disabled, .button-group.hollow.secondary .button[disabled], .button-group.hollow.secondary .button.disabled:hover, .button-group.hollow.secondary .button[disabled]:hover, .button-group.hollow.secondary .button.disabled:focus, .button-group.hollow.secondary .button[disabled]:focus, .button-group.hollow .button.secondary, .button-group.hollow .button.secondary.disabled, .button-group.hollow .button.secondary[disabled], .button-group.hollow .button.secondary.disabled:hover, .button-group.hollow .button.secondary[disabled]:hover, .button-group.hollow .button.secondary.disabled:focus, .button-group.hollow .button.secondary[disabled]:focus {
  border: 1px solid #cccccc;
  color: #cccccc;
}
.button-group.hollow.secondary .button:hover, .button-group.hollow.secondary .button:focus, .button-group.hollow .button.secondary:hover, .button-group.hollow .button.secondary:focus {
  border-color: #666666;
  color: #666666;
}
.button-group.hollow.success .button, .button-group.hollow.success .button.disabled, .button-group.hollow.success .button[disabled], .button-group.hollow.success .button.disabled:hover, .button-group.hollow.success .button[disabled]:hover, .button-group.hollow.success .button.disabled:focus, .button-group.hollow.success .button[disabled]:focus, .button-group.hollow .button.success, .button-group.hollow .button.success.disabled, .button-group.hollow .button.success[disabled], .button-group.hollow .button.success.disabled:hover, .button-group.hollow .button.success[disabled]:hover, .button-group.hollow .button.success.disabled:focus, .button-group.hollow .button.success[disabled]:focus {
  border: 1px solid #3adb76;
  color: #3adb76;
}
.button-group.hollow.success .button:hover, .button-group.hollow.success .button:focus, .button-group.hollow .button.success:hover, .button-group.hollow .button.success:focus {
  border-color: #157539;
  color: #157539;
}
.button-group.hollow.warning .button, .button-group.hollow.warning .button.disabled, .button-group.hollow.warning .button[disabled], .button-group.hollow.warning .button.disabled:hover, .button-group.hollow.warning .button[disabled]:hover, .button-group.hollow.warning .button.disabled:focus, .button-group.hollow.warning .button[disabled]:focus, .button-group.hollow .button.warning, .button-group.hollow .button.warning.disabled, .button-group.hollow .button.warning[disabled], .button-group.hollow .button.warning.disabled:hover, .button-group.hollow .button.warning[disabled]:hover, .button-group.hollow .button.warning.disabled:focus, .button-group.hollow .button.warning[disabled]:focus {
  border: 1px solid #ffae00;
  color: #ffae00;
}
.button-group.hollow.warning .button:hover, .button-group.hollow.warning .button:focus, .button-group.hollow .button.warning:hover, .button-group.hollow .button.warning:focus {
  border-color: #805700;
  color: #805700;
}
.button-group.hollow.alert .button, .button-group.hollow.alert .button.disabled, .button-group.hollow.alert .button[disabled], .button-group.hollow.alert .button.disabled:hover, .button-group.hollow.alert .button[disabled]:hover, .button-group.hollow.alert .button.disabled:focus, .button-group.hollow.alert .button[disabled]:focus, .button-group.hollow .button.alert, .button-group.hollow .button.alert.disabled, .button-group.hollow .button.alert[disabled], .button-group.hollow .button.alert.disabled:hover, .button-group.hollow .button.alert[disabled]:hover, .button-group.hollow .button.alert.disabled:focus, .button-group.hollow .button.alert[disabled]:focus {
  border: 1px solid #cc4b37;
  color: #cc4b37;
}
.button-group.hollow.alert .button:hover, .button-group.hollow.alert .button:focus, .button-group.hollow .button.alert:hover, .button-group.hollow .button.alert:focus {
  border-color: #67251a;
  color: #67251a;
}
.button-group.clear .button, .button-group.clear .button:hover, .button-group.clear .button:focus, .button-group.clear .button.disabled, .button-group.clear .button.disabled:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled], .button-group.clear .button[disabled]:hover, .button-group.clear .button[disabled]:focus {
  border-color: transparent;
  background-color: transparent;
}
.button-group.clear .button, .button-group.clear .button.disabled, .button-group.clear .button[disabled], .button-group.clear .button.disabled:hover, .button-group.clear .button[disabled]:hover, .button-group.clear .button.disabled:focus, .button-group.clear .button[disabled]:focus {
  color: #009bdf;
}
.button-group.clear .button:hover, .button-group.clear .button:focus {
  color: #004e70;
}
.button-group.clear.primary .button, .button-group.clear.primary .button.disabled, .button-group.clear.primary .button[disabled], .button-group.clear.primary .button.disabled:hover, .button-group.clear.primary .button[disabled]:hover, .button-group.clear.primary .button.disabled:focus, .button-group.clear.primary .button[disabled]:focus, .button-group.clear .button.primary, .button-group.clear .button.primary.disabled, .button-group.clear .button.primary[disabled], .button-group.clear .button.primary.disabled:hover, .button-group.clear .button.primary[disabled]:hover, .button-group.clear .button.primary.disabled:focus, .button-group.clear .button.primary[disabled]:focus {
  color: #009bdf;
}
.button-group.clear.primary .button:hover, .button-group.clear.primary .button:focus, .button-group.clear .button.primary:hover, .button-group.clear .button.primary:focus {
  color: #004e70;
}
.button-group.clear.secondary .button, .button-group.clear.secondary .button.disabled, .button-group.clear.secondary .button[disabled], .button-group.clear.secondary .button.disabled:hover, .button-group.clear.secondary .button[disabled]:hover, .button-group.clear.secondary .button.disabled:focus, .button-group.clear.secondary .button[disabled]:focus, .button-group.clear .button.secondary, .button-group.clear .button.secondary.disabled, .button-group.clear .button.secondary[disabled], .button-group.clear .button.secondary.disabled:hover, .button-group.clear .button.secondary[disabled]:hover, .button-group.clear .button.secondary.disabled:focus, .button-group.clear .button.secondary[disabled]:focus {
  color: #cccccc;
}
.button-group.clear.secondary .button:hover, .button-group.clear.secondary .button:focus, .button-group.clear .button.secondary:hover, .button-group.clear .button.secondary:focus {
  color: #666666;
}
.button-group.clear.success .button, .button-group.clear.success .button.disabled, .button-group.clear.success .button[disabled], .button-group.clear.success .button.disabled:hover, .button-group.clear.success .button[disabled]:hover, .button-group.clear.success .button.disabled:focus, .button-group.clear.success .button[disabled]:focus, .button-group.clear .button.success, .button-group.clear .button.success.disabled, .button-group.clear .button.success[disabled], .button-group.clear .button.success.disabled:hover, .button-group.clear .button.success[disabled]:hover, .button-group.clear .button.success.disabled:focus, .button-group.clear .button.success[disabled]:focus {
  color: #3adb76;
}
.button-group.clear.success .button:hover, .button-group.clear.success .button:focus, .button-group.clear .button.success:hover, .button-group.clear .button.success:focus {
  color: #157539;
}
.button-group.clear.warning .button, .button-group.clear.warning .button.disabled, .button-group.clear.warning .button[disabled], .button-group.clear.warning .button.disabled:hover, .button-group.clear.warning .button[disabled]:hover, .button-group.clear.warning .button.disabled:focus, .button-group.clear.warning .button[disabled]:focus, .button-group.clear .button.warning, .button-group.clear .button.warning.disabled, .button-group.clear .button.warning[disabled], .button-group.clear .button.warning.disabled:hover, .button-group.clear .button.warning[disabled]:hover, .button-group.clear .button.warning.disabled:focus, .button-group.clear .button.warning[disabled]:focus {
  color: #ffae00;
}
.button-group.clear.warning .button:hover, .button-group.clear.warning .button:focus, .button-group.clear .button.warning:hover, .button-group.clear .button.warning:focus {
  color: #805700;
}
.button-group.clear.alert .button, .button-group.clear.alert .button.disabled, .button-group.clear.alert .button[disabled], .button-group.clear.alert .button.disabled:hover, .button-group.clear.alert .button[disabled]:hover, .button-group.clear.alert .button.disabled:focus, .button-group.clear.alert .button[disabled]:focus, .button-group.clear .button.alert, .button-group.clear .button.alert.disabled, .button-group.clear .button.alert[disabled], .button-group.clear .button.alert.disabled:hover, .button-group.clear .button.alert[disabled]:hover, .button-group.clear .button.alert.disabled:focus, .button-group.clear .button.alert[disabled]:focus {
  color: #cc4b37;
}
.button-group.clear.alert .button:hover, .button-group.clear.alert .button:focus, .button-group.clear .button.alert:hover, .button-group.clear .button.alert:focus {
  color: #67251a;
}
.button-group.no-gaps .button {
  margin-right: -0.0625rem;
}
.button-group.no-gaps .button + .button {
  border-left-color: transparent;
}
.button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
  flex-wrap: wrap;
}
.button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
  flex: 0 0 100%;
}
.button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
  margin-bottom: 0;
}
.button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
  flex: 1 1 0px;
}
@media print, screen and (min-width: 40em) {
  .button-group.stacked-for-small .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .button-group.stacked-for-medium .button {
    flex: 0 0 auto;
    margin-bottom: 0;
  }
}
@media print, screen and (max-width: 39.99875em) {
  .button-group.stacked-for-small.expanded {
    display: block;
  }
  .button-group.stacked-for-small.expanded .button {
    display: block;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .button-group.stacked-for-medium.expanded {
    display: block;
  }
  .button-group.stacked-for-medium.expanded .button {
    display: block;
    margin-right: 0;
  }
}

.accordion {
  margin-left: 0;
  background: #ffffff;
  list-style-type: none;
}
.accordion[disabled] .accordion-title {
  cursor: not-allowed;
}

.accordion-item:first-child > :first-child {
  border-radius: 0.25rem 0.25rem 0 0;
}
.accordion-item:last-child > :last-child {
  border-radius: 0 0 0.25rem 0.25rem;
}

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 1rem;
  border: 1px solid #b6b5bc;
  border-bottom: 0;
  font-size: 0.75rem;
  line-height: 1;
  color: #009bdf;
}
:last-child:not(.is-active) > .accordion-title {
  border-bottom: 1px solid #b6b5bc;
  border-radius: 0 0 0.25rem 0.25rem;
}
.accordion-title:hover, .accordion-title:focus {
  background-color: #b6b5bc;
}
.accordion-title::before {
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -0.5rem;
  content: "+";
}
.is-active > .accordion-title::before {
  content: "–";
}

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid #b6b5bc;
  border-bottom: 0;
  background-color: #ffffff;
  color: #525252;
}
:last-child > .accordion-content:last-child {
  border-bottom: 1px solid #b6b5bc;
}

.accordion-menu li {
  width: 100%;
}
.accordion-menu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem;
}
.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem;
}
.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative;
}
.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #009bdf transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}
.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto;
}
.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem;
}
.accordion-menu .is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

.is-accordion-submenu-parent {
  position: relative;
}

.has-submenu-toggle > a {
  margin-right: 40px;
}

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.submenu-toggle::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #009bdf transparent transparent;
  top: 0;
  bottom: 0;
  margin: auto;
}

.submenu-toggle[aria-expanded=true]::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%;
}

.submenu-toggle-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none;
}
.breadcrumbs::before, .breadcrumbs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.breadcrumbs::after {
  clear: both;
}
.breadcrumbs li {
  float: left;
  font-size: 0.6875rem;
  color: #000000;
  cursor: default;
  text-transform: uppercase;
}
.breadcrumbs li:not(:last-child)::after {
  position: relative;
  margin: 0 0.75rem;
  opacity: 1;
  content: "/";
  color: #cccccc;
}
.breadcrumbs a {
  color: #009bdf;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.breadcrumbs .disabled {
  color: #cccccc;
  cursor: not-allowed;
}

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  background-color: white;
  color: #525252;
}
.callout > :first-child {
  margin-top: 0;
}
.callout > :last-child {
  margin-bottom: 0;
}
.callout.primary {
  background-color: #d4f2ff;
  color: #525252;
}
.callout.secondary {
  background-color: #f7f7f7;
  color: #525252;
}
.callout.success {
  background-color: #e1faea;
  color: #525252;
}
.callout.warning {
  background-color: #fff3d9;
  color: #525252;
}
.callout.alert {
  background-color: #f7e4e1;
  color: #525252;
}
.callout.small {
  padding-top: 0.5rem;
  padding-right: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
}
.callout.large {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #b6b5bc;
  border-radius: 0.25rem;
  background: #ffffff;
  box-shadow: none;
  overflow: hidden;
  color: #525252;
}
.card > :last-child {
  margin-bottom: 0;
}

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #b6b5bc;
}
.card-divider > :last-child {
  margin-bottom: 0;
}

.card-section {
  flex: 1 0 auto;
  padding: 1rem;
}
.card-section > :last-child {
  margin-bottom: 0;
}

.card-image {
  min-height: 1px;
}

.close-button {
  position: absolute;
  z-index: 10;
  color: #333333;
  cursor: pointer;
}
[data-whatinput=mouse] .close-button {
  outline: 0;
}
.close-button:hover, .close-button:focus {
  color: #000000;
}
.close-button.small {
  right: 0.66rem;
  top: 0.33em;
  font-size: 1.5em;
  line-height: 1;
}

.close-button.medium, .close-button {
  right: 1rem;
  top: 0.5rem;
  font-size: 2em;
  line-height: 1;
}

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
[data-whatinput=mouse] .menu li {
  outline: 0;
}
.menu a,
.menu .button {
  line-height: 1;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu input {
  display: inline-block;
}
.menu, .menu.horizontal {
  flex-wrap: wrap;
  flex-direction: row;
}
.menu.vertical {
  flex-wrap: nowrap;
  flex-direction: column;
}
.menu.vertical.icon-top li a img,
.menu.vertical.icon-top li a i,
.menu.vertical.icon-top li a svg, .menu.vertical.icon-bottom li a img,
.menu.vertical.icon-bottom li a i,
.menu.vertical.icon-bottom li a svg {
  text-align: left;
}
.menu.expanded li {
  flex: 1 1 0px;
}
.menu.expanded.icon-top li a img,
.menu.expanded.icon-top li a i,
.menu.expanded.icon-top li a svg, .menu.expanded.icon-bottom li a img,
.menu.expanded.icon-bottom li a i,
.menu.expanded.icon-bottom li a svg {
  text-align: left;
}
.menu.simple {
  align-items: center;
}
.menu.simple li + li {
  margin-left: 1rem;
}
.menu.simple a {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .menu.medium-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.medium-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.medium-expanded li {
    flex: 1 1 0px;
  }
  .menu.medium-simple li {
    flex: 1 1 0px;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .menu.large-vertical {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .menu.large-expanded li {
    flex: 1 1 0px;
  }
  .menu.large-simple li {
    flex: 1 1 0px;
  }
}
.menu.nested {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.icons a {
  display: flex;
}
.menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
  display: flex;
}
.menu.icon-left li a, .menu.nested.icon-left li a {
  flex-flow: row nowrap;
}
.menu.icon-left li a img,
.menu.icon-left li a i,
.menu.icon-left li a svg, .menu.nested.icon-left li a img,
.menu.nested.icon-left li a i,
.menu.nested.icon-left li a svg {
  margin-right: 0.25rem;
}
.menu.icon-right li a, .menu.nested.icon-right li a {
  flex-flow: row nowrap;
}
.menu.icon-right li a img,
.menu.icon-right li a i,
.menu.icon-right li a svg, .menu.nested.icon-right li a img,
.menu.nested.icon-right li a i,
.menu.nested.icon-right li a svg {
  margin-left: 0.25rem;
}
.menu.icon-top li a, .menu.nested.icon-top li a {
  flex-flow: column nowrap;
}
.menu.icon-top li a img,
.menu.icon-top li a i,
.menu.icon-top li a svg, .menu.nested.icon-top li a img,
.menu.nested.icon-top li a i,
.menu.nested.icon-top li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu.icon-bottom li a, .menu.nested.icon-bottom li a {
  flex-flow: column nowrap;
}
.menu.icon-bottom li a img,
.menu.icon-bottom li a i,
.menu.icon-bottom li a svg, .menu.nested.icon-bottom li a img,
.menu.nested.icon-bottom li a i,
.menu.nested.icon-bottom li a svg {
  align-self: stretch;
  margin-bottom: 0.25rem;
  text-align: center;
}
.menu .is-active > a {
  background: #009bdf;
  color: #000000;
}
.menu .active > a {
  background: #009bdf;
  color: #000000;
}
.menu.align-left {
  justify-content: flex-start;
}
.menu.align-right li {
  display: flex;
  justify-content: flex-end;
}
.menu.align-right li .submenu li {
  justify-content: flex-start;
}
.menu.align-right.vertical li {
  display: block;
  text-align: right;
}
.menu.align-right.vertical li .submenu li {
  text-align: right;
}
.menu.align-right.icon-top li a img,
.menu.align-right.icon-top li a i,
.menu.align-right.icon-top li a svg, .menu.align-right.icon-bottom li a img,
.menu.align-right.icon-bottom li a i,
.menu.align-right.icon-bottom li a svg {
  text-align: right;
}
.menu.align-right .nested {
  margin-right: 1rem;
  margin-left: 0;
}
.menu.align-center li {
  display: flex;
  justify-content: center;
}
.menu.align-center li .submenu li {
  justify-content: flex-start;
}
.menu .menu-text {
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered > .menu {
  justify-content: center;
}
.menu-centered > .menu li {
  display: flex;
  justify-content: center;
}
.menu-centered > .menu li .submenu li {
  justify-content: flex-start;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.is-drilldown {
  position: relative;
  overflow: hidden;
}
.is-drilldown li {
  display: block;
}
.is-drilldown.animate-height {
  transition: height 0.5s;
}

.drilldown a {
  padding: 0.7rem 1rem;
  background: #ffffff;
}
.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #ffffff;
  transition: transform 0.15s linear;
}
.drilldown .is-drilldown-submenu.is-active {
  z-index: 1;
  display: block;
  transform: translateX(-100%);
}
.drilldown .is-drilldown-submenu.is-closing {
  transform: translateX(100%);
}
.drilldown .is-drilldown-submenu a {
  padding: 0.7rem 1rem;
}
.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%;
}
.drilldown .is-drilldown-submenu-parent > a {
  position: relative;
}
.drilldown .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #009bdf;
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 1rem;
}
.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #009bdf;
  right: 1rem;
  left: auto;
}
.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #009bdf transparent transparent;
  right: auto;
  left: 1rem;
}
.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #009bdf transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem;
}

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
  background-color: #ffffff;
  font-size: 1rem;
}
.dropdown-pane.is-opening {
  display: block;
}
.dropdown-pane.is-open {
  display: block;
  visibility: visible;
}

.dropdown-pane.tiny {
  width: 100px;
}

.dropdown-pane.small {
  width: 200px;
}

.dropdown-pane.large {
  width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto;
}
.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem;
}
.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-bottom-width: 0;
  border-color: #009bdf transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px;
}
[data-whatinput=mouse] .dropdown.menu a {
  outline: 0;
}
.dropdown.menu > li > a {
  padding: 0.7rem 1rem;
}
.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #009bdf;
}
.no-js .dropdown.menu ul {
  display: none;
}
.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0;
}
.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0;
}
.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto;
}
.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}
.dropdown.menu.vertical > li > a::after {
  right: 14px;
}
.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #009bdf transparent transparent;
  right: auto;
  left: 5px;
}
.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #009bdf;
}
@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #009bdf transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #009bdf transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #009bdf;
  }
}
@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
  }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
  }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-bottom-width: 0;
    border-color: #009bdf transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px;
  }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0;
  }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto;
  }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
  }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px;
  }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-left-width: 0;
    border-color: transparent #009bdf transparent transparent;
    right: auto;
    left: 5px;
  }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px;
    content: "";
    border-right-width: 0;
    border-color: transparent transparent transparent #009bdf;
  }
}
.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto;
}

.is-dropdown-menu.vertical {
  width: 100px;
}
.is-dropdown-menu.vertical.align-right {
  float: right;
}

.is-dropdown-submenu-parent {
  position: relative;
}
.is-dropdown-submenu-parent a::after {
  position: absolute;
  top: 50%;
  right: 5px;
  left: auto;
  margin-top: -6px;
}
.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
  top: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
  right: 100%;
  left: auto;
}
.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%;
}

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cccccc;
  background: #ffffff;
}
.dropdown .is-dropdown-submenu a {
  padding: 0.7rem 1rem;
}
.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
  right: 14px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-left-width: 0;
  border-color: transparent #009bdf transparent transparent;
  right: auto;
  left: 5px;
}
.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #009bdf;
}
.is-dropdown-submenu .is-dropdown-submenu {
  margin-top: -1px;
}
.is-dropdown-submenu > li {
  width: 100%;
}
.is-dropdown-submenu.js-dropdown-active {
  display: block;
}

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden;
}
.responsive-embed iframe,
.responsive-embed object,
.responsive-embed embed,
.responsive-embed video,
.flex-video iframe,
.flex-video object,
.flex-video embed,
.flex-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.responsive-embed.widescreen,
.flex-video.widescreen {
  padding-bottom: 56.25%;
}
.responsive-embed.ultrawide,
.flex-video.ultrawide {
  padding-bottom: 42.8571428571%;
}

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #009bdf;
  color: #ffffff;
}
.label.primary {
  background: #009bdf;
  color: #000000;
}
.label.secondary {
  background: #cccccc;
  color: #000000;
}
.label.success {
  background: #3adb76;
  color: #000000;
}
.label.warning {
  background: #ffae00;
  color: #000000;
}
.label.alert {
  background: #cc4b37;
  color: #000000;
}

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap;
}
.media-object img {
  max-width: none;
}
@media print, screen and (max-width: 39.99875em) {
  .media-object.stack-for-small {
    flex-wrap: wrap;
  }
}

.media-object-section {
  flex: 0 1 auto;
}
.media-object-section:first-child {
  padding-right: 1rem;
}
.media-object-section:last-child:not(:nth-child(2)) {
  padding-left: 1rem;
}
.media-object-section > :last-child {
  margin-bottom: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .stack-for-small .media-object-section {
    padding: 0;
    padding-bottom: 1rem;
    flex-basis: 100%;
    max-width: 100%;
  }
  .stack-for-small .media-object-section img {
    width: 100%;
  }
}
.media-object-section.main-section {
  flex: 1 1 0px;
}

.is-off-canvas-open {
  overflow: hidden;
}

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.js-off-canvas-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.js-off-canvas-overlay.is-closable {
  cursor: pointer;
}
.js-off-canvas-overlay.is-overlay-absolute {
  position: absolute;
}
.js-off-canvas-overlay.is-overlay-fixed {
  position: fixed;
}

.off-canvas-wrapper {
  position: relative;
  overflow: hidden;
}

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #f6f5f5;
}
[data-whatinput=mouse] .off-canvas {
  outline: 0;
}
.off-canvas.is-transition-push {
  z-index: 12;
}
.off-canvas.is-closed {
  visibility: hidden;
}
.off-canvas.is-transition-overlap {
  z-index: 13;
}
.off-canvas.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.off-canvas.is-open {
  transform: translate(0, 0);
}

.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #f6f5f5;
}
[data-whatinput=mouse] .off-canvas-absolute {
  outline: 0;
}
.off-canvas-absolute.is-transition-push {
  z-index: 12;
}
.off-canvas-absolute.is-closed {
  visibility: hidden;
}
.off-canvas-absolute.is-transition-overlap {
  z-index: 13;
}
.off-canvas-absolute.is-transition-overlap.is-open {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.off-canvas-absolute.is-open {
  transform: translate(0, 0);
}

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  transform: translateX(-100%);
}
@media print, screen and (min-width: 40em) {
  .position-left {
    width: 250px;
    transform: translateX(-250px);
  }
}
.off-canvas-content .off-canvas.position-left {
  transform: translateX(-100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-left {
    transform: translateX(-250px);
  }
}
.off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-left.has-transition-push {
  transform: translateX(100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-left.has-transition-push {
    transform: translateX(250px);
  }
}

.position-left.is-transition-push {
  box-shadow: inset -13px 0 20px -13px rgba(0, 0, 0, 0.25);
}

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  transform: translateX(100%);
}
@media print, screen and (min-width: 40em) {
  .position-right {
    width: 250px;
    transform: translateX(250px);
  }
}
.off-canvas-content .off-canvas.position-right {
  transform: translateX(100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content .off-canvas.position-right {
    transform: translateX(250px);
  }
}
.off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-right.has-transition-push {
  transform: translateX(-100%);
}
@media print, screen and (min-width: 40em) {
  .off-canvas-content.is-open-right.has-transition-push {
    transform: translateX(-250px);
  }
}

.position-right.is-transition-push {
  box-shadow: inset 13px 0 20px -13px rgba(0, 0, 0, 0.25);
}

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top {
  transform: translateY(-250px);
}
.off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-top.has-transition-push {
  transform: translateY(250px);
}

.position-top.is-transition-push {
  box-shadow: inset 0 -13px 20px -13px rgba(0, 0, 0, 0.25);
}

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  height: 250px;
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom {
  transform: translateY(250px);
}
.off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
  transform: translate(0, 0);
}

.off-canvas-content.is-open-bottom.has-transition-push {
  transform: translateY(-250px);
}

.position-bottom.is-transition-push {
  box-shadow: inset 0 13px 20px -13px rgba(0, 0, 0, 0.25);
}

.off-canvas-content {
  transform: none;
  backface-visibility: hidden;
}
.off-canvas-content.has-transition-overlap, .off-canvas-content.has-transition-push {
  transition: transform 0.5s ease;
}
.off-canvas-content.has-transition-push {
  transform: translate(0, 0);
}
.off-canvas-content .off-canvas.is-open {
  transform: translate(0, 0);
}

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-medium ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-medium ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-medium ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-medium .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-medium {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-medium ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-left.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-left.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-left {
    margin-left: 250px;
  }
  .position-left.reveal-for-large ~ .off-canvas-content {
    margin-left: 250px;
  }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-right.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-right.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-right {
    margin-right: 250px;
  }
  .position-right.reveal-for-large ~ .off-canvas-content {
    margin-right: 250px;
  }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-top.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-top.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-top {
    margin-top: 250px;
  }
  .position-top.reveal-for-large ~ .off-canvas-content {
    margin-top: 250px;
  }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible;
  }
  .position-bottom.reveal-for-large .close-button {
    display: none;
  }
  .off-canvas-content .position-bottom.reveal-for-large {
    transform: none;
  }
  .off-canvas-content.has-reveal-bottom {
    margin-bottom: 250px;
  }
  .position-bottom.reveal-for-large ~ .off-canvas-content {
    margin-bottom: 250px;
  }
}
@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-medium .close-button {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none;
  }
  .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
    box-shadow: none;
    transform: none;
  }
  .off-canvas.in-canvas-for-large .close-button {
    display: none;
  }
}
.pagination {
  margin-left: 0;
  margin-bottom: 1rem;
}
.pagination::before, .pagination::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.pagination::after {
  clear: both;
}
.pagination li {
  margin-right: 0.0625rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  display: none;
}
.pagination li:last-child, .pagination li:first-child {
  display: inline-block;
}
@media print, screen and (min-width: 40em) {
  .pagination li {
    display: inline-block;
  }
}
.pagination a,
.pagination button {
  display: block;
  padding: 0.1875rem 0.625rem;
  border-radius: 0.25rem;
  color: #000000;
}
.pagination a:hover,
.pagination button:hover {
  background: #b6b5bc;
}
.pagination .current {
  padding: 0.1875rem 0.625rem;
  background: #009bdf;
  color: #ffffff;
  cursor: default;
}
.pagination .disabled {
  padding: 0.1875rem 0.625rem;
  color: #cccccc;
  cursor: not-allowed;
}
.pagination .disabled:hover {
  background: transparent;
}
.pagination .ellipsis::after {
  padding: 0.1875rem 0.625rem;
  content: "…";
  color: #000000;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: "»";
}

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden;
}
html.is-reveal-open.zf-has-scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
html.is-reveal-open body {
  overflow-y: hidden;
}

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(255, 255, 255, 0.8);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #b6b5bc;
  border-radius: 0.25rem;
  background-color: #b6b5bc;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
[data-whatinput=mouse] .reveal {
  outline: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    min-height: 0;
  }
}
.reveal .column {
  min-width: 0;
}
.reveal > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal {
    width: 600px;
    max-width: 79rem;
  }
}
.reveal.collapse {
  padding: 0;
}
@media print, screen and (min-width: 40em) {
  .reveal.tiny {
    width: 30%;
    max-width: 79rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.small {
    width: 50%;
    max-width: 79rem;
  }
}
@media print, screen and (min-width: 40em) {
  .reveal.large {
    width: 90%;
    max-width: 79rem;
  }
}
.reveal.full {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 100%;
  margin-left: 0;
  border: 0;
  border-radius: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .reveal {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0;
  }
}
.reveal.without-overlay {
  position: fixed;
}

.switch {
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
  user-select: none;
  height: 1.5rem;
}

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0;
}

.switch-paddle {
  position: relative;
  display: block;
  width: 3rem;
  height: 1.5rem;
  border-radius: 1.5rem;
  background: #cccccc;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
}
input + .switch-paddle {
  margin: 0;
}
.switch-paddle::after {
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate3d(0, 0, 0);
  border-radius: 1.5rem;
  background: #ffffff;
  transition: all 0.25s ease-out;
  content: "";
}
input:checked ~ .switch-paddle {
  background: #009bdf;
}
input:checked ~ .switch-paddle::after {
  left: 1.625rem;
}
input:disabled ~ .switch-paddle {
  cursor: not-allowed;
  opacity: 0.5;
}
[data-whatinput=mouse] input:focus ~ .switch-paddle {
  outline: 0;
}

.switch-inactive, .switch-active {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.switch-active {
  left: 8%;
  display: none;
}
input:checked + label > .switch-active {
  display: block;
}

.switch-inactive {
  right: 15%;
}
input:checked + label > .switch-inactive {
  display: none;
}

.switch.tiny {
  height: 1rem;
}
.switch.tiny .switch-paddle {
  width: 2rem;
  height: 1rem;
  font-size: 0.625rem;
}
.switch.tiny .switch-paddle::after {
  top: 0.125rem;
  left: 0.125rem;
  width: 0.75rem;
  height: 0.75rem;
}
.switch.tiny input:checked ~ .switch-paddle::after {
  left: 1.125rem;
}

.switch.small {
  height: 1.25rem;
}
.switch.small .switch-paddle {
  width: 2.5rem;
  height: 1.25rem;
  font-size: 0.75rem;
}
.switch.small .switch-paddle::after {
  top: 0.125rem;
  left: 0.125rem;
  width: 1rem;
  height: 1rem;
}
.switch.small input:checked ~ .switch-paddle::after {
  left: 1.375rem;
}

.switch.large {
  height: 2rem;
}
.switch.large .switch-paddle {
  width: 4rem;
  height: 2rem;
  font-size: 1rem;
}
.switch.large .switch-paddle::after {
  top: 0.125rem;
  left: 0.125rem;
  width: 1.75rem;
  height: 1.75rem;
}
.switch.large input:checked ~ .switch-paddle::after {
  left: 2.125rem;
}

.tabs {
  margin: 0;
  border: 1px solid #b6b5bc;
  background: #ffffff;
  list-style-type: none;
}
.tabs::before, .tabs::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.tabs::after {
  clear: both;
}

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto;
}

.tabs.simple > li > a {
  padding: 0;
}
.tabs.simple > li > a:hover {
  background: transparent;
}

.tabs.primary {
  background: #009bdf;
}
.tabs.primary > li > a {
  color: #000000;
}
.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
  background: #0093d4;
}

.tabs-title {
  float: left;
}
.tabs-title > a {
  display: block;
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  line-height: 1;
  color: #009bdf;
}
[data-whatinput=mouse] .tabs-title > a {
  outline: 0;
}
.tabs-title > a:hover {
  background: #ffffff;
  color: #0085c0;
}
.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
  background: #b6b5bc;
  color: #009bdf;
}

.tabs-content {
  border: 1px solid #b6b5bc;
  border-top: 0;
  background: #ffffff;
  color: #525252;
  transition: all 0.5s ease;
}

.tabs-content.vertical {
  border: 1px solid #b6b5bc;
  border-left: 0;
}

.tabs-panel {
  display: none;
  padding: 1rem;
}
.tabs-panel.is-active {
  display: block;
}

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #333333;
  font-weight: 600;
  cursor: help;
}

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0.25rem;
  background-color: #000000;
  font-size: 80%;
  color: #ffffff;
}
.tooltip::before {
  position: absolute;
}
.tooltip.bottom::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-top-width: 0;
  border-color: transparent transparent #000000;
  bottom: 100%;
}
.tooltip.bottom.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.top::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-bottom-width: 0;
  border-color: #000000 transparent transparent;
  top: 100%;
  bottom: auto;
}
.tooltip.top.align-center::before {
  left: 50%;
  transform: translateX(-50%);
}
.tooltip.left::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-right-width: 0;
  border-color: transparent transparent transparent #000000;
  left: 100%;
}
.tooltip.left.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.right::before {
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.75rem;
  content: "";
  border-left-width: 0;
  border-color: transparent #000000 transparent transparent;
  right: 100%;
  left: auto;
}
.tooltip.right.align-center::before {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.tooltip.align-top::before {
  bottom: auto;
  top: 10%;
}
.tooltip.align-bottom::before {
  bottom: 10%;
  top: auto;
}
.tooltip.align-left::before {
  left: 10%;
  right: auto;
}
.tooltip.align-right::before {
  left: auto;
  right: 10%;
}

.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

.visible {
  visibility: visible;
}

@media print, screen and (max-width: 39.99875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em) {
  .show-for-medium {
    display: none !important;
  }
}

@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 39.99875em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em) {
  .show-for-large {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
  .show-for-large-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.show-for-dark-mode {
  display: none;
}

.hide-for-dark-mode {
  display: block;
}

@media screen and (prefers-color-scheme: dark) {
  .show-for-dark-mode {
    display: block !important;
  }
  .hide-for-dark-mode {
    display: none !important;
  }
}
.show-for-ie {
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .show-for-ie {
    display: block !important;
  }
  .hide-for-ie {
    display: none !important;
  }
}
.show-for-sticky {
  display: none;
}

.is-stuck .show-for-sticky {
  display: block;
}

.is-stuck .hide-for-sticky {
  display: none;
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
  flex-basis: 0;
  order: 1;
}
.clearfix::after {
  clear: both;
}

.align-left {
  justify-content: flex-start;
}

.align-right {
  justify-content: flex-end;
}

.align-center {
  justify-content: center;
}

.align-justify {
  justify-content: space-between;
}

.align-spaced {
  justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  justify-content: center;
}

.align-top {
  align-items: flex-start;
}

.align-self-top {
  align-self: flex-start;
}

.align-bottom {
  align-items: flex-end;
}

.align-self-bottom {
  align-self: flex-end;
}

.align-middle {
  align-items: center;
}

.align-self-middle {
  align-self: center;
}

.align-stretch {
  align-items: stretch;
}

.align-self-stretch {
  align-self: stretch;
}

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.small-order-1 {
  order: 1;
}

.small-order-2 {
  order: 2;
}

.small-order-3 {
  order: 3;
}

.small-order-4 {
  order: 4;
}

.small-order-5 {
  order: 5;
}

.small-order-6 {
  order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1;
  }
  .medium-order-2 {
    order: 2;
  }
  .medium-order-3 {
    order: 3;
  }
  .medium-order-4 {
    order: 4;
  }
  .medium-order-5 {
    order: 5;
  }
  .medium-order-6 {
    order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1;
  }
  .large-order-2 {
    order: 2;
  }
  .large-order-3 {
    order: 3;
  }
  .large-order-4 {
    order: 4;
  }
  .large-order-5 {
    order: 5;
  }
  .large-order-6 {
    order: 6;
  }
}
.flex-container {
  display: flex;
}

.flex-child-auto {
  flex: 1 1 auto;
}

.flex-child-grow {
  flex: 1 0 auto;
}

.flex-child-shrink {
  flex: 0 1 auto;
}

.flex-dir-row {
  flex-direction: row;
}

.flex-dir-row-reverse {
  flex-direction: row-reverse;
}

.flex-dir-column {
  flex-direction: column;
}

.flex-dir-column-reverse {
  flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex;
  }
  .medium-flex-child-auto {
    flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex;
  }
  .large-flex-child-auto {
    flex: 1 1 auto;
  }
  .large-flex-child-grow {
    flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    flex: 0 1 auto;
  }
  .large-flex-dir-row {
    flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse;
  }
}
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

.leaflet-container img.leaflet-tile {
  /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
  mix-blend-mode: plus-lighter;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(/static/bundles/416d91365b44e4b4f477.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/static/bundles/8f2c4d11474275fbc161.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(/static/bundles/2b3e1faf89f94a483539.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

.leaflet-popup-scrolled {
  overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
.fullscreen-icon {
	background-image: url(/static/bundles/a8f4a7de091d4a05f2de.svg);
	background-size: 26px 52px;
}

.fullscreen-icon.leaflet-fullscreen-on {
	background-position: 0 -26px;
}

.leaflet-touch .fullscreen-icon {
	background-position: 2px 2px;
}

.leaflet-touch .fullscreen-icon.leaflet-fullscreen-on {
	background-position: 2px -24px;
}

/* Safari still needs this vendor-prefix: https://caniuse.com/mdn-css_selectors_fullscreen */
/* stylelint-disable-next-line selector-no-vendor-prefix */
.leaflet-container:-webkit-full-screen {
	width: 100% !important;
	height: 100% !important;
	z-index: 99999;
}

.leaflet-container:fullscreen {
	width: 100% !important;
	height: 100% !important;
	z-index: 99999;
}

.leaflet-pseudo-fullscreen {
	position: fixed !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 99999;
}

:root {
  --global-width: 79rem;
}

/*
 *
 * Map
 *
 */
.map-wrapper .map-container {
  height: 100%;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.25rem;
}
@media print, screen and (max-width: 63.99875em) {
  .map-wrapper .map-container.aspect-ratio-mobile-16 {
    aspect-ratio: 16/9;
  }
}
@media print, screen and (min-width: 40em) {
  .map-wrapper .map-container.aspect-ratio-desktop-16 {
    aspect-ratio: 16/9;
  }
}
@media print, screen and (max-width: 63.99875em) {
  .map-wrapper .map-container.aspect-ratio-mobile-4 {
    aspect-ratio: 4/3;
  }
}
@media print, screen and (min-width: 40em) {
  .map-wrapper .map-container.aspect-ratio-desktop-4 {
    aspect-ratio: 4/3;
  }
}
.map-wrapper .map-container .leaflet-popup-tip-container {
  margin-top: -1px;
}
.map-wrapper .map-container .leaflet-marker-icon {
  cursor: default;
}
.map-wrapper .map-container .leaflet-marker-icon.popupmarker {
  cursor: pointer;
}
.map-wrapper .map-container .map-marker .content {
  display: none;
}
.map-wrapper .map-container .leaflet-popup-pane .leaflet-popup .leaflet-popup-content-wrapper {
  border-radius: 0;
  padding: 1rem 2rem;
  box-shadow: 0 0 1rem 0.1875rem rgba(0, 0, 0, 0.3);
}
.map-wrapper .map-container .leaflet-popup-pane .leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
  margin: 0;
}
.map-wrapper .map-container .leaflet-popup-pane .leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content p {
  font-size: 1rem;
  margin: 2rem 0 1rem;
}
.map-wrapper .map-container .leaflet-popup-pane .leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content a {
  font-size: 1rem;
  color: #ee020a;
  text-transform: uppercase;
}
.map-wrapper .map-container .leaflet-popup-pane .leaflet-popup .leaflet-popup-close-button {
  font-size: 0;
  padding: 0;
  top: 1rem;
  right: 1rem;
}
.map-wrapper .map-container .leaflet-popup-pane .leaflet-popup .leaflet-popup-close-button:after {
  font-size: 1rem;
  color: black;
}
@media print, screen and (max-width: 63.99875em) {
  .map-wrapper.popupopen {
    position: relative;
    z-index: 10000;
  }
  .map-wrapper.popupopen .leaflet-pane {
    transform: none !important;
  }
  .map-wrapper.popupopen .leaflet-popup-pane {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    top: 0;
    left: 0;
  }
  .map-wrapper.popupopen .leaflet-popup-pane .leaflet-popup {
    height: 100% !important;
    width: 100% !important;
    position: static !important;
    transform: none !important;
  }
  .map-wrapper.popupopen .leaflet-popup-pane .leaflet-popup .leaflet-popup-content-wrapper {
    height: 100% !important;
    width: 100% !important;
  }
  .map-wrapper.popupopen .leaflet-bottom.leaflet-right,
  .map-wrapper.popupopen .leaflet-control-container {
    display: none;
  }
}
.map-wrapper .leaflet-bottom.leaflet-right {
  z-index: 998;
}

.leaflet-bar .fullscreen-icon {
  background-position: 0.125rem 0.125rem;
}
:root {
  --global-width: 79rem;
}

:root {
  --global-width: 79rem;
}

form a,
p a {
  font-weight: 600;
}

.grid-x.grid-padding-small {
  margin-left: -1rem;
  margin-right: -1rem;
}
.grid-x.grid-padding-small > .cell {
  padding-left: 1rem;
  padding-right: 1rem;
}

.grid-x.grid-padding-smallest {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.grid-x.grid-padding-smallest > .cell {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.reveal {
  box-shadow: 7px 7px 18px -3px rgba(0, 0, 0, 0.2);
}
.reveal .button-wrap .button {
  margin-bottom: 0;
  padding: 0.5625rem 0.9375rem;
}
.reveal .button-wrap .cancel-button {
  background-color: #ffffff;
}

.button {
  line-height: 1.5;
}

.cell {
  position: relative;
}

select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"48\" height=\"24\" viewBox=\"0 0 48 24\"><path d=\"M23.962,24,1.04,5.126A2.835,2.835,0,0,1,.665,1.107,2.9,2.9,0,0,1,4.72.735L23.961,16.577,43.279.66a2.9,2.9,0,0,1,4.055.369,2.836,2.836,0,0,1-.373,4.019Z\" style=\"fill: rgb%28140, 140, 140%29\" /></svg>");
  background-size: 0.75rem 0.375rem;
}

@font-face {
  font-family: "luftballon-iconfont";
  src: url(/static/bundles/0322b4080b7f87efb3b7.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
.icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "luftballon-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

.icon-arrow-left:before {
  content: "\e910";
}

.icon-arrow-right:before {
  content: "\e911";
}

.icon-minus:before {
  content: "\e90f";
}

.icon-autor:before {
  content: "\e900";
}

.icon-burger:before {
  content: "\e901";
}

.icon-checkbox:before {
  content: "\e902";
}

.icon-close:before {
  content: "\e903";
}

.icon-facebook:before {
  content: "\e904";
}

.icon-instagram:before {
  content: "\e905";
}

.icon-link-arrow:before {
  content: "\e906";
}

.icon-link:before {
  content: "\e907";
}

.icon-lupe-suche:before {
  content: "\e908";
}

.icon-mail:before {
  content: "\e909";
}

.icon-plus:before {
  content: "\e90a";
}

.icon-telefon:before {
  content: "\e90b";
}

.icon-youtube:before {
  content: "\e90c";
}

.icon-uhr:before {
  content: "\e90d";
}

.icon-veranstalter:before {
  content: "\e90e";
}

/* Web Fonts */
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url(/static/bundles/ed41bedf131bc097372a.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url(/static/bundles/0e63c9e707bdfbcda307.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url(/static/bundles/1b0809d519837cb7aad3.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url(/static/bundles/20653d2fac6285bf4dea.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url(/static/bundles/a16d8201b06a03c6c365.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url(/static/bundles/63afadbae2f41f427a56.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url(/static/bundles/dbb97fd982ce1b96b6de.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url(/static/bundles/9572470e485d8e0fd2ad.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url(/static/bundles/110e781b605b33c1b949.ttf) format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: url(/static/bundles/4014c9193f4880e35caa.ttf) format("truetype");
}
:root {
  --global-width: 79rem;
}

.small-spacing-none {
  margin-bottom: 0;
}

.small-spacing-xxs {
  margin-bottom: 0.25rem;
}

.small-spacing-xs {
  margin-bottom: 0.5rem;
}

.small-spacing-s {
  margin-bottom: 1rem;
}

.small-spacing-sm {
  margin-bottom: 1.5rem;
}

.small-spacing-m {
  margin-bottom: 2rem;
}

.small-spacing-l {
  margin-bottom: 4rem;
}

.small-spacing-xl {
  margin-bottom: 8rem;
}

.small-spacing-xxl {
  margin-bottom: 16rem;
}

@media print, screen and (min-width: 40em) {
  .medium-spacing-none {
    margin-bottom: 0;
  }
  .medium-spacing-xxs {
    margin-bottom: 0.25rem;
  }
  .medium-spacing-xs {
    margin-bottom: 0.5rem;
  }
  .medium-spacing-s {
    margin-bottom: 1rem;
  }
  .medium-spacing-sm {
    margin-bottom: 1.5rem;
  }
  .medium-spacing-m {
    margin-bottom: 2rem;
  }
  .medium-spacing-l {
    margin-bottom: 4rem;
  }
  .medium-spacing-xl {
    margin-bottom: 8rem;
  }
  .medium-spacing-xxl {
    margin-bottom: 16rem;
  }
}
@media print, screen and (min-width: 64em) {
  .large-spacing-none {
    margin-bottom: 0;
  }
  .large-spacing-xxs {
    margin-bottom: 0.25rem;
  }
  .large-spacing-xs {
    margin-bottom: 0.5rem;
  }
  .large-spacing-s {
    margin-bottom: 1rem;
  }
  .large-spacing-sm {
    margin-bottom: 1.5rem;
  }
  .large-spacing-m {
    margin-bottom: 2rem;
  }
  .large-spacing-l {
    margin-bottom: 4rem;
  }
  .large-spacing-xl {
    margin-bottom: 8rem;
  }
  .large-spacing-xxl {
    margin-bottom: 16rem;
  }
}
@media screen and (min-width: 75em) {
  .xlarge-spacing-none {
    margin-bottom: 0;
  }
  .xlarge-spacing-xxs {
    margin-bottom: 0.25rem;
  }
  .xlarge-spacing-xs {
    margin-bottom: 0.5rem;
  }
  .xlarge-spacing-s {
    margin-bottom: 1rem;
  }
  .xlarge-spacing-sm {
    margin-bottom: 1.5rem;
  }
  .xlarge-spacing-m {
    margin-bottom: 2rem;
  }
  .xlarge-spacing-l {
    margin-bottom: 4rem;
  }
  .xlarge-spacing-xl {
    margin-bottom: 8rem;
  }
  .xlarge-spacing-xxl {
    margin-bottom: 16rem;
  }
}
@media screen and (min-width: 90em) {
  .xxlarge-spacing-none {
    margin-bottom: 0;
  }
  .xxlarge-spacing-xxs {
    margin-bottom: 0.25rem;
  }
  .xxlarge-spacing-xs {
    margin-bottom: 0.5rem;
  }
  .xxlarge-spacing-s {
    margin-bottom: 1rem;
  }
  .xxlarge-spacing-sm {
    margin-bottom: 1.5rem;
  }
  .xxlarge-spacing-m {
    margin-bottom: 2rem;
  }
  .xxlarge-spacing-l {
    margin-bottom: 4rem;
  }
  .xxlarge-spacing-xl {
    margin-bottom: 8rem;
  }
  .xxlarge-spacing-xxl {
    margin-bottom: 16rem;
  }
}
@media screen and (min-width: 99em) {
  .floating-element-spacing-none {
    margin-bottom: 0;
  }
  .floating-element-spacing-xxs {
    margin-bottom: 0.25rem;
  }
  .floating-element-spacing-xs {
    margin-bottom: 0.5rem;
  }
  .floating-element-spacing-s {
    margin-bottom: 1rem;
  }
  .floating-element-spacing-sm {
    margin-bottom: 1.5rem;
  }
  .floating-element-spacing-m {
    margin-bottom: 2rem;
  }
  .floating-element-spacing-l {
    margin-bottom: 4rem;
  }
  .floating-element-spacing-xl {
    margin-bottom: 8rem;
  }
  .floating-element-spacing-xxl {
    margin-bottom: 16rem;
  }
}
a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
a:hover, a:active {
  text-decoration-thickness: 2px;
}
a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}

:root {
  --global-width: 79rem;
}

.detail .type-indicator {
  display: inline-block;
  color: #ffffff;
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  border-radius: 0.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
.detail .type-indicator.advertorial {
  background-color: #000000;
}
.detail .heading-wrap h1 {
  margin-bottom: 0;
}
.detail .tag {
  margin-right: 0.5rem;
}
.detail .meta-info {
  display: inline-block;
  width: auto;
  font-size: 0.75rem;
  line-height: 1.5rem;
  color: #525252;
}
.detail .meta-info .icon {
  font-size: 0.625rem;
  margin-right: 0.25rem;
}
.detail .meta-info + .meta-info {
  margin-left: 1rem;
}
.detail .info a {
  display: block;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
  color: #525252;
}
.detail .info a .icon {
  font-size: 0.75rem;
  line-height: 1.5rem;
  margin-right: 0.5rem;
}
.detail .info a:hover, .detail .info a:focus {
  color: #ca0068;
}
.detail .infoblock {
  position: relative;
  background-color: #fdf8fa;
  border-radius: 0.25rem;
  margin-bottom: 8rem;
}
.detail .infoblock .rte {
  padding: 2rem;
}
.detail .infoblock .rte p, .detail .infoblock .rte span, .detail .infoblock .rte li {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #525252;
}
.detail .infoblock .rte p {
  margin-bottom: 0.375rem;
}
.detail .infoblock .rte .icon {
  font-size: 0.75rem;
  line-height: 1.5rem;
  margin-right: 0.5rem;
}
.detail .infoblock.two-col-text > .grid-x {
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.detail .infoblock.two-col-text > .grid-x .rte {
  padding-top: 0;
  padding-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .detail .infoblock.two-col-text > .grid-x {
    padding-top: 0;
    padding-bottom: 0;
  }
  .detail .infoblock.two-col-text > .grid-x .rte {
    padding: 2rem;
  }
}
.detail .infoblock.two-col-text .cell {
  max-width: 100%;
}
@media print, screen and (min-width: 40em) {
  .detail .infoblock.two-col-text .cell {
    max-width: calc(50% - 6rem);
  }
}
.detail .infoblock ol,
.detail .infoblock ul {
  list-style: none;
  margin: 0;
}
.detail .infoblock ol li,
.detail .infoblock ul li {
  margin-bottom: 0.25rem;
}
.detail .infoblock a {
  display: inline-block;
  color: #ca0068;
  font-weight: normal;
  text-decoration: none;
}
.detail .infoblock a:hover, .detail .infoblock a:active {
  color: #525252;
}
.detail .infoblock a:focus {
  color: #525252;
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.125rem;
}
.detail .dynamic-mixed-list {
  margin-bottom: 8rem;
}
.detail iframe {
  min-height: 25rem;
}
.detail.article-detail .heading-wrap {
  margin-bottom: 3rem;
}

:root {
  --global-width: 79rem;
}

.floater-is-stuck .floating-element {
  bottom: auto;
}

#floater-sticky-wrapper {
  height: 0 !important;
}

.floating-element {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #ca0068;
  background-color: #f6eaf0;
  position: fixed;
  border-radius: 0.25rem;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  z-index: 1;
  max-width: 8.75rem;
  bottom: 4rem;
  right: 2rem;
  transform: translateY(50%);
}
@media screen and (min-width: 75em) {
  .floating-element {
    bottom: 50%;
    left: auto;
    right: 2rem;
  }
}
@media screen and (min-width: 90em) {
  .floating-element {
    bottom: 50%;
    left: 50%;
    transform: translate(36.5rem, 50%);
    right: auto;
    margin-left: 2rem;
  }
}
@media screen and (min-width: 99em) {
  .floating-element {
    transform: translate(39.5rem, 50%);
  }
}
.floating-element.footer-distance {
  bottom: 9.75rem;
}
@media screen and (min-width: 75em) {
  .floating-element.footer-distance {
    bottom: 50%;
  }
}
.floating-element .action {
  display: block;
  margin-top: 0.25rem;
}
.floating-element .action a {
  color: inherit;
}
.floating-element .action a:hover, .floating-element .action a:active, .floating-element .action a:focus {
  color: #525252;
}
.floating-element .action a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}
.floating-element.purple {
  background: #e4e3f4;
  color: #574ec5;
}
.floating-element.teal {
  background: #bce5e1;
  color: #3e676d;
}

input[type=radio],
input[type=checkbox] {
  margin-bottom: 0;
}
input[type=radio] + label,
input[type=checkbox] + label {
  margin-left: 0.5rem;
}

.form-result {
  text-align: center;
  background: rgba(0, 155, 223, 0.1);
  margin: 2rem auto 3.5rem;
  max-width: 50rem;
  border-radius: 0.25rem;
  padding: 3.5rem 1rem;
}
@media print, screen and (min-width: 40em) {
  .form-result {
    padding: 3.5rem 4rem;
  }
}
@media print, screen and (min-width: 64em) {
  .form-result {
    padding: 3.5rem 6rem;
  }
}
.form-result .headline-wrap span {
  display: block;
}
.form-result .headline-wrap .headline {
  margin-bottom: 0.25rem;
  font-size: 1.75rem;
  line-height: 2rem;
  font-weight: 600;
}
@media print, screen and (min-width: 40em) {
  .form-result .headline-wrap .headline {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.form-result .headline-wrap .subheadline {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
}
.form-result img {
  max-height: 6rem;
  width: auto;
  margin-bottom: 2rem;
}
.form-result a {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #009bdf;
}
.form-result a .icon {
  font-size: 0.75rem;
  margin-right: 0.5rem;
}
.form-result a:hover, .form-result a:focus {
  color: #0056b8;
}
.form-result p {
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.button {
  text-decoration: none;
}
.button:focus, .button:hover {
  background-color: #0056b8;
}
.button.primary.hollow:focus, .button.primary.hollow:hover {
  border-color: #0056b8;
  color: #0056b8;
}

iframe {
  border-radius: 0.25rem;
}

:root {
  --global-width: 79rem;
}

#root .selected-wrap {
  margin: 0 -0.25rem 1rem;
  min-height: 2.75rem;
  display: flex;
  flex-flow: row wrap;
}
#root .selected-wrap .filter-indicator,
#root .selected-wrap .tag {
  font-size: 0.75rem;
  line-height: 1.25rem;
  color: #333333;
  background-color: transparent;
  margin: 0 0.25rem 0.5rem;
  padding: 0.625rem 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.25rem;
  border: none;
  box-shadow: 0 0 0 0.125rem #000000 inset;
  cursor: pointer;
}
#root .selected-wrap .filter-indicator .no-click,
#root .selected-wrap .tag .no-click {
  cursor: auto;
}
#root .selected-wrap .filter-indicator .icon,
#root .selected-wrap .tag .icon {
  font-size: 0.625rem;
  font-style: normal;
  display: inline-block;
  color: #000000;
  margin-left: 0.5rem;
}
#root .selected-wrap .filter-indicator:hover, #root .selected-wrap .filter-indicator:focus,
#root .selected-wrap .tag:hover,
#root .selected-wrap .tag:focus {
  background-color: transparent;
}
#root .button-mocker.yellow,
#root .filter-indicator.yellow,
#root .tag.yellow {
  background-color: #fde8b1;
  box-shadow: none;
}
#root .button-mocker.yellow:hover, #root .button-mocker.yellow:focus,
#root .filter-indicator.yellow:hover,
#root .filter-indicator.yellow:focus,
#root .tag.yellow:hover,
#root .tag.yellow:focus {
  background-color: #fec800;
}
#root .button-mocker.yellow.button-mocker .select2-container .list-heading,
#root .filter-indicator.yellow.button-mocker .select2-container .list-heading,
#root .tag.yellow.button-mocker .select2-container .list-heading {
  background-color: #fde8b1;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #fde8b1;
}
#root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #fde8b1;
}
#root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.yellow.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #fde8b1;
}
#root .button-mocker.pink,
#root .filter-indicator.pink,
#root .tag.pink {
  background-color: #fdcde9;
  box-shadow: none;
}
#root .button-mocker.pink:hover, #root .button-mocker.pink:focus,
#root .filter-indicator.pink:hover,
#root .filter-indicator.pink:focus,
#root .tag.pink:hover,
#root .tag.pink:focus {
  background-color: #ee36a2;
}
#root .button-mocker.pink.button-mocker .select2-container .list-heading,
#root .filter-indicator.pink.button-mocker .select2-container .list-heading,
#root .tag.pink.button-mocker .select2-container .list-heading {
  background-color: #fdcde9;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.pink.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown,
#root .tag.pink.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #fdcde9;
}
#root .button-mocker.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #fdcde9;
}
#root .button-mocker.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.pink.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #fdcde9;
}
#root .button-mocker.purple,
#root .filter-indicator.purple,
#root .tag.purple {
  background-color: #bfbdf9;
  box-shadow: none;
}
#root .button-mocker.purple:hover, #root .button-mocker.purple:focus,
#root .filter-indicator.purple:hover,
#root .filter-indicator.purple:focus,
#root .tag.purple:hover,
#root .tag.purple:focus {
  background-color: #ce82ff;
}
#root .button-mocker.purple.button-mocker .select2-container .list-heading,
#root .filter-indicator.purple.button-mocker .select2-container .list-heading,
#root .tag.purple.button-mocker .select2-container .list-heading {
  background-color: #bfbdf9;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.purple.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown,
#root .tag.purple.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #bfbdf9;
}
#root .button-mocker.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #bfbdf9;
}
#root .button-mocker.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.purple.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #bfbdf9;
}
#root .button-mocker.green,
#root .filter-indicator.green,
#root .tag.green {
  background-color: #c1e9af;
  box-shadow: none;
}
#root .button-mocker.green:hover, #root .button-mocker.green:focus,
#root .filter-indicator.green:hover,
#root .filter-indicator.green:focus,
#root .tag.green:hover,
#root .tag.green:focus {
  background-color: #80d261;
}
#root .button-mocker.green.button-mocker .select2-container .list-heading,
#root .filter-indicator.green.button-mocker .select2-container .list-heading,
#root .tag.green.button-mocker .select2-container .list-heading {
  background-color: #c1e9af;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.green.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown,
#root .tag.green.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #c1e9af;
}
#root .button-mocker.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #c1e9af;
}
#root .button-mocker.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.green.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #c1e9af;
}
#root .button-mocker.teal,
#root .filter-indicator.teal,
#root .tag.teal {
  background-color: #acd7d8;
  box-shadow: none;
}
#root .button-mocker.teal:hover, #root .button-mocker.teal:focus,
#root .filter-indicator.teal:hover,
#root .filter-indicator.teal:focus,
#root .tag.teal:hover,
#root .tag.teal:focus {
  background-color: #00ccc0;
}
#root .button-mocker.teal.button-mocker .select2-container .list-heading,
#root .filter-indicator.teal.button-mocker .select2-container .list-heading,
#root .tag.teal.button-mocker .select2-container .list-heading {
  background-color: #acd7d8;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.teal.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown,
#root .tag.teal.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #acd7d8;
}
#root .button-mocker.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #acd7d8;
}
#root .button-mocker.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.teal.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #acd7d8;
}
#root .button-mocker.red,
#root .filter-indicator.red,
#root .tag.red {
  background-color: #fabbbb;
  box-shadow: none;
}
#root .button-mocker.red:hover, #root .button-mocker.red:focus,
#root .filter-indicator.red:hover,
#root .filter-indicator.red:focus,
#root .tag.red:hover,
#root .tag.red:focus {
  background-color: #f23d3d;
}
#root .button-mocker.red.button-mocker .select2-container .list-heading,
#root .filter-indicator.red.button-mocker .select2-container .list-heading,
#root .tag.red.button-mocker .select2-container .list-heading {
  background-color: #fabbbb;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.red.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown,
#root .tag.red.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #fabbbb;
}
#root .button-mocker.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #fabbbb;
}
#root .button-mocker.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.red.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #fabbbb;
}
#root .button-mocker.gray,
#root .filter-indicator.gray,
#root .tag.gray {
  background-color: #dcdcdc;
  box-shadow: none;
}
#root .button-mocker.gray:hover, #root .button-mocker.gray:focus,
#root .filter-indicator.gray:hover,
#root .filter-indicator.gray:focus,
#root .tag.gray:hover,
#root .tag.gray:focus {
  background-color: #cccccc;
}
#root .button-mocker.gray.button-mocker .select2-container .list-heading,
#root .filter-indicator.gray.button-mocker .select2-container .list-heading,
#root .tag.gray.button-mocker .select2-container .list-heading {
  background-color: #dcdcdc;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.gray.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown,
#root .tag.gray.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #dcdcdc;
}
#root .button-mocker.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #dcdcdc;
}
#root .button-mocker.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.gray.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #dcdcdc;
}
#root .button-mocker.black,
#root .filter-indicator.black,
#root .tag.black {
  background-color: #000000;
  box-shadow: none;
}
#root .button-mocker.black:hover, #root .button-mocker.black:focus,
#root .filter-indicator.black:hover,
#root .filter-indicator.black:focus,
#root .tag.black:hover,
#root .tag.black:focus {
  background-color: #000000;
}
#root .button-mocker.black.button-mocker .select2-container .list-heading,
#root .filter-indicator.black.button-mocker .select2-container .list-heading,
#root .tag.black.button-mocker .select2-container .list-heading {
  background-color: #000000;
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
#root .button-mocker.black.button-mocker .select2-container .select2-dropdown,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown,
#root .tag.black.button-mocker .select2-container .select2-dropdown {
  border: 2px solid #000000;
}
#root .button-mocker.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted, #root .button-mocker.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable,
#root .tag.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted,
#root .tag.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #000000;
}
#root .button-mocker.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus, #root .button-mocker.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover, #root .button-mocker.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus, #root .button-mocker.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .filter-indicator.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover,
#root .tag.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:focus,
#root .tag.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted:hover,
#root .tag.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:focus,
#root .tag.black.button-mocker .select2-container .select2-dropdown .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #000000;
}

:root {
  --global-width: 79rem;
}

.slide-strip .slide-strip-wrapper,
.slider .slider-wrapper {
  position: relative;
}
.slide-strip .slide-strip-wrapper .slide,
.slider .slider-wrapper .slide {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
  -webkit-touch-callout: auto;
  -khtml-user-select: auto;
  visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
.slide-strip .slide-strip-wrapper .slide:first-child,
.slider .slider-wrapper .slide:first-child {
  position: relative;
  visibility: visible;
}
.slide-strip .slide-strip-wrapper .slick-track .slide,
.slider .slider-wrapper .slick-track .slide {
  position: relative;
  visibility: visible;
}
.slide-strip .slide-strip-wrapper[data-auto-height=false i] .slick-track,
.slider .slider-wrapper[data-auto-height=false i] .slick-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
}
.slide-strip .slide-strip-wrapper[data-auto-height=false i] .slick-track .slick-slide,
.slider .slider-wrapper[data-auto-height=false i] .slick-track .slick-slide {
  flex: auto;
  align-self: stretch;
  height: auto;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-y: scroll;
}
body main {
  padding-bottom: 10.625rem;
  min-height: 80vh;
}
body .block-width {
  max-width: 51rem;
  margin-left: auto;
  margin-right: auto;
}

#offCanvas {
  outline: none;
}
:root {
  --global-width: 79rem;
}

form .count {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.875rem;
}
@media print, screen and (min-width: 40em) {
  form .count {
    padding: 0 0 0.75rem 0;
    margin-bottom: 0;
  }
}
form .count .number,
form .count .value,
form .count .change-at {
  color: #525252;
  font-weight: 600;
}
form .count.alert .number,
form .count.alert .value {
  color: #ee020a;
}
form .count .regular + .oversized {
  display: none;
}
form .count .regular.hide + .oversized {
  display: block;
}
@media print, screen and (min-width: 40em) {
  form .align-to-label {
    margin-top: 1.5625rem;
  }
}
form .inline-checkbox {
  vertical-align: top;
  margin-top: 0.125rem;
}
form .inline-checkbox + label {
  vertical-align: top;
}
form input[type=radio]:focus,
form input[type=checkbox]:focus {
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
}
form .radio-with-highlight,
form .checkbox-with-highlight {
  margin-bottom: 1.5rem;
}
form .radio-with-highlight label,
form .checkbox-with-highlight label {
  font-weight: 400;
  margin-right: 0;
}
form .radio-with-highlight label strong,
form .checkbox-with-highlight label strong {
  font-weight: 600;
}
form .radio-with-highlight input + label,
form .checkbox-with-highlight input + label {
  max-width: calc(100% - 2rem);
}
form select {
  font-size: 0.875rem;
}
form select[multiple] {
  min-height: 9.5rem;
}
form textarea {
  min-height: 9.5rem;
}
form legend {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0.3125rem;
  font-weight: 600;
}
form label {
  margin-bottom: 0.3125rem;
}
form label.small-label {
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: 400;
}
form label a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
form label a:hover, form label a:active {
  text-decoration-thickness: 2px;
}
form label a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.25rem;
}
form .trigger-upload {
  margin-right: 1rem;
}
form .upload-wrap {
  text-align: center;
  margin-bottom: 0.5rem;
}
@media print, screen and (min-width: 40em) {
  form .upload-wrap {
    text-align: left;
  }
}
form .upload-pane {
  display: block;
  border-radius: 0.25rem;
  border: 1px dashed #cccccc;
  min-height: 17.5rem;
  background-image: url(/static/bundles/170bddc41a4efc26b10d.svg);
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
form .upload-pane [type=file] {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
}
@media print, screen and (min-width: 40em) {
  form .hidden-counter {
    position: absolute;
    bottom: 1rem;
  }
  form .hidden-counter.button-removed {
    bottom: 2.25rem;
  }
}
form .hidden-content > button, form .hidden-content [data-js-select=addInlineFormset],
form [data-js-select=inlineFormsetManager] > button,
form [data-js-select=inlineFormsetManager] [data-js-select=addInlineFormset] {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.125rem;
  color: #525252;
  font-weight: 600;
  margin-bottom: 1rem;
}
form .hidden-content > button .icon, form .hidden-content [data-js-select=addInlineFormset] .icon,
form [data-js-select=inlineFormsetManager] > button .icon,
form [data-js-select=inlineFormsetManager] [data-js-select=addInlineFormset] .icon {
  background-color: #009bdf;
  display: inline-block;
  height: 1.125rem;
  width: 1.125rem;
  margin-right: 0.5rem;
  border-radius: 1.125rem;
  position: relative;
}
form .hidden-content > button .icon:before, form .hidden-content [data-js-select=addInlineFormset] .icon:before,
form [data-js-select=inlineFormsetManager] > button .icon:before,
form [data-js-select=inlineFormsetManager] [data-js-select=addInlineFormset] .icon:before {
  font-size: 0.625rem;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
form .hidden-content > button .span, form .hidden-content [data-js-select=addInlineFormset] .span,
form [data-js-select=inlineFormsetManager] > button .span,
form [data-js-select=inlineFormsetManager] [data-js-select=addInlineFormset] .span {
  display: inline-block;
}
form .help-text,
form .hidden-counter {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-style: normal;
  margin-top: 0;
}
@media print, screen and (max-width: 39.99875em) {
  form .help-text,
  form .hidden-counter,
  form .count,
  form .hidden-content > button {
    padding: 0;
    position: relative;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
  }
}
form .error label {
  color: #ee020a;
}
form .error input,
form .error select,
form .error textarea {
  border-color: #ee020a;
}
form .submit {
  width: 100%;
}
form [data-js-select=inlineFormset] {
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}
form [data-js-select=inlineFormset]:first-of-type {
  padding-top: 0;
}
form [data-js-select=addInlineFormset] {
  margin-top: 1rem;
}
form .django-ckeditor-widget {
  width: 100%;
}
form .required:after {
  content: " *";
}
form .errorlist {
  color: #ee020a;
  list-style-type: none;
  padding: 0;
}

[data-js-select=district-field] .select2-container {
  margin-bottom: 1.5rem !important;
  width: 100% !important;
}
[data-js-select=district-field] .select2 .selection {
  font-size: 0.9rem !important;
}
[data-js-select=district-field] .select2-container .select2-selection--single {
  height: 2.75rem !important;
}
[data-js-select=district-field] .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 2.75rem !important;
}
[data-js-select=district-field] .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 2.5rem !important;
}

.select2-search--dropdown .select2-search__field {
  margin-bottom: 0 !important;
}

.office-phone-number {
  display: none;
}

.main-rubric-sub-rubric-wrapper {
  display: grid;
}
.main-rubric-sub-rubric-wrapper .cell {
  width: 100%;
}
.main-rubric-sub-rubric-wrapper .main-rubric-sub-rubric-helper {
  display: none;
}
@media print, screen and (min-width: 40em) {
  .main-rubric-sub-rubric-wrapper {
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: auto auto;
    align-items: end;
  }
  .main-rubric-sub-rubric-wrapper .cell {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 1/-1;
  }
  .main-rubric-sub-rubric-wrapper .main-rubric-sub-rubric-helper {
    display: grid;
    grid-row: 2/3;
  }
}
:root {
  --global-width: 79rem;
}

.adress-detail a:focus {
  color: #525252;
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.125rem;
}
.adress-detail .info {
  margin-bottom: 3rem;
}
.adress-detail .info a {
  color: #ca0068;
}
.adress-detail .info a:hover, .adress-detail .info a:active {
  color: #525252;
}
.adress-detail .infoblock {
  background-color: #eef9f7;
}
.adress-detail .infoblock a {
  color: #00756b;
}
.adress-detail .infoblock a:hover, .adress-detail .infoblock a:active {
  color: #525252;
}
.adress-detail .infoblock .slider .slider-dots {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
}
.adress-detail .infoblock .slider .slider-dots li {
  margin-bottom: 0;
}
:root {
  --global-width: 79rem;
}

.background {
  position: relative;
  padding: 2rem;
  border-radius: 0.25rem;
}
.background.background-color.blue {
  background-color: #ecf5fb;
}
.background.background-color.blue > * {
  color: #0056b8;
}
.background.background-color.pink {
  background-color: #fdf8fa;
}
.background.background-color.pink > * {
  color: #ca0068;
}
.background.background-color.green {
  background-color: #f6fcfb;
}
.background.background-color.green > * {
  color: #00756b;
}
.background.background-color.purple {
  background-color: #faf6fb;
}
.background.background-color.purple > * {
  color: #8a1a9c;
}
.background.background-color.violet {
  background-color: #f7f7fc;
}
.background.background-color.violet > * {
  color: #574ec5;
}
.background.background-color.gray {
  background-color: #cccccc;
}
.background.background-color.gray > * {
  color: #000000;
}
.background.background-color.white {
  background-color: #ffffff;
}
.background.background-color.white > * {
  color: #525252;
}
:root {
  --global-width: 79rem;
}

.button.blue {
  background-color: #009bdf;
  color: #ffffff;
}
.button.blue:hover, .button.blue:focus {
  background-color: #0056b8;
  color: #ffffff;
}
.button.blue.hollow {
  background-color: transparent;
  color: #009bdf;
  border-color: #009bdf;
}
.button.blue.hollow:hover, .button.blue.hollow:focus {
  color: #ffffff;
  background-color: #009bdf;
}
.button.pink {
  background-color: #f6e3ec;
  color: #ca0068;
}
.button.pink:hover, .button.pink:focus {
  background-color: #ca0068;
  color: #ffffff;
}
.button.pink.hollow {
  background-color: transparent;
  color: #ca0068;
  border-color: #ca0068;
}
.button.pink.hollow:hover, .button.pink.hollow:focus {
  color: #ffffff;
  background-color: #ca0068;
}
.button.purple {
  background-color: #eee1f0;
  color: #8a1a9c;
}
.button.purple:hover, .button.purple:focus {
  background-color: #8a1a9c;
  color: #ffffff;
}
.button.purple.hollow {
  background-color: transparent;
  color: #8a1a9c;
  border-color: #8a1a9c;
}
.button.purple.hollow:hover, .button.purple.hollow:focus {
  color: #ffffff;
  background-color: #8a1a9c;
}
.button.violet {
  background-color: #e4e3f4;
  color: #574ec5;
}
.button.violet:hover, .button.violet:focus {
  background-color: #574ec5;
  color: #ffffff;
}
.button.violet.hollow {
  background-color: transparent;
  color: #574ec5;
  border-color: #574ec5;
}
.button.violet.hollow:hover, .button.violet.hollow:focus {
  color: #ffffff;
  background-color: #574ec5;
}
.button.green {
  background-color: #dff3f1;
  color: #00756b;
}
.button.green:hover, .button.green:focus {
  background-color: #00756b;
  color: #ffffff;
}
.button.green.hollow {
  background-color: transparent;
  color: #00756b;
  border-color: #00756b;
}
.button.green.hollow:hover, .button.green.hollow:focus {
  color: #ffffff;
  background-color: #00756b;
}
.button.gray {
  background-color: #f6f5f5;
  color: #333333;
}
.button.gray:hover, .button.gray:focus {
  background-color: #333333;
  color: #ffffff;
}
.button.gray.hollow {
  background-color: transparent;
  color: #333333;
  border-color: #333333;
}
.button.gray.hollow:hover, .button.gray.hollow:focus {
  color: #ffffff;
  background-color: #333333;
}
.button:focus {
  outline: 2px solid #525252;
}
.brevo-iframe-container {
  margin-bottom: 2rem;
}
.brevo-iframe-container iframe {
  width: 100%;
  height: 100vh;
  border: none;
}
@charset "UTF-8";
:root {
  --global-width: 79rem;
}

.citation blockquote {
  margin-bottom: 0;
  padding: 0;
  overflow: hidden;
  border-left: 0.3125rem solid #e2e2e2;
  position: relative;
}
.citation blockquote p {
  margin-bottom: 0;
  text-align: left;
  font-style: italic;
  font-size: 1.25rem;
  padding: 0 0.8rem 0.625rem 0.8rem;
  /*&:first-of-type:before {
      content: '»';
      margin-right: .125rem;
  }
  &:last-of-type:after {
      content: '«';
      margin-left: .125rem;
  }*/
}
.citation blockquote cite {
  overflow: hidden;
  display: block;
  font-style: normal;
  font-size: 1rem;
  text-align: right;
  margin-top: 0.5rem;
}
@media print, screen and (min-width: 64em) {
  .citation blockquote cite {
    margin-top: 1rem;
  }
}
:root {
  --global-width: 79rem;
}

.cover-plugin figure {
  position: relative;
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 40em) {
  .cover-plugin figure {
    margin-bottom: 8rem;
  }
}
.cover-plugin img {
  border-radius: 0.25rem;
}
.cover-plugin img + figcaption {
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .cover-plugin img + figcaption {
    position: absolute;
    top: 3rem;
    width: 75%;
    background: rgba(255, 255, 255, 0.75);
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .cover-plugin img + figcaption {
    width: 50%;
  }
}
.cover-plugin img + figcaption p {
  margin-bottom: 0;
  line-height: 1.5rem;
}
.cover-plugin img + figcaption p + p {
  margin-top: 0.625rem;
}
:root {
  --global-width: 79rem;
}

@media print, screen and (min-width: 64em) {
  .column-control.narrow-grid {
    max-width: 59.25rem;
  }
}
:root {
  --global-width: 79rem;
}

.cookie-disclaimer-visible main {
  padding-bottom: 45vh;
}

#cookie-disclaimer-wrap-sticky-wrapper {
  height: 0 !important;
  position: fixed;
  bottom: 0;
  z-index: 1000;
}

.cookie-disclaimer-wrap {
  display: none;
  max-width: 75rem;
  width: 100% !important;
  background-color: #009bdf;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-height: 40vh;
  overflow: auto;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer {
  z-index: 1;
  padding-top: 1rem;
  padding-bottom: 0;
}
.cookie-disclaimer-wrap .cookie-disclaimer .hint-text {
  color: #ffffff;
  font-size: 0.875rem;
  margin-bottom: 0;
}
.cookie-disclaimer-wrap .cookie-disclaimer .hint-text a {
  color: #ffffff;
}
.cookie-disclaimer-wrap .cookie-disclaimer .hint-text a:hover {
  color: #000000;
}
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-must a,
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-all a {
  font-size: 0.875rem;
  color: #ffffff;
  border-color: #ffffff;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-must a,
  .cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-all a {
    width: auto;
  }
}
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-must a:hover, .cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-must a:focus, .cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-must a:active,
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-all a:hover,
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-all a:focus,
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-all a:active {
  color: #009bdf;
  border-color: #ffffff;
  background-color: #ffffff;
}
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-selection {
  margin-top: 1rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-button-selection a {
  font-size: 0.875rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-selector > .accordion > .accordion-item {
  margin: 0;
}
.cookie-disclaimer-wrap .cookie-disclaimer .cookie-selector > .accordion > .accordion-item > .accordion-content {
  padding-top: 1px;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion {
  background: transparent;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item {
  position: relative;
  border: none;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .closed-text {
  display: inline-block;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .open-text {
  display: none;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item.is-active .closed-text {
  display: none;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item.is-active .open-text {
  display: inline-block;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item.is-active > .accordion-title:before {
  transform: rotate(-90deg);
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-title {
  color: #000000;
  border: none;
  margin-right: 4.5rem;
  font-size: 0.875rem;
  padding-left: 2.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-decoration: none;
  border-radius: 0.25rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-title:hover, .cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-title:focus {
  background: transparent;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-title.outer-accordion-title {
  color: #ffffff;
  padding: 0;
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 2.5rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-title.outer-accordion-title:hover {
  color: #000000;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-title:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "luftballon-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  content: "\e911";
  transform: rotate(90deg);
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  font-size: 1.5rem;
  height: 1.5rem;
  width: 1.5rem;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .switch {
  position: absolute;
  right: 0;
  top: 3px;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .switch .switch-input:focus + .switch-paddle {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-content {
  border: none;
  padding-left: calc(32px);
  padding-right: calc(32px);
  margin-left: calc(-32px);
  margin-right: calc(-32px);
  background: transparent;
  color: #000000;
  background-color: #ffffff;
}
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-content .rte,
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-content .rte p,
.cookie-disclaimer-wrap .cookie-disclaimer .accordion .accordion-item .accordion-content .rte ul li {
  font-size: 0.875rem;
}
:root {
  --global-width: 79rem;
}

.cookie-selector-inline .group-title {
  font-size: 1rem;
  font-weight: bold;
}
.cookie-selector-inline .rte > strong {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: inline-block;
}
.cookie-selector-inline .cookie-list ul li + li {
  margin-top: 1rem;
}
.cookie-selector-inline .cookie-list ul li strong {
  font-size: 1rem;
  line-height: 1.25;
}
.cookie-selector-inline .cookie-list ul li p {
  font-size: 1rem;
  line-height: 1.5;
}
.cookie-selector-inline .cookie-button-selection a {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.cookie-selector-inline .cookie-button-selection a:before {
  content: "";
}
.cookie-selector-inline .switch .switch-input:focus + .switch-paddle {
  outline: 2px solid #000000;
  outline-offset: 2px;
}
:root {
  --global-width: 79rem;
}

.dynamic-mixed-list .headline-wrap {
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .headline-wrap {
    margin-bottom: 3rem;
  }
}
.dynamic-mixed-list .headline-wrap .headline > * {
  margin: 0;
}
.dynamic-mixed-list .headline-wrap a {
  font-size: 0.75rem;
  line-height: 1;
}
.dynamic-mixed-list .headline-wrap a .icon {
  font-size: 1.125rem;
  margin-right: 0.25rem;
}
.dynamic-mixed-list .selection-wrap .search-wrap {
  position: relative;
}
.dynamic-mixed-list .selection-wrap .search-wrap button {
  position: absolute;
  top: 0;
  right: 0.5rem;
  height: 2.5rem;
  width: 2.5625rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.dynamic-mixed-list .selection-wrap .search-wrap button .icon {
  font-size: 1rem;
  color: #333333;
}
.dynamic-mixed-list .selection-wrap .search-wrap button .icon:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dynamic-mixed-list .selection-wrap .search-wrap button:hover, .dynamic-mixed-list .selection-wrap .search-wrap button:focus {
  background: #cccccc;
  cursor: pointer;
}
.dynamic-mixed-list .selection-wrap .search-wrap button:focus {
  outline: 2px solid #525252;
  outline-offset: -2px;
}
.dynamic-mixed-list .selection-wrap .filter-button-wrap {
  margin-left: -1.5rem;
}
.dynamic-mixed-list .selection-wrap .filter-button-wrap .filter-button {
  text-transform: uppercase;
  padding: 0;
  background-color: transparent;
  color: #333333;
  font-size: 0.75rem;
  line-height: 1.5rem;
  font-weight: 600;
}
.dynamic-mixed-list .selection-wrap .add-content {
  width: 100%;
  margin-top: -0.5rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .dynamic-mixed-list .selection-wrap .add-content {
    width: auto;
    margin-left: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .selection-wrap .add-content {
    margin-top: -1rem;
  }
}
.dynamic-mixed-list .selection-wrap .add-content .icon {
  margin-left: 0.5rem;
}
.dynamic-mixed-list .selection-wrap .add-content.purple {
  background: #e4e3f4;
  color: #574ec5;
}
.dynamic-mixed-list .selection-wrap .add-content.purple:hover, .dynamic-mixed-list .selection-wrap .add-content.purple:focus {
  background: #665ec7;
  color: #ffffff;
}
.dynamic-mixed-list .selection-wrap .add-content.teal {
  background: #bce5e1;
  color: #3e676d;
}
.dynamic-mixed-list .selection-wrap .add-content.teal:hover, .dynamic-mixed-list .selection-wrap .add-content.teal:focus {
  background: #3c7f85;
  color: #ffffff;
}
.dynamic-mixed-list .filter-panel {
  display: none;
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .filter-panel {
    margin-top: 1rem;
  }
}
.dynamic-mixed-list .filter-panel.show {
  display: block;
}
.dynamic-mixed-list .filter-selector {
  background-color: #f6f5f5;
  padding: 2rem 1rem 1rem;
  border-radius: 0.25rem;
  margin-bottom: 2rem;
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .filter-selector {
    padding: 2rem 6rem 1rem;
    margin-bottom: 3rem;
  }
}
.dynamic-mixed-list .filter-selector .button,
.dynamic-mixed-list .filter-selector .button-mocker,
.dynamic-mixed-list .filter-selector .input-mocker,
.dynamic-mixed-list .filter-selector input {
  height: 2.5rem;
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  width: 100%;
}
.dynamic-mixed-list .filter-selector label {
  line-height: 1.375rem;
  margin-bottom: 0.3125rem;
  margin-bottom: 0.3125rem;
  font-size: 0.875rem;
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .filter-selector label {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
  }
}
.dynamic-mixed-list .filter-selector input,
.dynamic-mixed-list .filter-selector textarea {
  font-size: 0.875rem;
  font-weight: normal;
}
.dynamic-mixed-list .filter-selector input:focus {
  outline: 2px solid #525252;
  border-color: transparent;
}
.dynamic-mixed-list .filter-selector select {
  height: 2.5rem;
  margin-bottom: 1rem;
}
.dynamic-mixed-list .filter-selector select:focus {
  outline: 2px solid #525252;
  border-color: transparent;
}
.dynamic-mixed-list .filter-selector .trigger-search {
  color: #ffffff;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: normal;
}
.dynamic-mixed-list .filter-selector .toggle-button {
  cursor: pointer;
  height: 2.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #525252;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .filter-selector .toggle-button {
    margin-left: 1rem;
  }
}
.dynamic-mixed-list .filter-selector .toggle-button:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "luftballon-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  content: "\e90a";
  height: 1.125rem;
  width: 1.125rem;
  font-size: 0.75rem;
  margin-right: 0.75rem;
  border-radius: 1em;
  background-color: #009bdf;
  color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.dynamic-mixed-list .filter-selector .toggle-button[aria-expanded=true] .closed {
  display: none;
}
.dynamic-mixed-list .filter-selector .toggle-button[aria-expanded=true] .open {
  display: inline-block;
}
.dynamic-mixed-list .filter-selector .toggle-button[aria-expanded=true]:before {
  content: "\e90f";
}
.dynamic-mixed-list .filter-selector .toggle-button[aria-expanded=false] {
  position: relative;
}
.dynamic-mixed-list .filter-selector .toggle-button[aria-expanded=false] .closed {
  display: inline-block;
}
.dynamic-mixed-list .filter-selector .toggle-button[aria-expanded=false] .open {
  display: none;
}
.dynamic-mixed-list .filter-selector .toggle-button:hover, .dynamic-mixed-list .filter-selector .toggle-button:active, .dynamic-mixed-list .filter-selector .toggle-button:focus {
  color: #009bdf;
}
.dynamic-mixed-list .filter-selector .toggle-button:focus {
  outline: 2px solid #525252;
  outline-offset: 0.25rem;
}
.dynamic-mixed-list .filter-selector .button-mocker,
.dynamic-mixed-list .filter-selector .input-mocker {
  border-radius: 0.25rem;
  position: relative;
  cursor: pointer;
  width: 100%;
}
.dynamic-mixed-list .filter-selector .button-mocker select,
.dynamic-mixed-list .filter-selector .input-mocker select {
  color: #8c8c8c;
  max-height: 2.5rem;
}
.dynamic-mixed-list .filter-selector .button-mocker > label,
.dynamic-mixed-list .filter-selector .input-mocker > label {
  margin: 0;
  font-size: 0.875rem;
  color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 100%;
  text-align: center;
  font-weight: 400;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-selection__rendered,
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection__rendered {
  display: none;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container--open .select2-selection,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container--open .select2-selection {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-selection,
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection {
  height: 2.5rem;
  padding: 0.625rem 0.875rem;
  font-weight: 600;
  border: none;
  background-color: transparent;
  text-align: center;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-selection .select2-search,
.dynamic-mixed-list .filter-selector .button-mocker .select2-selection .select2-search__field,
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection .select2-search,
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection .select2-search__field {
  margin: -0.125rem 0 0;
  height: 1.25rem;
  color: #525252;
  font-weight: 600;
  resize: none;
  white-space: nowrap;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-results__group,
.dynamic-mixed-list .filter-selector .input-mocker .select2-results__group {
  display: inline-block;
  margin-left: -1.5rem;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-results__option,
.dynamic-mixed-list .filter-selector .input-mocker .select2-results__option {
  font-size: 0.75rem;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-results__option:before,
.dynamic-mixed-list .filter-selector .input-mocker .select2-results__option:before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  margin-right: 0.75rem;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container {
  width: 100%;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-dropdown,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-dropdown {
  border: 2px solid #525252;
  border-radius: 0.25rem;
  margin-top: 0.5rem;
  width: calc(100vw - 7rem) !important;
  transform: translateY(0.5rem);
}
@media print, screen and (min-width: 64em) {
  .dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-dropdown,
  .dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-dropdown {
    position: absolute;
    width: 200% !important;
    left: -50%;
    right: auto;
  }
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-dropdown .select2-search,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-dropdown .select2-search {
  display: none;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-dropdown .select2-results__option,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-dropdown .select2-results__option {
  color: #525252;
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 0.75rem;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-dropdown .list-heading,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-dropdown .list-heading {
  margin: 0;
  padding: 0.5rem 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--highlighted, .dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--highlighted.select2-results__option--selectable,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--highlighted,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f6f5f5;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--highlighted:focus, .dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--highlighted:hover, .dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--highlighted.select2-results__option--selectable:focus, .dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--highlighted.select2-results__option--selectable:hover,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--highlighted:focus,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--highlighted:hover,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--highlighted.select2-results__option--selectable:focus,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--highlighted.select2-results__option--selectable:hover {
  background-color: #f6f5f5;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--selected,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--selected {
  background-color: #ffffff;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container .select2-results__option--selected:before,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-results__option--selected:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "luftballon-iconfont" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  content: "\e902";
  font-size: 0.75rem;
  display: inline-block;
}
.dynamic-mixed-list .filter-selector .button-mocker .select2-container.select2-container--focus,
.dynamic-mixed-list .filter-selector .input-mocker .select2-container.select2-container--focus {
  outline: 2px solid #525252;
  border-radius: 3px;
}
.dynamic-mixed-list .filter-selector .input-mocker {
  width: 100%;
}
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
}
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection .select2-search,
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection .select2-search__field {
  margin-top: -0.25rem;
  font-size: 0.875rem;
  font-weight: normal;
}
.dynamic-mixed-list .filter-selector .input-mocker .select2-selection__arrow {
  display: none;
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .dynamic-mixed-list .filter-selector .input-mocker .select2-container .select2-dropdown {
    width: 100% !important;
  }
}
@media print, screen and (min-width: 40em) and (max-width: 63.99875em) {
  .dynamic-mixed-list .filter-wrap > .cell:nth-child(even) .select2-dropdown {
    transform: translate(calc(-50% - 0.5rem), 0.5rem);
  }
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles {
  display: flex;
  flex-flow: row wrap;
  height: auto !important;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .grid-sizer {
  display: none;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile {
  position: static !important;
  margin-top: 2.625rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile .tile-title {
  width: 100%;
  position: absolute;
  margin-top: -2.625rem;
  color: #000000;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.33;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .img-wrap ~ .content-wrap {
  padding-top: 1.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .content-wrap {
  padding: 3rem 0.5rem 0;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .content-wrap .title {
  color: #000000;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .content-wrap .info .publishing-date-events {
  position: absolute;
  margin: 0;
  top: 0;
  right: 0;
  padding: 0.125rem 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #ffffff;
  background-color: #d6006e;
  font-size: 0.875rem;
  font-weight: 600;
  max-width: min-content;
  text-align: center;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .content-wrap .info .publishing-date-events .icon {
  display: none;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .content-wrap .tags-wrap.grid-x {
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .content-wrap .tags-wrap.grid-x .tag {
  display: inline-block;
  color: #ffffff;
  background-color: #d6006e;
  font-size: 0.6875rem;
  line-height: 1.5;
  font-weight: 700;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event img {
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center top;
  height: 100%;
  width: 100%;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event footer {
  justify-content: flex-end;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .detail-link {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.5rem 1rem 1.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .detail-link:focus {
  padding: 0.5rem 0.375rem 0.875rem 1.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.event .type-indicator {
  display: none;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .content-wrap {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .detail-link {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.5rem 0.5rem 1rem 1.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .detail-link:focus {
  padding: 0.5rem 0.375rem 0.875rem 1.5rem;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .detail-link .icon {
  margin: 0;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .slick-list {
  overflow: visible;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .type-indicator {
  padding: 0.125rem 0.25rem;
  border-top-right-radius: 0.25rem;
  color: #ffffff;
  background-color: #d6006e;
  font-size: 0.875rem;
  line-height: 1.125rem;
  font-weight: 600;
  max-width: min-content;
  text-align: center;
}
.dynamic-mixed-list[data-list-type=events] .tiles-wrap .tiles .tile.tip .tile-wrap {
  overflow: visible;
}
.dynamic-mixed-list:not([data-list-type=events]) .tile-title {
  display: none;
}
.dynamic-mixed-list[data-load-more=false] .load-more-wrap {
  display: none;
}

.tiles-wrap .tiles {
  margin: 0 -1rem;
}
.tiles-wrap .tiles .grid-sizer,
.tiles-wrap .tiles .tile {
  width: 100%;
}
@media print, screen and (min-width: 40em) {
  .tiles-wrap .tiles .grid-sizer,
  .tiles-wrap .tiles .tile {
    width: 50%;
  }
}
@media print, screen and (min-width: 64em) {
  .tiles-wrap .tiles .grid-sizer,
  .tiles-wrap .tiles .tile {
    width: 25%;
  }
}
.tiles-wrap .tiles .tile {
  display: inline-block;
  margin-bottom: 2rem;
  padding: 0 1rem;
  vertical-align: top;
}
.tiles-wrap .tiles .tile img {
  min-width: 100%;
  height: auto;
}
.tiles-wrap .tiles .tile .tile-wrap {
  border-radius: 0.25rem;
  border-bottom-left-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 8px 2px;
  overflow: hidden;
  position: relative;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap {
  padding: 1.5rem 1.5rem 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .title {
  font-size: 1.125rem;
  line-height: 1.5rem;
  margin-bottom: 0.25rem;
  font-weight: bold;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap p {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap p + p {
  margin-top: 0.625rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .info ul {
  margin-top: 1.5rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .info .city {
  margin-top: 0.25rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .info .publishing-date {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-align: left;
  font-style: normal;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .info .publishing-date-events {
  font-size: 0.875rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .icon {
  font-size: calc(1em - 2px);
  margin-right: 0.25rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap a {
  color: #525252;
  font-size: 0.75rem;
  line-height: 1.5rem;
  font-weight: normal;
  text-decoration: none;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap a:focus {
  color: #525252;
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.125rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap a.url-link {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap ul, .tiles-wrap .tiles .tile .tile-wrap .content-wrap ol {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap ul li, .tiles-wrap .tiles .tile .tile-wrap .content-wrap ol li {
  margin: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .tags-wrap.grid-x {
  margin-top: 0.375rem;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .tags-wrap.grid-x > .cell {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.tiles-wrap .tiles .tile .tile-wrap .content-wrap .tags-wrap.grid-x .tag {
  display: inline-block;
  font-size: 0.6875rem;
  line-height: 1.25rem;
  padding: 0.625rem 0.75rem;
  margin-bottom: 0.5rem;
  border-radius: 0.25rem;
}
.tiles-wrap .tiles .tile .tile-wrap .type-indicator {
  color: #ffffff;
  padding: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  border-top-right-radius: 0.25rem;
  font-weight: 600;
  margin-bottom: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .type-indicator.free {
  border-radius: 0.25rem;
  position: absolute;
}
.tiles-wrap .tiles .tile .tile-wrap .type-indicator.free.left {
  left: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .type-indicator.free.right {
  right: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .type-indicator.free.top {
  top: 0;
}
.tiles-wrap .tiles .tile .tile-wrap .type-indicator.free.bottom {
  bottom: 0;
}
.tiles-wrap .tiles .tile .tile-wrap footer .detail-link {
  padding: 0.5rem 1.5rem 0.5rem 0.5rem;
  font-size: 1rem;
  line-height: 1rem;
}
.tiles-wrap .tiles .tile .tile-wrap footer .detail-link:hover, .tiles-wrap .tiles .tile .tile-wrap footer .detail-link:active, .tiles-wrap .tiles .tile .tile-wrap footer .detail-link:focus {
  color: #525252;
}
.tiles-wrap .tiles .tile .tile-wrap footer .detail-link:focus {
  padding: 0.5rem 1.375rem 0.375rem 0.5rem;
  color: #525252;
  outline: 2px solid #525252;
  border-radius: 0.125rem;
  margin-right: 0.125rem;
  margin-bottom: 0.125rem;
  outline-offset: 0;
}
.tiles-wrap .tiles .tile .tile-wrap.slick-slider .slide {
  position: relative;
}
.tiles-wrap .tiles .tile .tile-wrap.slick-slider .slick-dots {
  position: absolute;
  bottom: 0;
  right: 3rem;
  left: 3rem;
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0.25rem 1rem 0.75rem;
}
.tiles-wrap .tiles .tile .tile-wrap.slick-slider .slick-dots li + li {
  margin-left: 0.5rem;
}
.tiles-wrap .tiles .tile .tile-wrap.slick-slider .slick-dots li button {
  display: block;
  height: 0.875rem;
  width: 0.875rem;
  border: 1px solid #525252;
  background-color: transparent;
  border-radius: 0.875rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.tiles-wrap .tiles .tile .tile-wrap.slick-slider .slick-dots li.slick-active button, .tiles-wrap .tiles .tile .tile-wrap.slick-slider .slick-dots li:hover button, .tiles-wrap .tiles .tile .tile-wrap.slick-slider .slick-dots li:focus button {
  background-color: #525252;
}
.tiles-wrap .tiles .tile .tile-wrap:not(.slick-initialized) .slide + .slide {
  display: none;
}
.tiles-wrap .tiles .tile.article .tile-wrap, .tiles-wrap .tiles .tile.advertorial .tile-wrap {
  background-color: #faf6fb;
}
.tiles-wrap .tiles .tile.article .type-indicator, .tiles-wrap .tiles .tile.advertorial .type-indicator {
  background-color: #8a1a9c;
}
.tiles-wrap .tiles .tile.article .content-wrap a, .tiles-wrap .tiles .tile.advertorial .content-wrap a {
  color: #8a1a9c;
}
.tiles-wrap .tiles .tile.article .content-wrap a:hover, .tiles-wrap .tiles .tile.article .content-wrap a:focus, .tiles-wrap .tiles .tile.advertorial .content-wrap a:hover, .tiles-wrap .tiles .tile.advertorial .content-wrap a:focus {
  color: #525252;
}
.tiles-wrap .tiles .tile.article .detail-link, .tiles-wrap .tiles .tile.advertorial .detail-link {
  color: #8a1a9c;
}
.tiles-wrap .tiles .tile.article .tag, .tiles-wrap .tiles .tile.advertorial .tag {
  background: #eee1f0;
  color: #8a1a9c;
}
.tiles-wrap .tiles .tile.advertorial .type-indicator {
  background-color: #000000;
  border-radius: 0.25rem;
  position: absolute;
  top: 0;
  right: 0;
}
.tiles-wrap .tiles .tile.advertorial footer {
  justify-content: flex-end;
}
.tiles-wrap .tiles .tile.classified .tile-wrap {
  background-color: #f7f7fc;
}
.tiles-wrap .tiles .tile.classified .type-indicator {
  background-color: #665ec7;
}
.tiles-wrap .tiles .tile.classified .content-wrap a {
  color: #665ec7;
}
.tiles-wrap .tiles .tile.classified .content-wrap a:hover, .tiles-wrap .tiles .tile.classified .content-wrap a:focus {
  color: #525252;
}
.tiles-wrap .tiles .tile.classified .tag {
  background: #e4e3f4;
  color: #574ec5;
}
.tiles-wrap .tiles .tile.address .tile-wrap {
  background-color: #f6fcfb;
}
.tiles-wrap .tiles .tile.address .tile-wrap .type-indicator {
  background-color: #3c7f85;
}
.tiles-wrap .tiles .tile.address .tile-wrap .content-wrap a {
  color: #3c7f85;
}
.tiles-wrap .tiles .tile.address .tile-wrap .content-wrap a:hover, .tiles-wrap .tiles .tile.address .tile-wrap .content-wrap a:focus {
  color: #525252;
}
.tiles-wrap .tiles .tile.address .tile-wrap .detail-link {
  color: #3c7f85;
}
.tiles-wrap .tiles .tile.address .tile-wrap .tag {
  background: #dff3f1;
  color: #00756b;
}
.tiles-wrap .tiles .tile.event .tile-wrap {
  background-color: #fdf8fa;
}
.tiles-wrap .tiles .tile.event .tile-wrap .type-indicator {
  background-color: #d6006e;
}
.tiles-wrap .tiles .tile.event .tile-wrap .content-wrap a {
  color: #d6006e;
}
.tiles-wrap .tiles .tile.event .tile-wrap .content-wrap a:hover, .tiles-wrap .tiles .tile.event .tile-wrap .content-wrap a:focus {
  color: #525252;
}
.tiles-wrap .tiles .tile.event .tile-wrap .detail-link {
  color: #d6006e;
}
.tiles-wrap .tiles .tile.event .tile-wrap .tag {
  background: #f6e3ec;
  color: #ca0068;
}
.tiles-wrap .tiles .tile.ad .tile-wrap {
  border-radius: 0.25rem;
}
.tiles-wrap .tiles .tile.ad .tile-wrap .type-indicator {
  background-color: #000000;
}
.tiles-wrap .tiles .tile.tip .tile-wrap {
  border-radius: 0.25rem;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .type-indicator {
  background-color: #ee020a;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .detail-link {
  z-index: 2;
  padding: 0.5rem 1.5rem 0.75rem 0.5rem;
  color: #ee020a;
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 1rem;
  line-height: 1rem;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .detail-link .icon {
  font-size: inherit;
  line-height: inherit;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .content-wrap {
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  padding: 0.75rem 1.5rem 2.5rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .content-wrap .title,
.tiles-wrap .tiles .tile.tip .tile-wrap .content-wrap .text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .content-wrap .title {
  -webkit-line-clamp: 2;
}
.tiles-wrap .tiles .tile.tip .tile-wrap .content-wrap .text {
  -webkit-line-clamp: 5;
}
:root {
  --global-width: 79rem;
}

.event-detail .info a {
  text-decoration: none;
  color: #525252;
  font-weight: normal;
}
.event-detail .info a:hover, .event-detail .info a:active {
  color: #ca0068;
  text-decoration: underline;
}
.event-detail .info a:focus {
  color: #525252;
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
  border-radius: 0.125rem;
}
.event-detail .info .link-inverted {
  margin-bottom: 2rem;
  color: #ca0068;
}
.event-detail .info .link-inverted:hover {
  color: #525252;
  text-decoration: none;
}
.event-detail .infoblock {
  background-color: #fdf8fa;
}
:root {
  --global-width: 79rem;
}

/**********
For Headline font-sizes, line-heights and margin-bottom, please go to $header-styles (line 147 of _foundation_setting.scss)
**********/
h1,
.h1 {
  font-style: normal;
  font-weight: 600;
  display: block;
}

h2,
.h2 {
  font-style: normal;
  font-weight: 600;
  display: block;
}

h3,
.h3 {
  font-style: normal;
  font-weight: 600;
  display: block;
}

h4,
.h4 {
  font-style: normal;
  font-weight: 600;
  display: block;
}
:root {
  --global-width: 79rem;
}

.hint-wrap .hint {
  color: #525252 !important;
  font-size: 1.125rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  text-align: center;
}
@media print, screen and (min-width: 40em) {
  .hint-wrap .hint {
    padding: 0 5rem;
  }
}
:root {
  --global-width: 79rem;
}

.image-plugin figure {
  margin-bottom: 2rem;
}
.image-plugin img {
  --aspect-ratio: auto;
  --object-fit: cover;
  aspect-ratio: var(--aspect-ratio);
  width: 100%;
  object-fit: var(--object-fit);
  border-radius: 0.25rem;
}
.image-plugin img + figcaption {
  color: #525252;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 0.5rem;
}
:root {
  --global-width: 79rem;
}

.ad-slot {
  --ad-gutter: 2rem;
  --ad-width: calc((100vw - (var(--ad-gutter) * 2) - var(--global-width)) / 2);
  --ad-max-width: 18.75rem;
  display: grid;
  width: calc(100vw - var(--ad-gutter) * 2);
  justify-items: center;
}
.ad-slot .ad-grid {
  display: inline-grid;
  grid-auto-flow: column;
  max-height: 100%;
}
.ad-slot .ad-indicator {
  position: absolute;
  top: 0;
  background-color: #000;
  color: #fff;
  padding: 0.5rem;
  font-size: 0.8rem;
}
.ad-slot .luftballon-ad-content {
  position: relative;
}
.ad-slot .luftballon-ad-content .luftballon-ad-content-image-wrapper {
  display: block;
  border: 0.2rem solid transparent;
  margin: -0.2rem;
}
.ad-slot .luftballon-ad-content:focus {
  outline: none;
}
.ad-slot .luftballon-ad-content:focus .luftballon-ad-content-image-wrapper {
  border-color: #009bdf;
}
.ad-slot .luftballon-ad-link {
  display: flex;
}
.ad-slot .luftballon-ad-content-image {
  display: block;
  border-radius: 0.25rem;
  border-top-right-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 8px 2px;
  overflow: visible;
}

.ad-slot .ad-indicator {
  left: 0;
  z-index: 1;
}

@media print, screen and (min-width: 64em) {
  .ad-slot + .ad-slot {
    margin-left: var(--ad-gutter);
  }
}
.ad-slot + .ad-slot .ad-indicator {
  right: 0;
  left: auto;
}

@media screen and (min-width: 90em) {
  .ad-slot {
    position: fixed;
    top: var(--header-offset);
    bottom: 1rem;
    max-width: var(--ad-width);
    display: inline-block;
    overflow: hidden;
    width: 100%;
    margin-right: inherit;
    transition: top 0.3s ease-in-out;
  }
  .ad-slot .ad-grid {
    display: grid;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    grid-auto-flow: row;
    grid-template-rows: minmax(auto, 100%);
  }
  .luftballon-ad-content-image {
    max-height: 50vh;
    margin-bottom: 0;
  }
  .ad-slot {
    right: auto;
    left: auto;
    translate: calc(var(--ad-width) * -1 - var(--ad-gutter) * 2);
    margin-left: var(--ad-gutter);
  }
  .ad-slot + .ad-slot {
    translate: none;
  }
  .ad-slot + .ad-slot {
    left: auto;
    right: 1.5rem;
  }
  .ad-slot + .ad-slot + .ad-slot {
    right: auto;
    left: 1.5rem;
    top: calc(50vh + var(--header-offset));
    margin-left: auto;
    margin-top: var(--ad-gutter);
  }
  .ad-slot + .ad-slot + .ad-slot .ad-grid {
    grid-template-columns: 1fr minmax(auto, var(--ad-max-width));
  }
  .ad-slot + .ad-slot + .ad-slot .ad-grid .luftballon-ad-link {
    grid-column: 2/3;
    justify-self: end;
  }
  .ad-slot + .ad-slot + .ad-slot + .ad-slot {
    left: auto;
    right: 1.5rem;
    top: calc(50vh + var(--header-offset));
    margin-right: auto;
    margin-top: var(--ad-gutter);
  }
  .ad-slot + .ad-slot + .ad-slot + .ad-slot .ad-grid {
    grid-template-columns: minmax(auto, var(--ad-max-width));
  }
  .ad-slot + .ad-slot + .ad-slot + .ad-slot .ad-grid .luftballon-ad-link {
    grid-column: 1/2;
    justify-self: start;
  }
  .ad-slot .ad-grid {
    grid-template-columns: 1fr minmax(auto, var(--ad-max-width));
  }
  .ad-slot .luftballon-ad-link {
    grid-column: 2/3;
    justify-self: end;
  }
  .ad-slot + .ad-slot .ad-grid {
    grid-template-columns: minmax(auto, var(--ad-max-width)) 1fr;
  }
  .ad-slot + .ad-slot .luftballon-ad-link {
    grid-column: 1/2;
    justify-self: start;
  }
}
.google-ad-unit {
  min-width: 12.5rem;
  width: 100%;
}
:root {
  --global-width: 79rem;
}

.pagefooter {
  position: absolute;
  width: 100%;
  bottom: 0;
  background-color: transparent;
  margin: 1.5rem 0;
}
@media print, screen and (min-width: 64em) {
  .pagefooter {
    margin: 1.5rem 0 0.5rem;
  }
}
.pagefooter .footer-nav {
  display: inline-block;
  width: auto;
  margin-bottom: 1rem;
}
.pagefooter .footer-nav .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2rem;
}
@media print, screen and (min-width: 64em) {
  .pagefooter .footer-nav .menu {
    column-gap: 1rem;
    justify-content: flex-start;
  }
}
.pagefooter * {
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-transform: uppercase;
  color: #8c8c8c;
}
.pagefooter a {
  color: #525252;
  padding: 0;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1.125rem;
  font-weight: normal;
}
.pagefooter a:hover, .pagefooter a:focus {
  color: #009bdf;
}
.pagefooter a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}
:root {
  --global-width: 79rem;
}

.pageheader {
  background-color: #419ad9;
  margin-bottom: 3rem;
}
@media print, screen and (min-width: 40em) {
  .pageheader {
    margin-bottom: 4rem;
  }
}
.pageheader .top-nav {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
  padding: 0.625rem 0;
  margin-bottom: 0;
}
.pageheader .top-nav ul {
  list-style-type: none;
  margin-bottom: 0;
}
.pageheader .top-nav ul li + li {
  margin-left: 1rem;
}
.pageheader .top-nav ul li, .pageheader .top-nav ul a {
  color: #ffffff;
  display: inline-block;
  line-height: 1rem;
  font-weight: normal;
}
.pageheader .top-nav ul li:focus, .pageheader .top-nav ul li:hover, .pageheader .top-nav ul a:focus, .pageheader .top-nav ul a:hover {
  color: #0056b8;
}
.pageheader .top-nav ul li:focus, .pageheader .top-nav ul a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}
.pageheader .main-head {
  background-color: #419ad9;
  width: 100%;
  padding-top: 0.625rem;
  padding-bottom: 0.75rem;
  box-shadow: 0 0.375rem 0.5rem 0 rgba(0, 0, 0, 0.17);
  transition: padding linear 0.3s;
}
@media print, screen and (min-width: 64em) {
  .pageheader .main-head {
    padding-top: 1.25rem;
    padding-bottom: 1rem;
  }
}
.pageheader .main-head a:has(.logo) {
  display: block;
}
.pageheader .main-head .logo {
  height: auto;
  width: 2.5rem;
  margin: 0 0.5rem 0 0;
  transition: width linear 0.3s;
}
@media print, screen and (min-width: 40em) {
  .pageheader .main-head .logo {
    width: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .pageheader .main-head .logo {
    margin: 0 0.5rem 0.375rem 0;
    width: 3.5rem;
  }
}
.pageheader .main-head .claim {
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.1875rem;
  padding: 0 0.5rem 0 0.125rem;
  margin-bottom: -0.25rem;
  text-transform: uppercase;
  font-weight: 300;
  transition: all linear 0.3s;
}
@media print, screen and (min-width: 40em) {
  .pageheader .main-head .claim {
    padding: 0 0.5rem 0 0.25rem;
  }
}
@media print, screen and (min-width: 64em) {
  .pageheader .main-head .claim {
    font-size: 1rem;
    line-height: 1.25rem;
    padding: 0 0.5rem 0.375rem 0.5rem;
  }
}
.pageheader .main-head .menu-wrap {
  align-self: center;
}
@media print, screen and (min-width: 64em) {
  .pageheader .main-head .menu-wrap {
    align-self: flex-end;
  }
}
.pageheader .main-head .main-nav {
  max-width: 48rem;
}
.pageheader .main-head .main-nav .menu {
  --animate-duration: 0.3s;
  display: inline-block;
  width: auto;
  transition: width linear 0.3s;
}
.pageheader .main-head .main-nav .menu li {
  display: inline-block;
  background-color: transparent;
}
.pageheader .main-head .main-nav .menu li + li {
  margin-left: 2rem;
}
.pageheader .main-head .main-nav .menu li a {
  padding: 0;
  border-radius: 0.25rem;
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  font-weight: normal;
}
@media print, screen and (min-width: 64em) {
  .pageheader .main-head .main-nav .menu li a {
    font-size: 1rem;
    line-height: normal;
  }
}
.pageheader .main-head .main-nav .menu li a:focus, .pageheader .main-head .main-nav .menu li a:hover {
  color: #0056b8;
}
.pageheader .main-head .main-nav .menu li a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.25rem;
}
.pageheader .main-head .main-nav .menu li.selected a, .pageheader .main-head .main-nav .menu li.ancestor a {
  padding: 0.125rem 0.5rem;
  background-color: #3078c5;
}
.pageheader .main-head .main-nav .menu li.selected a:focus, .pageheader .main-head .main-nav .menu li.selected a:hover, .pageheader .main-head .main-nav .menu li.ancestor a:focus, .pageheader .main-head .main-nav .menu li.ancestor a:hover {
  color: #ffffff;
}
.pageheader .main-head .main-nav .off-canvas-open {
  --animate-duration: 0.3s;
  padding: 0;
  color: #ffffff;
  font-size: 1.5rem;
  width: 1.5rem;
  line-height: 1;
  margin-bottom: 0;
  overflow: visible;
}
.pageheader .main-head .main-nav .off-canvas-open .icon {
  overflow: visible;
  vertical-align: top;
}
.pageheader .main-head .main-nav .off-canvas-open:focus, .pageheader .main-head .main-nav .off-canvas-open:hover {
  background-color: transparent;
  color: #0056b8;
}
.pageheader .main-head .main-nav .off-canvas-open:focus {
  outline-offset: 0.25rem;
}
.pageheader .is-sticky .logo {
  width: 2rem;
}
.pageheader .is-sticky .claim {
  font-size: 0.75rem;
  line-height: 1.125rem;
  padding-left: 0.375rem;
}
.pageheader .is-sticky .menu-wrap {
  align-self: center;
}
.pageheader .is-sticky .menu-wrap .main-nav > * {
  display: inline-block;
}
.pageheader .hidden-menu {
  display: none !important;
}

#offCanvas {
  padding: 2rem;
}
#offCanvas ul, #offCanvas ol {
  list-style-type: none;
  margin: 0;
}
#offCanvas .close-button {
  right: auto;
  top: auto;
  font-size: 1rem;
  line-height: 1rem;
  margin-bottom: 2rem;
}
#offCanvas .close-button .icon-close {
  background: url(/static/bundles/9ceb9928c527caedd04a.svg);
  height: 1rem;
  width: 1rem;
  background-size: contain;
}
#offCanvas .offcanvas-social-nav {
  margin-bottom: 2rem;
}
#offCanvas .offcanvas-social-nav li + li {
  margin-left: 1.5rem;
}
#offCanvas .offcanvas-social-nav a {
  color: #0056b8;
  font-weight: normal;
}
#offCanvas .offcanvas-social-nav a:hover, #offCanvas .offcanvas-social-nav a:focus {
  color: #525252;
}
#offCanvas .offcanvas-social-nav a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}
#offCanvas .offcanvas-main-nav li {
  margin-bottom: 1.5rem;
}
#offCanvas .offcanvas-main-nav li.selected a, #offCanvas .offcanvas-main-nav li.ancestor a {
  color: #0056b8;
}
#offCanvas .offcanvas-main-nav li a {
  font-size: 1rem;
  line-height: 1.5rem;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: #525252;
}
#offCanvas .offcanvas-main-nav li a:hover, #offCanvas .offcanvas-main-nav li a:focus {
  color: #0056b8;
}
#offCanvas .offcanvas-main-nav li a:focus {
  outline: 2px solid #525252;
  outline-offset: 0.25rem;
  border-radius: 0.25rem;
}
#offCanvas ~ .js-off-canvas-overlay {
  /* You may need coordinates to adjust the pointer
  for example, the custom cursor is circular and you want
  the middle to be where you click */
  cursor: url(/static/bundles/9ceb9928c527caedd04a.svg) 16 16, pointer;
}
:root {
  --global-width: 79rem;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slider {
  max-width: 100%;
  position: relative;
}
.slider .slick-list {
  transition: height 0.125s linear;
}
.slider .slick-list.draggable {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider .image-plugin figure {
  margin: 0;
}
.slider .slide-text {
  display: flex;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  color: #525252;
}
.slider .slide-text.white {
  color: #ffffff;
}
.slider .slide-text.white .slide-text-wrap {
  background-color: rgba(0, 0, 0, 0.7);
}
.slider .slide-text.top {
  align-items: flex-start;
}
.slider .slide-text.middle {
  align-items: center;
}
.slider .slide-text.bottom {
  align-items: flex-end;
}
.slider .slide-text.left {
  justify-content: flex-start;
}
.slider .slide-text.center {
  justify-content: center;
}
.slider .slide-text.right {
  justify-content: flex-end;
}
.slider .slide-text .slide-text-wrap {
  margin: 3.375rem 0;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100%;
}
.slider .slide-text .slide-text-wrap .title {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  .slider .slide-text .slide-text-wrap .title {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
.slider .slide-text .slide-text-wrap p {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .slider .slide-text .slide-text-wrap {
    width: auto;
    max-width: 75%;
    margin: 3rem 0;
  }
}
@media print, screen and (min-width: 64em) {
  .slider .slide-text .slide-text-wrap {
    max-width: 50%;
  }
}
.slider .slider-dots {
  margin: 0 auto;
  max-width: calc(50% + 64px / 2);
}
@media print, screen and (min-width: 64em) {
  .slider .slider-dots {
    max-width: 28rem;
    width: 50%;
  }
}
.slider .slick-dots {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  margin: 1.5rem 0 0 0;
}
.slider .slick-dots li + li {
  margin-left: 1rem;
}
.slider .slick-dots li button {
  display: block;
  height: 1.5rem;
  width: 1.5rem;
  border: 1px solid #525252;
  background-color: transparent;
  border-radius: 0.875rem;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.slider .slick-dots li button:focus {
  outline: 2px solid #525252;
  outline-offset: 0.125rem;
}
.slider .slick-dots li.slick-active button, .slider .slick-dots li:hover button, .slider .slick-dots li:focus button {
  background-color: #525252;
}
.slider .slide-content-wrap {
  height: 100%;
}
.grid-x .slider .slick-list {
  margin: 0 -32px;
}
.slider .slick-list .slide-content-wrap {
  padding: 0 32px;
}

.slider-wrapper .slider-body {
  position: relative;
}
.slider-wrapper .slider-body button.slick-arrow {
  --arrow-width: 4rem;
  --arrow-height: 4rem;
  position: absolute;
  cursor: pointer;
  font-size: 2.5rem;
  border-radius: 0;
  width: var(--arrow-width);
  height: var(--arrow-height);
  top: calc(50% - var(--arrow-height) / 2);
  background: rgba(255, 255, 255, 0.75);
  color: #525252;
  opacity: 1;
}
.slider-wrapper .slider-body button.slick-arrow.slick-prev {
  left: 0;
  z-index: 1;
}
@media print, screen and (min-width: 64em) {
  .slider-wrapper .slider-body button.slick-arrow.slick-prev {
    left: 1.5rem;
  }
}
.slider-wrapper .slider-body button.slick-arrow.slick-next {
  right: 0;
}
@media print, screen and (min-width: 64em) {
  .slider-wrapper .slider-body button.slick-arrow.slick-next {
    right: 1.5rem;
  }
}
.slider-wrapper .slider-body button.slick-arrow i {
  line-height: 1.5;
}
.slider-wrapper .slider-body button.slick-arrow.slick-disabled {
  visibility: hidden;
}
.slider-wrapper .slider-body button.slick-arrow:hover, .slider-wrapper .slider-body button.slick-arrow:active, .slider-wrapper .slider-body button.slick-arrow:focus {
  color: black;
}
.slider-wrapper .slider-body button.slick-arrow:focus {
  outline: 2px solid #525252;
  border-radius: 2px;
}
.slider-wrapper .slider-body img {
  margin: 0 auto;
}
.slider .slider-wrapper:hover:not([class~=hide-slider-arrows]) .slider-body button.slick-arrow, .touch-device .slider-wrapper:not([class~=hide-slider-arrows]) .slider-body button.slick-arrow {
  opacity: 1;
}
.slider-wrapper.hide-slider-arrows .slider-body button.slick-arrow {
  opacity: 0;
}
@media print, screen and (max-width: 39.99875em) {
  .slider-wrapper.hide-slider-arrows-for-touch .slider-body button.slick-arrow {
    display: none !important;
    opacity: 0;
  }
}

.touch-device .slider .slider-wrapper:not([class~=hide-slider-arrows]):hover .slider-body button.slick-arrow {
  opacity: 1;
}

.touch-device .slider .slider-wrapper.hide-slider-arrows-for-touch:hover .slider-body button.slick-arrow {
  opacity: 0;
}

@media print, screen and (min-width: 64em) {
  .grid-container .slider-wrapper .slider-body button.slick-arrow.slick-prev {
    left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .grid-container .slider-wrapper .slider-body button.slick-arrow.slick-next {
    right: 0;
  }
}

.slider-body.slick-slider:not(.slick-dotted) .slick-track {
  margin-left: auto;
  margin-right: auto;
  transform: none !important;
}
:root {
  --global-width: 79rem;
}

.teaser-gen {
  margin-bottom: 4rem;
}
@media print, screen and (min-width: 40em) {
  .teaser-gen {
    margin-bottom: 6rem;
  }
}
.teaser-gen.classifieds .teaser .teaser-wrap {
  background: #eef9f7;
}
@media print, screen and (min-width: 40em) {
  .teaser-gen .teaser {
    margin-bottom: 2rem;
  }
}
.teaser-gen .teaser .teaser-wrap {
  background: #665ec7;
}
.teaser-gen .teaser .content-wrap {
  padding: 0.5rem 1rem 1rem;
}
.teaser-gen .teaser .content-wrap .title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  line-height: 1.875rem;
  font-weight: 600;
}
.teaser-gen .teaser .content-wrap p {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.teaser-gen .teaser .content-wrap a {
  font-size: 0.75rem;
}
/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
:root {
  --global-width: 79rem;
}

.cke_editable {
  padding: 1rem;
}

.text-editor,
.cke_editable {
  margin-bottom: 2rem;
}
.text-editor .bold,
.cke_editable .bold {
  font-weight: 700;
}
.text-editor .italic,
.cke_editable .italic {
  font-style: italic;
}
.text-editor:last-child,
.cke_editable:last-child {
  margin-bottom: 0;
}
.text-editor ul,
.cke_editable ul {
  margin-bottom: 1.5rem;
}
.text-editor ul li,
.cke_editable ul li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
:root {
  --global-width: 79rem;
}

.video-extern-container {
  margin-top: 1rem;
}
.video-extern-container [data-src] {
  filter: none;
}

.consent-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #cccccc;
  border-radius: 0.25rem;
}
.consent-overlay .activate-button {
  flex: 2;
  cursor: pointer;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.consent-overlay .activate-button svg {
  height: 2rem;
  margin-bottom: 0.2rem;
}
@media print, screen and (min-width: 64em) {
  .consent-overlay .activate-button svg {
    height: 3rem;
    margin-bottom: 1rem;
  }
}
.consent-overlay .activate-button i {
  display: block;
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
.consent-overlay .activate-button .description {
  font-size: 0.75rem;
  line-height: 1.5;
}
@media print, screen and (min-width: 64em) {
  .consent-overlay .activate-button .description {
    font-size: 1rem;
  }
}
.consent-overlay .activate-button:focus {
  outline: none;
}
