@charset "UTF-8";

/*!
 * 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 {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}

/* Attention seekers  */

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

  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

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

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

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

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

.animate__flash {
  animation-name: flash;
}

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

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

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

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

.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}

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

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(0.95, 1.05, 1);
  }

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

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

.animate__rubberBand {
  animation-name: rubberBand;
}

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}

.animate__shakeX {
  animation-name: shakeX;
}

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

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(0, -10px, 0);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}

.animate__shakeY {
  animation-name: shakeY;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

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

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

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

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

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

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

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

.animate__tada {
  animation-name: tada;
}

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

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

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

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

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

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

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

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

.animate__wobble {
  animation-name: wobble;
}

@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */

@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInDown {
  animation-name: backInDown;
}

@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInLeft {
  animation-name: backInLeft;
}

@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInRight {
  animation-name: backInRight;
}

@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */

@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutDown {
  animation-name: backOutDown;
}

@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutLeft {
  animation-name: backOutLeft;
}

@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutRight {
  animation-name: backOutRight;
}

@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}

.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */

@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }

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

.animate__bounceIn {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}

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

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

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

.animate__bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

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

.animate__bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

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

.animate__bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

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

.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */

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

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

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

.animate__bounceOut {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

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

.animate__bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

.animate__bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

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

.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
}

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

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

.animate__fadeInDown {
  animation-name: fadeInDown;
}

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

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

.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

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

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

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

.animate__fadeInRight {
  animation-name: fadeInRight;
}

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

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

.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

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

.animate__fadeInUp {
  animation-name: fadeInUp;
}

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

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

.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}

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

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

.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}

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

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

.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}

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

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

.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}

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

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

.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.animate__fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.animate__fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.animate__fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.animate__fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}

@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}

@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}

@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

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

.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */

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

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

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

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

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

.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__flipOutX {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

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

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

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

.animate__flipOutY {
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/* Lightspeed */

@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
  }

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

.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(5deg);
  }

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

.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

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

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

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

/* Rotating entrances */

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

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

.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}

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

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

.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}

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

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

.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}

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

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

.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}

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

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

.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */

@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

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

.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */

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

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

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

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

.animate__hinge {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

.animate__rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.animate__rollOut {
  animation-name: rollOut;
}

/* Zooming entrances */

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

  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.animate__zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.animate__zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.animate__zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.animate__zoomOut {
  animation-name: zoomOut;
}

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

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

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

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

.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}

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

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

.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}

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

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

/* Sliding entrances */

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

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

.animate__slideInDown {
  animation-name: slideInDown;
}

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

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

.animate__slideInLeft {
  animation-name: slideInLeft;
}

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

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

.animate__slideInRight {
  animation-name: slideInRight;
}

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

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

.animate__slideInUp {
  animation-name: slideInUp;
}

/* Sliding exits */

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

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

.animate__slideOutDown {
  animation-name: slideOutDown;
}

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

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

.animate__slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.animate__slideOutRight {
  animation-name: slideOutRight;
}

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

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

.animate__slideOutUp {
  animation-name: slideOutUp;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */

.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/

.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */

.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: grabbing;
}

/* :active to override grabbing cursor */

.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */

.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */

.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/

.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */

.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10;
  /* always overlap slide content */
  pointer-events: none;
  /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */

.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */

.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/

div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/

.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/

.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */

.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */

.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/

.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */

.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/

.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*

  "1 of 10" counter

*/

.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/*! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com
 */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: #e5e7eb;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Lato, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

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

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}

::-webkit-date-and-time-value{
  min-height: 1.5em;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}

select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple]{
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox']{
  border-radius: 0px;
}

[type='radio']{
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}

[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

.container{
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

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

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

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

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

.form-checkbox,.form-radio{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

.form-radio{
  border-radius: 100%;
}

.form-checkbox:focus,.form-radio:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

.form-checkbox:checked,.form-radio:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.form-radio:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.form-checkbox:checked:hover,.form-checkbox:checked:focus,.form-radio:checked:hover,.form-radio:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}

/*! purgecss start ignore */

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */

html{
  font-family:sans-serif;
  line-height:1.15;
  -ms-text-size-adjust:100%;
  -webkit-text-size-adjust:100%
}

body{
  margin:0
}

article,aside,footer,header,nav,section{
  display:block
}

h1,.heading-1{
  font-size:2em;
  margin:.67em 0
}

figcaption,figure{
  display:block
}

figure{
  margin:1em 40px
}

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

main{
  display:block
}

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

a{
  background-color:rgba(0,0,0,0);
  -webkit-text-decoration-skip:objects
}

a:active,a:hover{
  outline-width:0
}

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

b,strong{
  font-weight:inherit;
  font-weight:bolder
}

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

dfn{
  font-style:italic
}

mark{
  background-color:#ff0;
  color:#000
}

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
}

audio,video{
  display:inline-block
}

audio:not([controls]){
  display:none;
  height:0
}

img{
  border-style:none
}

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

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

button{
  overflow:visible
}

button,select{
  text-transform:none
}

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

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

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

input{
  overflow:visible
}

[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-cancel-button,[type=search]::-webkit-search-decoration{
  -webkit-appearance:none
}

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

fieldset{
  border:1px solid silver;
  margin:0 2px;
  padding:.35em .625em .75em
}

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

progress{
  display:inline-block;
  vertical-align:baseline
}

textarea{
  overflow:auto
}

details{
  display:block
}

summary{
  display:list-item
}

menu{
  display:block
}

canvas{
  display:inline-block
}

template{
  display:none
}

[hidden]{
  display:none
}

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

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

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

body{
  margin:0;
  padding:0;
  background:#fff;
  font-family:"Nunito Sans",Helvetica,Roboto,Arial,sans-serif;
  font-weight:normal;
  line-height:1.5;
  color:#000;
  -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:3px
}

select{
  box-sizing:border-box;
  width:100%;
  border-radius:3px
}

.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;
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
  border:0;
  border-radius:3px;
  background:rgba(0,0,0,0);
  line-height:1;
  cursor:auto
}

[data-whatinput=mouse] button{
  outline:0
}

pre{
  overflow:auto
}

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

.is-visible{
  display:block !important
}

.is-hidden{
  display:none !important
}

.row{
  max-width:90rem;
  margin-right:auto;
  margin-left:auto
}

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

.row::after{
  clear:both
}

.row.collapse>.column,.row.collapse>.columns{
  padding-right:0;
  padding-left:0
}

.row .row{
  margin-right:-1.25rem;
  margin-left:-1.25rem
}

@media print, screen and (min-width: 40em){
  .row .row{
    margin-right:-1.25rem;
    margin-left:-1.25rem
  }
}

@media print, screen and (min-width: 64em){
  .row .row{
    margin-right:-1.25rem;
    margin-left:-1.25rem
  }
}

.row .row.collapse{
  margin-right:0;
  margin-left:0
}

.row.expanded{
  max-width:none
}

.row.expanded .row{
  margin-right:auto;
  margin-left:auto
}

.row:not(.expanded) .row{
  max-width:none
}

.row.gutter-small>.column,.row.gutter-small>.columns{
  padding-right:1.25rem;
  padding-left:1.25rem
}

.row.gutter-medium>.column,.row.gutter-medium>.columns{
  padding-right:1.25rem;
  padding-left:1.25rem
}

.column,.columns{
  width:100%;
  float:left;
  padding-right:1.25rem;
  padding-left:1.25rem
}

@media print, screen and (min-width: 40em){
  .column,.columns{
    padding-right:1.25rem;
    padding-left:1.25rem
  }
}

.column:last-child:not(:first-child),.columns:last-child:not(:first-child){
  float:right
}

.column.end:last-child:last-child,.end.columns:last-child:last-child{
  float:left
}

.column.row.row,.row.row.columns{
  float:none
}

.row .column.row.row,.row .row.row.columns{
  margin-right:0;
  margin-left:0;
  padding-right:0;
  padding-left:0
}

.small-1{
  width:8.3333333333%
}

.small-push-1{
  position:relative;
  left:8.3333333333%
}

.small-pull-1{
  position:relative;
  left:-8.3333333333%
}

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

.small-2{
  width:16.6666666667%
}

.small-push-2{
  position:relative;
  left:16.6666666667%
}

.small-pull-2{
  position:relative;
  left:-16.6666666667%
}

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

.small-3{
  width:25%
}

.small-push-3{
  position:relative;
  left:25%
}

.small-pull-3{
  position:relative;
  left:-25%
}

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

.small-4{
  width:33.3333333333%
}

.small-push-4{
  position:relative;
  left:33.3333333333%
}

.small-pull-4{
  position:relative;
  left:-33.3333333333%
}

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

.small-5{
  width:41.6666666667%
}

.small-push-5{
  position:relative;
  left:41.6666666667%
}

.small-pull-5{
  position:relative;
  left:-41.6666666667%
}

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

.small-6{
  width:50%
}

.small-push-6{
  position:relative;
  left:50%
}

.small-pull-6{
  position:relative;
  left:-50%
}

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

.small-7{
  width:58.3333333333%
}

.small-push-7{
  position:relative;
  left:58.3333333333%
}

.small-pull-7{
  position:relative;
  left:-58.3333333333%
}

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

.small-8{
  width:66.6666666667%
}

.small-push-8{
  position:relative;
  left:66.6666666667%
}

.small-pull-8{
  position:relative;
  left:-66.6666666667%
}

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

.small-9{
  width:75%
}

.small-push-9{
  position:relative;
  left:75%
}

.small-pull-9{
  position:relative;
  left:-75%
}

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

.small-10{
  width:83.3333333333%
}

.small-push-10{
  position:relative;
  left:83.3333333333%
}

.small-pull-10{
  position:relative;
  left:-83.3333333333%
}

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

.small-11{
  width:91.6666666667%
}

.small-push-11{
  position:relative;
  left:91.6666666667%
}

.small-pull-11{
  position:relative;
  left:-91.6666666667%
}

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

.small-12{
  width:100%
}

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

.small-up-1>.column,.small-up-1>.columns{
  float:left;
  width:100%
}

.small-up-1>.column:nth-of-type(1n),.small-up-1>.columns:nth-of-type(1n){
  clear:none
}

.small-up-1>.column:nth-of-type(1n+1),.small-up-1>.columns:nth-of-type(1n+1){
  clear:both
}

.small-up-1>.column:last-child,.small-up-1>.columns:last-child{
  float:left
}

.small-up-2>.column,.small-up-2>.columns{
  float:left;
  width:50%
}

.small-up-2>.column:nth-of-type(1n),.small-up-2>.columns:nth-of-type(1n){
  clear:none
}

.small-up-2>.column:nth-of-type(2n+1),.small-up-2>.columns:nth-of-type(2n+1){
  clear:both
}

.small-up-2>.column:last-child,.small-up-2>.columns:last-child{
  float:left
}

.small-up-3>.column,.small-up-3>.columns{
  float:left;
  width:33.3333333333%
}

.small-up-3>.column:nth-of-type(1n),.small-up-3>.columns:nth-of-type(1n){
  clear:none
}

.small-up-3>.column:nth-of-type(3n+1),.small-up-3>.columns:nth-of-type(3n+1){
  clear:both
}

.small-up-3>.column:last-child,.small-up-3>.columns:last-child{
  float:left
}

.small-up-4>.column,.small-up-4>.columns{
  float:left;
  width:25%
}

.small-up-4>.column:nth-of-type(1n),.small-up-4>.columns:nth-of-type(1n){
  clear:none
}

.small-up-4>.column:nth-of-type(4n+1),.small-up-4>.columns:nth-of-type(4n+1){
  clear:both
}

.small-up-4>.column:last-child,.small-up-4>.columns:last-child{
  float:left
}

.small-up-5>.column,.small-up-5>.columns{
  float:left;
  width:20%
}

.small-up-5>.column:nth-of-type(1n),.small-up-5>.columns:nth-of-type(1n){
  clear:none
}

.small-up-5>.column:nth-of-type(5n+1),.small-up-5>.columns:nth-of-type(5n+1){
  clear:both
}

.small-up-5>.column:last-child,.small-up-5>.columns:last-child{
  float:left
}

.small-up-6>.column,.small-up-6>.columns{
  float:left;
  width:16.6666666667%
}

.small-up-6>.column:nth-of-type(1n),.small-up-6>.columns:nth-of-type(1n){
  clear:none
}

.small-up-6>.column:nth-of-type(6n+1),.small-up-6>.columns:nth-of-type(6n+1){
  clear:both
}

.small-up-6>.column:last-child,.small-up-6>.columns:last-child{
  float:left
}

.small-up-7>.column,.small-up-7>.columns{
  float:left;
  width:14.2857142857%
}

.small-up-7>.column:nth-of-type(1n),.small-up-7>.columns:nth-of-type(1n){
  clear:none
}

.small-up-7>.column:nth-of-type(7n+1),.small-up-7>.columns:nth-of-type(7n+1){
  clear:both
}

.small-up-7>.column:last-child,.small-up-7>.columns:last-child{
  float:left
}

.small-up-8>.column,.small-up-8>.columns{
  float:left;
  width:12.5%
}

.small-up-8>.column:nth-of-type(1n),.small-up-8>.columns:nth-of-type(1n){
  clear:none
}

.small-up-8>.column:nth-of-type(8n+1),.small-up-8>.columns:nth-of-type(8n+1){
  clear:both
}

.small-up-8>.column:last-child,.small-up-8>.columns:last-child{
  float:left
}

.small-collapse>.column,.small-collapse>.columns{
  padding-right:0;
  padding-left:0
}

.small-collapse .row{
  margin-right:0;
  margin-left:0
}

.expanded.row .small-collapse.row{
  margin-right:0;
  margin-left:0
}

.small-uncollapse>.column,.small-uncollapse>.columns{
  padding-right:1.25rem;
  padding-left:1.25rem
}

.small-centered{
  margin-right:auto;
  margin-left:auto
}

.small-centered,.small-centered:last-child:not(:first-child){
  float:none;
  clear:both
}

.small-uncentered,.small-push-0,.small-pull-0{
  position:static;
  float:left;
  margin-right:0;
  margin-left:0
}

@media print, screen and (min-width: 40em){
  .medium-1{
    width:8.3333333333%
  }

  .medium-push-1{
    position:relative;
    left:8.3333333333%
  }

  .medium-pull-1{
    position:relative;
    left:-8.3333333333%
  }

  .medium-offset-0{
    margin-left:0%
  }

  .medium-2{
    width:16.6666666667%
  }

  .medium-push-2{
    position:relative;
    left:16.6666666667%
  }

  .medium-pull-2{
    position:relative;
    left:-16.6666666667%
  }

  .medium-offset-1{
    margin-left:8.3333333333%
  }

  .medium-3{
    width:25%
  }

  .medium-push-3{
    position:relative;
    left:25%
  }

  .medium-pull-3{
    position:relative;
    left:-25%
  }

  .medium-offset-2{
    margin-left:16.6666666667%
  }

  .medium-4{
    width:33.3333333333%
  }

  .medium-push-4{
    position:relative;
    left:33.3333333333%
  }

  .medium-pull-4{
    position:relative;
    left:-33.3333333333%
  }

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

  .medium-5{
    width:41.6666666667%
  }

  .medium-push-5{
    position:relative;
    left:41.6666666667%
  }

  .medium-pull-5{
    position:relative;
    left:-41.6666666667%
  }

  .medium-offset-4{
    margin-left:33.3333333333%
  }

  .medium-6{
    width:50%
  }

  .medium-push-6{
    position:relative;
    left:50%
  }

  .medium-pull-6{
    position:relative;
    left:-50%
  }

  .medium-offset-5{
    margin-left:41.6666666667%
  }

  .medium-7{
    width:58.3333333333%
  }

  .medium-push-7{
    position:relative;
    left:58.3333333333%
  }

  .medium-pull-7{
    position:relative;
    left:-58.3333333333%
  }

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

  .medium-8{
    width:66.6666666667%
  }

  .medium-push-8{
    position:relative;
    left:66.6666666667%
  }

  .medium-pull-8{
    position:relative;
    left:-66.6666666667%
  }

  .medium-offset-7{
    margin-left:58.3333333333%
  }

  .medium-9{
    width:75%
  }

  .medium-push-9{
    position:relative;
    left:75%
  }

  .medium-pull-9{
    position:relative;
    left:-75%
  }

  .medium-offset-8{
    margin-left:66.6666666667%
  }

  .medium-10{
    width:83.3333333333%
  }

  .medium-push-10{
    position:relative;
    left:83.3333333333%
  }

  .medium-pull-10{
    position:relative;
    left:-83.3333333333%
  }

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

  .medium-11{
    width:91.6666666667%
  }

  .medium-push-11{
    position:relative;
    left:91.6666666667%
  }

  .medium-pull-11{
    position:relative;
    left:-91.6666666667%
  }

  .medium-offset-10{
    margin-left:83.3333333333%
  }

  .medium-12{
    width:100%
  }

  .medium-offset-11{
    margin-left:91.6666666667%
  }

  .medium-up-1>.column,.medium-up-1>.columns{
    float:left;
    width:100%
  }

  .medium-up-1>.column:nth-of-type(1n),.medium-up-1>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-1>.column:nth-of-type(1n+1),.medium-up-1>.columns:nth-of-type(1n+1){
    clear:both
  }

  .medium-up-1>.column:last-child,.medium-up-1>.columns:last-child{
    float:left
  }

  .medium-up-2>.column,.medium-up-2>.columns{
    float:left;
    width:50%
  }

  .medium-up-2>.column:nth-of-type(1n),.medium-up-2>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-2>.column:nth-of-type(2n+1),.medium-up-2>.columns:nth-of-type(2n+1){
    clear:both
  }

  .medium-up-2>.column:last-child,.medium-up-2>.columns:last-child{
    float:left
  }

  .medium-up-3>.column,.medium-up-3>.columns{
    float:left;
    width:33.3333333333%
  }

  .medium-up-3>.column:nth-of-type(1n),.medium-up-3>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-3>.column:nth-of-type(3n+1),.medium-up-3>.columns:nth-of-type(3n+1){
    clear:both
  }

  .medium-up-3>.column:last-child,.medium-up-3>.columns:last-child{
    float:left
  }

  .medium-up-4>.column,.medium-up-4>.columns{
    float:left;
    width:25%
  }

  .medium-up-4>.column:nth-of-type(1n),.medium-up-4>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-4>.column:nth-of-type(4n+1),.medium-up-4>.columns:nth-of-type(4n+1){
    clear:both
  }

  .medium-up-4>.column:last-child,.medium-up-4>.columns:last-child{
    float:left
  }

  .medium-up-5>.column,.medium-up-5>.columns{
    float:left;
    width:20%
  }

  .medium-up-5>.column:nth-of-type(1n),.medium-up-5>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-5>.column:nth-of-type(5n+1),.medium-up-5>.columns:nth-of-type(5n+1){
    clear:both
  }

  .medium-up-5>.column:last-child,.medium-up-5>.columns:last-child{
    float:left
  }

  .medium-up-6>.column,.medium-up-6>.columns{
    float:left;
    width:16.6666666667%
  }

  .medium-up-6>.column:nth-of-type(1n),.medium-up-6>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-6>.column:nth-of-type(6n+1),.medium-up-6>.columns:nth-of-type(6n+1){
    clear:both
  }

  .medium-up-6>.column:last-child,.medium-up-6>.columns:last-child{
    float:left
  }

  .medium-up-7>.column,.medium-up-7>.columns{
    float:left;
    width:14.2857142857%
  }

  .medium-up-7>.column:nth-of-type(1n),.medium-up-7>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-7>.column:nth-of-type(7n+1),.medium-up-7>.columns:nth-of-type(7n+1){
    clear:both
  }

  .medium-up-7>.column:last-child,.medium-up-7>.columns:last-child{
    float:left
  }

  .medium-up-8>.column,.medium-up-8>.columns{
    float:left;
    width:12.5%
  }

  .medium-up-8>.column:nth-of-type(1n),.medium-up-8>.columns:nth-of-type(1n){
    clear:none
  }

  .medium-up-8>.column:nth-of-type(8n+1),.medium-up-8>.columns:nth-of-type(8n+1){
    clear:both
  }

  .medium-up-8>.column:last-child,.medium-up-8>.columns:last-child{
    float:left
  }

  .medium-collapse>.column,.medium-collapse>.columns{
    padding-right:0;
    padding-left:0
  }

  .medium-collapse .row{
    margin-right:0;
    margin-left:0
  }

  .expanded.row .medium-collapse.row{
    margin-right:0;
    margin-left:0
  }

  .medium-uncollapse>.column,.medium-uncollapse>.columns{
    padding-right:1.25rem;
    padding-left:1.25rem
  }

  .medium-centered{
    margin-right:auto;
    margin-left:auto
  }

  .medium-centered,.medium-centered:last-child:not(:first-child){
    float:none;
    clear:both
  }

  .medium-uncentered,.medium-push-0,.medium-pull-0{
    position:static;
    float:left;
    margin-right:0;
    margin-left:0
  }
}

@media print, screen and (min-width: 64em){
  .large-1{
    width:8.3333333333%
  }

  .large-push-1{
    position:relative;
    left:8.3333333333%
  }

  .large-pull-1{
    position:relative;
    left:-8.3333333333%
  }

  .large-offset-0{
    margin-left:0%
  }

  .large-2{
    width:16.6666666667%
  }

  .large-push-2{
    position:relative;
    left:16.6666666667%
  }

  .large-pull-2{
    position:relative;
    left:-16.6666666667%
  }

  .large-offset-1{
    margin-left:8.3333333333%
  }

  .large-3{
    width:25%
  }

  .large-push-3{
    position:relative;
    left:25%
  }

  .large-pull-3{
    position:relative;
    left:-25%
  }

  .large-offset-2{
    margin-left:16.6666666667%
  }

  .large-4{
    width:33.3333333333%
  }

  .large-push-4{
    position:relative;
    left:33.3333333333%
  }

  .large-pull-4{
    position:relative;
    left:-33.3333333333%
  }

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

  .large-5{
    width:41.6666666667%
  }

  .large-push-5{
    position:relative;
    left:41.6666666667%
  }

  .large-pull-5{
    position:relative;
    left:-41.6666666667%
  }

  .large-offset-4{
    margin-left:33.3333333333%
  }

  .large-6{
    width:50%
  }

  .large-push-6{
    position:relative;
    left:50%
  }

  .large-pull-6{
    position:relative;
    left:-50%
  }

  .large-offset-5{
    margin-left:41.6666666667%
  }

  .large-7{
    width:58.3333333333%
  }

  .large-push-7{
    position:relative;
    left:58.3333333333%
  }

  .large-pull-7{
    position:relative;
    left:-58.3333333333%
  }

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

  .large-8{
    width:66.6666666667%
  }

  .large-push-8{
    position:relative;
    left:66.6666666667%
  }

  .large-pull-8{
    position:relative;
    left:-66.6666666667%
  }

  .large-offset-7{
    margin-left:58.3333333333%
  }

  .large-9{
    width:75%
  }

  .large-push-9{
    position:relative;
    left:75%
  }

  .large-pull-9{
    position:relative;
    left:-75%
  }

  .large-offset-8{
    margin-left:66.6666666667%
  }

  .large-10{
    width:83.3333333333%
  }

  .large-push-10{
    position:relative;
    left:83.3333333333%
  }

  .large-pull-10{
    position:relative;
    left:-83.3333333333%
  }

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

  .large-11{
    width:91.6666666667%
  }

  .large-push-11{
    position:relative;
    left:91.6666666667%
  }

  .large-pull-11{
    position:relative;
    left:-91.6666666667%
  }

  .large-offset-10{
    margin-left:83.3333333333%
  }

  .large-12{
    width:100%
  }

  .large-offset-11{
    margin-left:91.6666666667%
  }

  .large-up-1>.column,.large-up-1>.columns{
    float:left;
    width:100%
  }

  .large-up-1>.column:nth-of-type(1n),.large-up-1>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-1>.column:nth-of-type(1n+1),.large-up-1>.columns:nth-of-type(1n+1){
    clear:both
  }

  .large-up-1>.column:last-child,.large-up-1>.columns:last-child{
    float:left
  }

  .large-up-2>.column,.large-up-2>.columns{
    float:left;
    width:50%
  }

  .large-up-2>.column:nth-of-type(1n),.large-up-2>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-2>.column:nth-of-type(2n+1),.large-up-2>.columns:nth-of-type(2n+1){
    clear:both
  }

  .large-up-2>.column:last-child,.large-up-2>.columns:last-child{
    float:left
  }

  .large-up-3>.column,.large-up-3>.columns{
    float:left;
    width:33.3333333333%
  }

  .large-up-3>.column:nth-of-type(1n),.large-up-3>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-3>.column:nth-of-type(3n+1),.large-up-3>.columns:nth-of-type(3n+1){
    clear:both
  }

  .large-up-3>.column:last-child,.large-up-3>.columns:last-child{
    float:left
  }

  .large-up-4>.column,.large-up-4>.columns{
    float:left;
    width:25%
  }

  .large-up-4>.column:nth-of-type(1n),.large-up-4>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-4>.column:nth-of-type(4n+1),.large-up-4>.columns:nth-of-type(4n+1){
    clear:both
  }

  .large-up-4>.column:last-child,.large-up-4>.columns:last-child{
    float:left
  }

  .large-up-5>.column,.large-up-5>.columns{
    float:left;
    width:20%
  }

  .large-up-5>.column:nth-of-type(1n),.large-up-5>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-5>.column:nth-of-type(5n+1),.large-up-5>.columns:nth-of-type(5n+1){
    clear:both
  }

  .large-up-5>.column:last-child,.large-up-5>.columns:last-child{
    float:left
  }

  .large-up-6>.column,.large-up-6>.columns{
    float:left;
    width:16.6666666667%
  }

  .large-up-6>.column:nth-of-type(1n),.large-up-6>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-6>.column:nth-of-type(6n+1),.large-up-6>.columns:nth-of-type(6n+1){
    clear:both
  }

  .large-up-6>.column:last-child,.large-up-6>.columns:last-child{
    float:left
  }

  .large-up-7>.column,.large-up-7>.columns{
    float:left;
    width:14.2857142857%
  }

  .large-up-7>.column:nth-of-type(1n),.large-up-7>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-7>.column:nth-of-type(7n+1),.large-up-7>.columns:nth-of-type(7n+1){
    clear:both
  }

  .large-up-7>.column:last-child,.large-up-7>.columns:last-child{
    float:left
  }

  .large-up-8>.column,.large-up-8>.columns{
    float:left;
    width:12.5%
  }

  .large-up-8>.column:nth-of-type(1n),.large-up-8>.columns:nth-of-type(1n){
    clear:none
  }

  .large-up-8>.column:nth-of-type(8n+1),.large-up-8>.columns:nth-of-type(8n+1){
    clear:both
  }

  .large-up-8>.column:last-child,.large-up-8>.columns:last-child{
    float:left
  }

  .large-collapse>.column,.large-collapse>.columns{
    padding-right:0;
    padding-left:0
  }

  .large-collapse .row{
    margin-right:0;
    margin-left:0
  }

  .expanded.row .large-collapse.row{
    margin-right:0;
    margin-left:0
  }

  .large-uncollapse>.column,.large-uncollapse>.columns{
    padding-right:1.25rem;
    padding-left:1.25rem
  }

  .large-centered{
    margin-right:auto;
    margin-left:auto
  }

  .large-centered,.large-centered:last-child:not(:first-child){
    float:none;
    clear:both
  }

  .large-uncentered,.large-push-0,.large-pull-0{
    position:static;
    float:left;
    margin-right:0;
    margin-left:0
  }
}

.column-block{
  margin-bottom:2.5rem
}

.column-block>:last-child{
  margin-bottom:0
}

@media print, screen and (min-width: 40em){
  .column-block{
    margin-bottom:2.5rem
  }

  .column-block>:last-child{
    margin-bottom:0
  }
}

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

.align-center{
  justify-content:center
}

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

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

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

div,dl,dt,dd,ul,ol,li,h1,.heading-1,h2,.heading-2,h3,.heading-3,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:700;
  line-height:inherit
}

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

h1,.heading-1,.h1,h2,.heading-2,.h2,h3,.heading-3,.h3,h4,.h4,h5,.h5,h6,.h6{
  font-family:"Nunito Sans",Helvetica,Roboto,Arial,sans-serif;
  font-style:normal;
  font-weight:700;
  color:inherit;
  text-rendering:optimizeLegibility
}

h1 small,.heading-1 small,.h1 small,h2 small,.heading-2 small,.h2 small,h3 small,.heading-3 small,.h3 small,h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small{
  line-height:0;
  color:#9b9b9b
}

h1,.heading-1,.h1{
  font-size:1.5rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:.5rem
}

h2,.heading-2,.h2{
  font-size:1.25rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:.5rem
}

h3,.heading-3,.h3{
  font-size:1.1875rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:.5rem
}

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

h5,.h5{
  font-size:1.0625rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:.5rem
}

h6,.h6{
  font-size:1rem;
  line-height:1.4;
  margin-top:0;
  margin-bottom:.5rem
}

@media print, screen and (min-width: 40em){
  h1,.heading-1,.h1{
    font-size:2rem
  }

  h2,.heading-2,.h2{
    font-size:1.5rem
  }

  h3,.heading-3,.h3{
    font-size:1.125rem
  }

  h4,.h4{
    font-size:1rem
  }

  h5,.h5{
    font-size:1rem
  }

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

a{
  line-height:inherit;
  color:#1779ba;
  text-decoration:none;
  cursor:pointer
}

a:hover,a:focus{
  color:rgb(19.78,104.06,159.96);
  text-decoration:underline
}

a img{
  border:0
}

hr{
  clear:both;
  max-width:90rem;
  height:0;
  margin:1.25rem auto;
  border-top:0;
  border-right:0;
  border-bottom:1px solid #9b9b9b;
  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:.3rem;
  font-weight:700
}

blockquote{
  margin:0 0 1rem;
  padding:.5625rem 1.25rem 0 1.1875rem;
  border-left:1px solid #9b9b9b
}

blockquote,blockquote p{
  line-height:1.6;
  color:#4a4a4a
}

cite{
  display:block;
  font-size:.8125rem;
  color:#4a4a4a
}

cite:before{
  content:"— "
}

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

figure{
  margin:0
}

code{
  padding:.125rem .3125rem .0625rem;
  border:1px solid #9b9b9b;
  background-color:#ddd;
  font-family:Consolas,"Liberation Mono",Courier,monospace;
  font-weight:normal;
  color:#000
}

kbd{
  margin:0;
  padding:.125rem .25rem 0;
  background-color:#ddd;
  font-family:Consolas,"Liberation Mono",Courier,monospace;
  color:#000;
  border-radius:3px
}

.subheader{
  margin-top:.2rem;
  margin-bottom:.5rem;
  font-weight:normal;
  line-height:1.4;
  color:#4a4a4a
}

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

.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:rgba(0,0,0,0) !important;
    box-shadow:none !important;
    color:#000 !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 #4a4a4a;
    page-break-inside:avoid
  }

  thead{
    display:table-header-group
  }

  tr,img{
    page-break-inside:avoid
  }

  img{
    max-width:100% !important
  }

  @page{
    margin:.5cm
  }

  p,h2,.heading-2,h3,.heading-3{
    orphans:3;
    widows:3
  }

  h2,.heading-2,h3,.heading-3{
    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.625rem;
  margin:0 0 1rem;
  padding:.5rem;
  border:1px solid #ddd;
  border-radius:3px;
  background-color:#fff;
  box-shadow:inset 0 1px 2px rgba(0,0,0,.1);
  font-family:inherit;
  font-size:1.125rem;
  font-weight:normal;
  line-height:1.5;
  color:#000;
  transition:box-shadow .5s,border-color .25s ease-in-out;
  -webkit-appearance:none;
     -moz-appearance:none;
          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 #4a4a4a;
  background-color:#fff;
  box-shadow:0 0 5px #9b9b9b;
  transition:box-shadow .5s,border-color .25s ease-in-out
}

textarea{
  max-width:100%
}

textarea[rows]{
  height:auto
}

input::-moz-placeholder, textarea::-moz-placeholder{
  color:#9b9b9b
}

input::placeholder,textarea::placeholder{
  color:#9b9b9b
}

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

[type=submit],[type=button]{
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
  border-radius:3px
}

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

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

[type=checkbox]+label,[type=radio]+label{
  display:inline-block;
  vertical-align:baseline;
  margin-left:.5rem;
  margin-right:1rem;
  margin-bottom:0
}

[type=checkbox]+label[for],[type=radio]+label[for]{
  cursor:pointer
}

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

[type=file]{
  width:100%
}

label{
  display:block;
  margin:0;
  font-size:1rem;
  font-weight:normal;
  line-height:1.8;
  color:#4a4a4a
}

label.middle{
  margin:0 0 1rem;
  padding:.5625rem 0
}

.help-text{
  margin-top:-0.5rem;
  font-size:.8125rem;
  font-style:italic;
  color:#000
}

.input-group{
  display:flex;
  width:100%;
  margin-bottom:1rem;
  align-items:stretch
}

.input-group>:first-child{
  border-radius:3px 0 0 3px
}

.input-group>:last-child>*{
  border-radius:0 3px 3px 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 #9b9b9b;
  background:#ddd;
  color:#000;
  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;
  height:auto;
  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{
  height:auto;
  align-self:stretch;
  padding-top:0;
  padding-bottom:0;
  font-size:1.125rem
}

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

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

.fieldset{
  margin:1.125rem 0;
  padding:1.25rem;
  border:1px solid #9b9b9b
}

.fieldset legend{
  margin:0;
  margin-left:-0.1875rem;
  padding:0 .1875rem
}

select{
  height:2.625rem;
  margin:0 0 1rem;
  padding:.5rem;
  -webkit-appearance:none;
     -moz-appearance:none;
          appearance:none;
  border:1px solid #ddd;
  border-radius:3px;
  background-color:#fff;
  font-family:inherit;
  font-size:1.125rem;
  font-weight:normal;
  line-height:1.5;
  color:#000;
  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%2874, 74, 74%29'></polygon></svg>");
  background-origin:content-box;
  background-position:right -1rem center;
  background-repeat:no-repeat;
  background-size:9px 6px;
  padding-right:1.5rem;
  transition:box-shadow .5s,border-color .25s ease-in-out
}

@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 #4a4a4a;
  background-color:#fff;
  box-shadow:0 0 5px #9b9b9b;
  transition:box-shadow .5s,border-color .25s ease-in-out
}

select:disabled{
  background-color:#ddd;
  cursor:not-allowed
}

select::-ms-expand{
  display:none
}

select[multiple]{
  height:auto;
  background-image:none
}

.is-invalid-input:not(:focus){
  border-color:#d0021b;
  background-color:rgb(250.3,229.7,232.2)
}

.is-invalid-input:not(:focus)::-moz-placeholder{
  color:#d0021b
}

.is-invalid-input:not(:focus)::placeholder{
  color:#d0021b
}

.is-invalid-label{
  color:#d0021b
}

.form-error{
  display:none;
  margin-top:-0.5rem;
  margin-bottom:1rem;
  font-size:.75rem;
  font-weight:700;
  color:#d0021b
}

.form-error.is-visible{
  display:block
}

.button{
  display:inline-block;
  vertical-align:middle;
  margin:0 0 1rem 0;
  font-family:inherit;
  padding:.85em 1em;
  -webkit-appearance:none;
  border:1px solid rgba(0,0,0,0);
  border-radius:3px;
  transition:background-color .25s ease-out,color .25s ease-out;
  font-size:1rem;
  line-height:1;
  text-align:center;
  cursor:pointer;
  background-color:#1779ba;
  color:#fff
}

[data-whatinput=mouse] .button{
  outline:0
}

.button:hover,.button:focus{
  background-color:rgb(19.55,102.85,158.1);
  color:#fff
}

.button.tiny{
  font-size:.6rem
}

.button.small{
  font-size:.75rem
}

.button.large{
  font-size:1.125rem
}

.button.expanded{
  display:block;
  width:100%;
  margin-right:0;
  margin-left:0
}

.button.primary{
  background-color:#1779ba;
  color:#fff
}

.button.primary:hover,.button.primary:focus{
  background-color:rgb(18.4,96.8,148.8);
  color:#fff
}

.button.secondary{
  background-color:#fff;
  color:#000
}

.button.secondary:hover,.button.secondary:focus{
  background-color:#ccc;
  color:#000
}

.button.success{
  background-color:#7ed321;
  color:#000
}

.button.success:hover,.button.success:focus{
  background-color:rgb(100.8,168.8,26.4);
  color:#000
}

.button.warning{
  background-color:#f5a623;
  color:#000
}

.button.warning:hover,.button.warning:focus{
  background-color:rgb(214.2608695652,137.3217391304,9.7391304348);
  color:#000
}

.button.alert{
  background-color:#d0021b;
  color:#fff
}

.button.alert:hover,.button.alert:focus{
  background-color:rgb(166.4,1.6,21.6);
  color:#fff
}

.button.disabled,.button[disabled]{
  opacity:.25;
  cursor:not-allowed
}

.button.disabled,.button.disabled:hover,.button.disabled:focus,.button[disabled],.button[disabled]:hover,.button[disabled]:focus{
  background-color:#1779ba;
  color:#fff
}

.button.disabled.primary,.button[disabled].primary{
  opacity:.25;
  cursor:not-allowed
}

.button.disabled.primary,.button.disabled.primary:hover,.button.disabled.primary:focus,.button[disabled].primary,.button[disabled].primary:hover,.button[disabled].primary:focus{
  background-color:#1779ba;
  color:#fff
}

.button.disabled.secondary,.button[disabled].secondary{
  opacity:.25;
  cursor:not-allowed
}

.button.disabled.secondary,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary,.button[disabled].secondary:hover,.button[disabled].secondary:focus{
  background-color:#fff;
  color:#000
}

.button.disabled.success,.button[disabled].success{
  opacity:.25;
  cursor:not-allowed
}

.button.disabled.success,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success,.button[disabled].success:hover,.button[disabled].success:focus{
  background-color:#7ed321;
  color:#000
}

.button.disabled.warning,.button[disabled].warning{
  opacity:.25;
  cursor:not-allowed
}

.button.disabled.warning,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning,.button[disabled].warning:hover,.button[disabled].warning:focus{
  background-color:#f5a623;
  color:#000
}

.button.disabled.alert,.button[disabled].alert{
  opacity:.25;
  cursor:not-allowed
}

.button.disabled.alert,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert,.button[disabled].alert:hover,.button[disabled].alert:focus{
  background-color:#d0021b;
  color:#fff
}

.button.hollow{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.hollow,.button.hollow:hover,.button.hollow:focus{
  background-color:rgba(0,0,0,0)
}

.button.hollow.disabled,.button.hollow.disabled:hover,.button.hollow.disabled:focus,.button.hollow[disabled],.button.hollow[disabled]:hover,.button.hollow[disabled]:focus{
  background-color:rgba(0,0,0,0)
}

.button.hollow:hover,.button.hollow:focus{
  border-color:rgb(11.5,60.5,93);
  color:rgb(11.5,60.5,93)
}

.button.hollow:hover.disabled,.button.hollow:hover[disabled],.button.hollow:focus.disabled,.button.hollow:focus[disabled]{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.hollow.primary{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.hollow.primary:hover,.button.hollow.primary:focus{
  border-color:rgb(11.5,60.5,93);
  color:rgb(11.5,60.5,93)
}

.button.hollow.primary:hover.disabled,.button.hollow.primary:hover[disabled],.button.hollow.primary:focus.disabled,.button.hollow.primary:focus[disabled]{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.hollow.secondary{
  border:1px solid #fff;
  color:#fff
}

.button.hollow.secondary:hover,.button.hollow.secondary:focus{
  border-color:hsl(0,0%,50%);
  color:hsl(0,0%,50%)
}

.button.hollow.secondary:hover.disabled,.button.hollow.secondary:hover[disabled],.button.hollow.secondary:focus.disabled,.button.hollow.secondary:focus[disabled]{
  border:1px solid #fff;
  color:#fff
}

.button.hollow.success{
  border:1px solid #7ed321;
  color:#7ed321
}

.button.hollow.success:hover,.button.hollow.success:focus{
  border-color:rgb(63,105.5,16.5);
  color:rgb(63,105.5,16.5)
}

.button.hollow.success:hover.disabled,.button.hollow.success:hover[disabled],.button.hollow.success:focus.disabled,.button.hollow.success:focus[disabled]{
  border:1px solid #7ed321;
  color:#7ed321
}

.button.hollow.warning{
  border:1px solid #f5a623;
  color:#f5a623
}

.button.hollow.warning:hover,.button.hollow.warning:focus{
  border-color:rgb(133.9130434783,85.8260869565,6.0869565217);
  color:rgb(133.9130434783,85.8260869565,6.0869565217)
}

.button.hollow.warning:hover.disabled,.button.hollow.warning:hover[disabled],.button.hollow.warning:focus.disabled,.button.hollow.warning:focus[disabled]{
  border:1px solid #f5a623;
  color:#f5a623
}

.button.hollow.alert{
  border:1px solid #d0021b;
  color:#d0021b
}

.button.hollow.alert:hover,.button.hollow.alert:focus{
  border-color:rgb(104,1,13.5);
  color:rgb(104,1,13.5)
}

.button.hollow.alert:hover.disabled,.button.hollow.alert:hover[disabled],.button.hollow.alert:focus.disabled,.button.hollow.alert:focus[disabled]{
  border:1px solid #d0021b;
  color:#d0021b
}

.button.clear{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.clear,.button.clear:hover,.button.clear:focus{
  background-color:rgba(0,0,0,0)
}

.button.clear.disabled,.button.clear.disabled:hover,.button.clear.disabled:focus,.button.clear[disabled],.button.clear[disabled]:hover,.button.clear[disabled]:focus{
  background-color:rgba(0,0,0,0)
}

.button.clear:hover,.button.clear:focus{
  border-color:rgb(11.5,60.5,93);
  color:rgb(11.5,60.5,93)
}

.button.clear:hover.disabled,.button.clear:hover[disabled],.button.clear:focus.disabled,.button.clear:focus[disabled]{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.clear,.button.clear.disabled,.button.clear[disabled],.button.clear:hover,.button.clear:hover.disabled,.button.clear:hover[disabled],.button.clear:focus,.button.clear:focus.disabled,.button.clear:focus[disabled]{
  border-color:rgba(0,0,0,0)
}

.button.clear.primary{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.clear.primary:hover,.button.clear.primary:focus{
  border-color:rgb(11.5,60.5,93);
  color:rgb(11.5,60.5,93)
}

.button.clear.primary:hover.disabled,.button.clear.primary:hover[disabled],.button.clear.primary:focus.disabled,.button.clear.primary:focus[disabled]{
  border:1px solid #1779ba;
  color:#1779ba
}

.button.clear.primary,.button.clear.primary.disabled,.button.clear.primary[disabled],.button.clear.primary:hover,.button.clear.primary:hover.disabled,.button.clear.primary:hover[disabled],.button.clear.primary:focus,.button.clear.primary:focus.disabled,.button.clear.primary:focus[disabled]{
  border-color:rgba(0,0,0,0)
}

.button.clear.secondary{
  border:1px solid #fff;
  color:#fff
}

.button.clear.secondary:hover,.button.clear.secondary:focus{
  border-color:hsl(0,0%,50%);
  color:hsl(0,0%,50%)
}

.button.clear.secondary:hover.disabled,.button.clear.secondary:hover[disabled],.button.clear.secondary:focus.disabled,.button.clear.secondary:focus[disabled]{
  border:1px solid #fff;
  color:#fff
}

.button.clear.secondary,.button.clear.secondary.disabled,.button.clear.secondary[disabled],.button.clear.secondary:hover,.button.clear.secondary:hover.disabled,.button.clear.secondary:hover[disabled],.button.clear.secondary:focus,.button.clear.secondary:focus.disabled,.button.clear.secondary:focus[disabled]{
  border-color:rgba(0,0,0,0)
}

.button.clear.success{
  border:1px solid #7ed321;
  color:#7ed321
}

.button.clear.success:hover,.button.clear.success:focus{
  border-color:rgb(63,105.5,16.5);
  color:rgb(63,105.5,16.5)
}

.button.clear.success:hover.disabled,.button.clear.success:hover[disabled],.button.clear.success:focus.disabled,.button.clear.success:focus[disabled]{
  border:1px solid #7ed321;
  color:#7ed321
}

.button.clear.success,.button.clear.success.disabled,.button.clear.success[disabled],.button.clear.success:hover,.button.clear.success:hover.disabled,.button.clear.success:hover[disabled],.button.clear.success:focus,.button.clear.success:focus.disabled,.button.clear.success:focus[disabled]{
  border-color:rgba(0,0,0,0)
}

.button.clear.warning{
  border:1px solid #f5a623;
  color:#f5a623
}

.button.clear.warning:hover,.button.clear.warning:focus{
  border-color:rgb(133.9130434783,85.8260869565,6.0869565217);
  color:rgb(133.9130434783,85.8260869565,6.0869565217)
}

.button.clear.warning:hover.disabled,.button.clear.warning:hover[disabled],.button.clear.warning:focus.disabled,.button.clear.warning:focus[disabled]{
  border:1px solid #f5a623;
  color:#f5a623
}

.button.clear.warning,.button.clear.warning.disabled,.button.clear.warning[disabled],.button.clear.warning:hover,.button.clear.warning:hover.disabled,.button.clear.warning:hover[disabled],.button.clear.warning:focus,.button.clear.warning:focus.disabled,.button.clear.warning:focus[disabled]{
  border-color:rgba(0,0,0,0)
}

.button.clear.alert{
  border:1px solid #d0021b;
  color:#d0021b
}

.button.clear.alert:hover,.button.clear.alert:focus{
  border-color:rgb(104,1,13.5);
  color:rgb(104,1,13.5)
}

.button.clear.alert:hover.disabled,.button.clear.alert:hover[disabled],.button.clear.alert:focus.disabled,.button.clear.alert:focus[disabled]{
  border:1px solid #d0021b;
  color:#d0021b
}

.button.clear.alert,.button.clear.alert.disabled,.button.clear.alert[disabled],.button.clear.alert:hover,.button.clear.alert:hover.disabled,.button.clear.alert:hover[disabled],.button.clear.alert:focus,.button.clear.alert:focus.disabled,.button.clear.alert:focus[disabled]{
  border-color:rgba(0,0,0,0)
}

.button.dropdown::after{
  display:block;
  width:0;
  height:0;
  border:inset .4em;
  content:"";
  border-bottom-width:0;
  border-top-style:solid;
  border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0);
  position:relative;
  top:.4em;
  display:inline-block;
  float:right;
  margin-left:1em
}

.button.dropdown.hollow::after{
  border-top-color:#1779ba
}

.button.dropdown.hollow.primary::after{
  border-top-color:#1779ba
}

.button.dropdown.hollow.secondary::after{
  border-top-color:#fff
}

.button.dropdown.hollow.success::after{
  border-top-color:#7ed321
}

.button.dropdown.hollow.warning::after{
  border-top-color:#f5a623
}

.button.dropdown.hollow.alert::after{
  border-top-color:#d0021b
}

.button.arrow-only::after{
  top:-0.1em;
  float:none;
  margin-left:0
}

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

.accordion{
  margin-left:0;
  background:#fff;
  list-style-type:none
}

.accordion[disabled] .accordion-title{
  cursor:not-allowed
}

.accordion-item:first-child>:first-child{
  border-radius:3px 3px 0 0
}

.accordion-item:last-child>:last-child{
  border-radius:0 0 3px 3px
}

.accordion-title{
  position:relative;
  display:block;
  padding:1.25rem 1rem;
  border:1px solid #ddd;
  border-bottom:0;
  font-size:1.5rem;
  line-height:1;
  color:#000
}

:last-child:not(.is-active)>.accordion-title{
  border-bottom:1px solid #ddd;
  border-radius:0 0 3px 3px
}

.accordion-title:hover,.accordion-title:focus{
  background-color:#fff
}

.accordion-content{
  display:none;
  padding:1rem;
  border:1px solid #ddd;
  border-bottom:0;
  background-color:#fff;
  color:#000
}

:last-child>.accordion-content:last-child{
  border-bottom:1px solid #ddd
}

.card{
  display:flex;
  flex-direction:column;
  flex-grow:1;
  margin-bottom:2rem;
  border:1px solid #ddd;
  border-radius:3px;
  background:#fff;
  box-shadow:0 2px 6px 0 rgba(0,0,0,.1);
  overflow:hidden;
  color:#000
}

.card>:last-child{
  margin-bottom:0
}

.card-divider{
  flex:0 1 auto;
  display:flex;
  padding:1.5rem;
  background:#ddd
}

.card-divider>:last-child{
  margin-bottom:0
}

.card-section{
  flex:1 0 auto;
  padding:1.5rem
}

.card-section>:last-child{
  margin-bottom:0
}

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

.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:1.25rem 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.expanded li{
  flex:1 1 0px
}

.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{
  flex-flow:row nowrap
}

.menu.icon-left li a img,.menu.icon-left li a i,.menu.icon-left li a svg{
  margin-right:.5rem
}

.menu.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{
  margin-left:.5rem
}

.menu.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{
  align-self:stretch;
  margin-bottom:.5rem;
  text-align:center
}

.menu.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{
  align-self:stretch;
  margin-bottom:.5rem;
  text-align:center
}

.menu .is-active>a{
  background:none;
  color:#1779ba
}

.menu .active>a{
  background:none;
  color:#1779ba
}

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

.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:.0625rem;
  border-radius:3px;
  font-size:.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:.1875rem .625rem;
  border-radius:3px;
  color:#000
}

.pagination a:hover,.pagination button:hover{
  background:#ddd
}

.pagination .current{
  padding:.1875rem .625rem;
  background:#1779ba;
  color:#fff;
  cursor:default
}

.pagination .disabled{
  padding:.1875rem .625rem;
  color:#9b9b9b;
  cursor:not-allowed
}

.pagination .disabled:hover{
  background:rgba(0,0,0,0)
}

.pagination .ellipsis::after{
  padding:.1875rem .625rem;
  content:"…";
  color:#000
}

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

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

.hide{
  display:none !important
}

.invisible{
  visibility:hidden
}

@media screen and (max-width: 39.9375em){
  .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.9375em){
  .show-for-medium{
    display:none !important
  }
}

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

@media screen and (max-width: 39.9375em), 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.9375em){
  .show-for-large{
    display:none !important
  }
}

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

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

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

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

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

.float-left{
  float:left !important
}

.float-right{
  float:right !important
}

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

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

.clearfix::after,.navigation::after,.event__part::after{
  clear:both
}

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

.inline-block{
  display:inline-block
}

.hidden-scrollbar::-webkit-scrollbar{
  display:none;
  -ms-overflow-style:none
}

.is-flex{
  display:flex
}

.expand-button i,.expand-button svg{
  transition:all .2s ease
}

[data-expandable-expanded-value=true] .expand-button i,[data-expandable-expanded-value=true] .expand-button svg{
  transform:rotate(180deg)
}

.hint,.session-item__info{
  color:#9b9b9b
}

body{
  background:rgb(238.8,233.4,230.7)
}

.main{
  margin-left: auto;
  margin-right: auto;
  overflow-x: auto;
  max-width:1536px;
  -webkit-overflow-scrolling:touch;
  background-color:#fff;
}

.button{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  box-shadow:0 1px 1px 0 rgba(0,0,0,.5);
}

.button.primary{
  box-shadow:0 1px 1px 0 rgb(11.7751196172,61.9473684211,95.2248803828)
}

.button.round{
  border-radius:500px;
  padding:.75rem 1.5rem
}

.button.large{
  line-height:1.5
}

.button.soft-shadow{
  box-shadow:0 1px 2px 0 rgba(0,0,0,.1)
}

.button.soft-shadow:hover,.button.soft-shadow:focus{
  box-shadow:0 1px 2px 0 rgba(0,0,0,.4)
}

.button.fake:hover{
  box-shadow:0 1px 2px 0 rgba(0,0,0,.1);
  background-color:#fff;
  cursor:default
}

.button[data-popper-target~=button] .filter__caret{
  transition:all .2s ease
}

.button[data-popper-target~=button].is-active .filter__caret{
  transform:rotate(180deg)
}

.button-group .button{
  border-right:none;
  border-radius:0;
  margin:0;
  border-width:1px
}

.button-group .button--first{
  border-top-left-radius:3px;
  border-bottom-left-radius:3px
}

.button-group .button--last{
  border-top-right-radius:3px;
  border-bottom-right-radius:3px;
  border-right:1px solid #ddd
}

.button-group .button--prev{
  border-top-left-radius:3px;
  border-bottom-left-radius:3px
}

.button-group .button--next{
  border-top-right-radius:3px;
  border-bottom-right-radius:3px
}

.button-group .button--arrow{
  font-size:.625rem !important;
  line-height:1.8
}

.color--success{
  color:#7ed321
}

.color--warning{
  color:#f5a623
}

.color--alert{
  color:#d0021b
}

.color--info{
  color:rgb(83,173.5263157895,255)
}

.color--disabled{
  color:#9b9b9b
}

textarea{
  min-height:100px;
  resize:none
}

.field--super-important{
  position:absolute;
  right:-999em
}

.label{
  display:inline-block;
  border-radius:3px;
  padding:0 5px;
  font-weight:700;
  font-size:.875rem
}

.label i,.label svg{
  margin-right:5px
}

.label--primary{
  background-color:#1779ba;
  color:#fff
}

.label--success{
  background-color:#7ed321;
  color:#fff
}

.label--warning{
  background-color:#f5a623;
  color:#fff
}

.label--alert{
  background-color:#d0021b;
  color:#fff
}

.label--info{
  background-color:rgb(83,173.5263157895,255);
  color:#fff
}

.label--hint{
  background-color:#4a4a4a;
  color:#fff
}

.section{
  padding:20px 0;
  background-color:#fff
}

.section--alt{
  background-color:#f9f7f6
}

.section--map{
  position:relative
}

.section-label{
  color:#9b9b9b;
  font-weight:normal;
  margin-bottom:1rem
}

@media print, screen and (min-width: 40em){
  .section-label{
    margin-bottom:2rem
  }
}

.section-label a{
  text-decoration:underline;
  color:inherit
}

@media print, screen and (min-width: 40em){
  .section{
    padding:60px 0
  }
}

.no-bottom-margin{
  margin-bottom:0
}

.margin-top--medium{
  margin-top:1rem
}

.margin-bottom--medium{
  margin-bottom:1rem
}

.margin-left--medium{
  margin-left:1rem
}

.margin-left--small{
  margin-left:.5rem
}

.margin-right--medium{
  margin-right:1rem
}

.margin-right--small{
  margin-right:.5rem
}

table{
  width:100%;
  border-collapse:separate;
  border-spacing:0
}

thead{
  background:rgba(0,0,0,0)
}

thead th{
  font-weight:normal;
  text-align:left;
  color:#000;
  padding:8px 10px;
  border-bottom:1px solid #ddd;
  -webkit-user-select:none;
     -moz-user-select:none;
          user-select:none
}

tbody tr:nth-child(even){
  background:rgba(0,0,0,0)
}

tbody tr:last-child>td{
  border-bottom:none
}

tbody tr[data-link-to]{
  cursor:pointer
}

tbody .tr-group td{
  border-bottom:none
}

tbody .tr-group--last td{
  border-bottom:1px solid #ddd
}

tbody th.align-top,tbody td.align-top{
  vertical-align:top
}

tbody td{
  padding:8px 10px;
  border-bottom:1px solid #ddd
}

tbody td .button{
  margin-bottom:0
}

tbody+thead th{
  padding-top:1.125rem
}

.table-wrapper{
  width:1px;
  min-width:100%;
  max-width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch
}

.table-hover tbody tr:hover{
  background:rgb(246.5,246.5,246.5)
}

.heading-subtitle{
  color:#4a4a4a
}

.heading-intro{
  color:#4a4a4a
}

.no-wrap{
  white-space:nowrap !important
}

.heading-space{
  margin-bottom:20px
}

@media print, screen and (min-width: 40em){
  .heading-space{
    margin-bottom:60px
  }
}

.heading-space--top{
  margin-top:20px
}

@media print, screen and (min-width: 40em){
  .heading-space--top{
    margin-top:60px
  }
}

.divider{
  margin-bottom:20px
}

@media print, screen and (min-width: 40em){
  .divider{
    margin-bottom:60px
  }
}

hr.divider{
  margin:1.5rem auto;
  width:25%;
  border-color:#ddd
}

@media print, screen and (min-width: 40em){
  hr.divider{
    margin:2.5rem auto
  }
}

@media print, screen and (min-width: 64em){
  hr.divider{
    margin:3.75rem auto
  }
}

hr.divider--small{
  margin:1.5rem auto
}

.grid-block+hr.divider{
  margin-top:0
}

@media print, screen and (min-width: 64em){
  .grid-block+hr.divider{
    margin-top:1.25rem
  }
}

.collection-more{
  font-size:1.125rem;
  text-align:center
}

.fs-xx-large{
  font-size:2rem
}

.fs-x-large,.hero__title,.header__title{
  font-size:1.6rem
}

.fs-large,.hero__subtitle,.hamburger,.event-item__title,.event-timeline__month,.empty-state__title,.contact-success__title,.heading-subtitle{
  font-size:1.2rem
}

.fs-medium,.session__time,.product-benefits,.location-item__name,.location-info__business,.location-info__sessions,.amenity__icon,.instructor__name,.hero .button,.event-timeline__year,.events--short .event-item__title,.events--short .event-timeline__month,.empty-state__subtitle,.booking-card__button,.accordion-subtitle,.section-label,.heading-intro{
  font-size:1.0125rem
}

.fs-small,.session__day,.powered-by i,.powered-by svg,.impressum,.filters--flex .filter-label,.event__location,.event__part-title,.event__meta i,.event__meta svg,.event-item__meta,.events--short .event-timeline__year{
  font-size:.9rem
}

.fs-x-small,.session__info,.product-external-info,.editor-content a .attachment--file .attachment__size,.editor-content a a .attachment__size,.editor-content .attachment--file .attachment--file .attachment__size,.editor-content .attachment--file a .attachment__size,.editor-content .attachment--pdf .attachment--file .attachment__size,.editor-content .attachment--pdf a .attachment__size,.editor-content .attachment--preview .attachment__caption,.post--featured .post__meta,.post--preview .post__meta,.navigation ul ul .menu-text,.hero__button-hint,.event__card,.document__size,.booking-card__hint,.card-show-more,.hint,.session-item__info{
  font-size:.9rem
}

.fs-xx-small,.session-item__signup{
  font-size:.8rem
}

@media print, screen and (min-width: 40em){
  .fs-xx-large{
    font-size:2.5rem
  }

  .fs-x-large,.hero__title,.header__title{
    font-size:2rem
  }

  .fs-large,.hero__subtitle,.hamburger,.event-item__title,.event-timeline__month,.empty-state__title,.contact-success__title,.heading-subtitle{
    font-size:1.5rem
  }

  .fs-medium,.session__time,.product-benefits,.location-item__name,.location-info__business,.location-info__sessions,.amenity__icon,.instructor__name,.hero .button,.event-timeline__year,.events--short .event-item__title,.events--short .event-timeline__month,.empty-state__subtitle,.booking-card__button,.accordion-subtitle,.section-label,.heading-intro{
    font-size:1.125rem
  }

  .fs-small,.session__day,.powered-by i,.powered-by svg,.impressum,.filters--flex .filter-label,.event__location,.event__part-title,.event__meta i,.event__meta svg,.event-item__meta,.events--short .event-timeline__year{
    font-size:1rem
  }

  .fs-x-small,.session__info,.product-external-info,.editor-content a .attachment--file .attachment__size,.editor-content a a .attachment__size,.editor-content .attachment--file .attachment--file .attachment__size,.editor-content .attachment--file a .attachment__size,.editor-content .attachment--pdf .attachment--file .attachment__size,.editor-content .attachment--pdf a .attachment__size,.editor-content .attachment--preview .attachment__caption,.post--featured .post__meta,.post--preview .post__meta,.navigation ul ul .menu-text,.hero__button-hint,.event__card,.document__size,.booking-card__hint,.card-show-more,.hint,.session-item__info{
    font-size:.875rem
  }

  .fs-xx-small,.session-item__signup{
    font-size:.75rem
  }
}

[data-accordion-target=header].is-expanded+[data-accordion-target=body]{
  display:block
}

[data-accordion-target=header].is-expanded svg{
  transform:rotate(-90deg)
}

[data-accordion-target=body]{
  display:none
}

.accordion{
  box-shadow:0 2px 6px rgba(0,0,0,.1)
}

.accordion-title{
  font-weight:700;
  padding-right:2rem;
  line-height:1.3;
  display:flex;
  align-items:center
}

@media screen and (max-width: 39.9375em){
  .accordion-title{
    font-size:1.125rem
  }
}

.accordion-title:hover,.accordion-title:focus{
  text-decoration:none;
  color:inherit
}

.accordion-title svg{
  margin-left:auto;
  font-size:1.5rem;
  transition:all .2s ease
}

.accordion-subtitle{
  font-weight:normal;
  color:#9b9b9b;
  margin-top:.25rem
}

.accordion-item.is-active .accordion-title svg{
  transform:rotate(-90deg)
}

.accordion-content p:last-child,.accordion-content ul:last-child,.accordion-content ol:last-child{
  margin-bottom:0
}

.avatar{
  position:relative;
  display:inline-block;
  width:200px;
  height:200px;
  border-radius:200px;
  text-align:center;
  z-index:2;
  overflow:hidden;
  vertical-align:bottom
}

.avatar--bg{
  background:#4a4a4a
}

.avatar--small{
  width:50px;
  height:50px
}

.avatar--small .avatar__initials{
  margin-top:17px;
  font-size:1rem
}

.avatar__image{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background-position:center center;
  background-size:cover
}

.avatar__initials{
  color:#ddd;
  margin-top:70px;
  font-size:3.75rem;
  line-height:1
}

.calendar .popover{
  width:300px;
  max-width:300px
}

.calendar__current-month{
  float:left
}

.calendar__current-month h2,.calendar__current-month .heading-2{
  margin-bottom:0;
  display:inline-block;
  vertical-align:middle;
  line-height:40px
}

.calendar__controls{
  margin-bottom:20px
}

.calendar__control-buttons{
  float:right;
  vertical-align:middle
}

.calendar__button{
  font-size:.625rem !important
}

.calendar__table{
  width:100%;
  border-collapse:collapse;
  margin-bottom:0
}

.calendar__table thead,.calendar__table tbody{
  border:none
}

.calendar__table tbody{
  border-top:none;
  box-shadow:0 2px 6px 0 rgba(0,0,0,.1)
}

.calendar__table th,.calendar__table td{
  padding:5px 8px;
  vertical-align:top
}

.calendar__table td{
  border:1px solid #ddd
}

.calendar__header{
  font-size:.875rem;
  text-align:right;
  color:#000;
  border-bottom:1px solid #9b9b9b
}

.calendar__header--weekend{
  color:#4a4a4a
}

.calendar__date{
  width:125px;
  min-width:125px;
  max-width:125px;
  height:100px;
  min-height:100px;
  background:#fff
}

.calendar__date--weekend{
  color:#4a4a4a;
  background:rgb(242.88,238.84,236.82);
  border-color:rgb(236.76,230.68,227.64) !important
}

.calendar__date--today .calendar__day-number{
  display:inline-block;
  background:#1779ba;
  color:#fff;
  width:24px;
  height:24px;
  border-radius:24px;
  font-weight:700;
  text-align:center
}

.calendar__date--not-month{
  color:#ddd
}

.calendar__date--not-month .calendar__event .calendar__event-name{
  color:#9b9b9b
}

.calendar__date--not-month .calendar__event .calendar__event-time{
  color:#ddd
}

.calendar__date--not-month .calendar__event--multi .calendar__event-name{
  color:#000
}

.calendar__week_id{
  font-size:.875rem;
  float:left;
  line-height:24px;
  text-decoration:none;
  color:#9b9b9b
}

.calendar__week_id:hover{
  color:#4a4a4a
}

.calendar__day{
  font-size:.875rem;
  float:right;
  line-height:24px;
  margin-bottom:5px
}

.calendar__events{
  margin:0;
  list-style:none
}

.calendar__event{
  font-size:.8125rem;
  margin:0 -7px;
  height:21px
}

.calendar__event+.calendar__event{
  margin-top:1px
}

.calendar__event .is-active{
  background:#9b9b9b
}

.calendar__event .is-active .calendar__event-name{
  color:#000
}

.calendar__event .is-active .calendar__event-time{
  color:#4a4a4a
}

.calendar__event--multi{
  margin:0 -9px
}

.calendar__event--multi .calendar__event-link{
  background:#ddd;
  padding:0
}

.calendar__event--multi .calendar__event-name:before{
  content:"";
  margin-right:none
}

.calendar__event--multi .is-active{
  background:#9b9b9b
}

.calendar__event--multi-start{
  margin-left:0
}

.calendar__event--multi-end{
  margin-right:0
}

.calendar__event-link{
  color:#4a4a4a;
  display:block;
  padding:0 7px;
  width:100%;
  text-decoration:none;
  display:flex;
  flex-direction:row;
  align-items:center
}

.calendar__event-name{
  color:#000;
  flex:1 0 0%;
  order:1;
  margin:0;
  text-align:left;
  white-space:nowrap;
  text-overflow:ellipsis;
  overflow:hidden
}

.calendar__event-name:before{
  content:"•";
  margin-right:3px
}

.calendar__event-time{
  flex-basis:auto;
  order:2;
  color:#4a4a4a;
  text-align:right;
  padding-left:5px;
  margin-top:1px;
  font-size:.75rem
}

.calendar__event-attribute-icon{
  width:1rem;
  text-align:center;
  float:left;
  margin-top:3px
}

.calendar__event-attribute-text{
  padding-left:1.5rem;
  display:block
}

.calendar__event-attribute-text ul{
  font-size:inherit
}

.calendar__event-attribute-text ul li{
  padding:0;
  margin:0
}

.card{
  z-index:2;
  position:relative;
  background:#fff;
  transition:all 200ms ease;
  overflow:initial;
  margin-bottom:0
}

.card--wide{
  min-height:222px
}

.card--wide .row,.card--wide .column,.card--wide .columns,.card--wide .card-image{
  height:100%
}

.card--wide .card-image{
  position:absolute;
  top:0;
  right:50%;
  bottom:0;
  left:0;
  border-top-left-radius:3px;
  border-top-right-radius:0;
  border-bottom-left-radius:3px;
  border-bottom-right-radius:0
}

a.card:hover,a.card:focus{
  color:inherit;
  text-decoration:inherit;
  box-shadow:0 0 20px rgba(0,0,0,.2);
  transform:scale(1.02)
}

.card-section{
  background:#fff;
  border-radius:3px
}

.card-section--black{
  background:#000;
  background:rgba(0,0,0,.9);
  color:#fff
}

.card-section+.card-section{
  border-top:1px solid #ddd
}

.section--alt .card-section{
  background:#fff
}

.card-show-more-wrapper{
  position:absolute;
  bottom:-0.90625rem;
  left:0;
  right:0;
  text-align:center
}

.card-show-more{
  background:#fff;
  padding:.25rem 1rem;
  color:#4a4a4a;
  border-radius:20px;
  display:inline-block;
  box-shadow:0 1px 2px rgba(0,0,0,.1)
}

.card-show-more i,.card-show-more svg{
  margin-left:.5rem
}

.card-icon{
  font-size:3.125rem;
  margin-bottom:.5rem
}

.card-image{
  height:200px;
  background:no-repeat center center;
  background-size:cover;
  border-top-left-radius:3px;
  border-top-right-radius:3px
}

.card-image--large{
  height:200px
}

@media print, screen and (min-width: 40em){
  .card-image--large{
    height:400px
  }
}

.booking-card{
  color:#4a4a4a;
  margin-bottom:0
}

.booking-card__hint{
  color:#9b9b9b
}

.booking-card__hint a{
  color:#000
}

.booking-card__hint a:hover{
  color:#000
}

.booking-card__button{
  font-weight:700
}

.contact-person__avatar-wrapper{
  display:block;
  text-align:center
}

.contact-person__avatar{
  border-radius:1000px;
  width:130px;
  height:130px;
  margin-bottom:1rem
}

.contact-person__details{
  color:#9b9b9b
}

.contact-success__title{
  margin-bottom:1rem;
  font-weight:700
}

.contact-success__icon{
  color:#7ed321;
  margin:0 auto 1rem auto;
  display:block;
  font-size:50px
}

@media print, screen and (min-width: 40em){
  .contact-person__avatar-wrapper{
    float:left;
    margin-bottom:0
  }

  .contact-person__avatar-wrapper+.contact-person__message{
    padding-left:162px
  }
}

.documents{
  box-shadow:0 2px 6px rgba(0,0,0,.1);
  background:#fff;
  border:1px solid #ddd;
  border-radius:3px
}

.documents+.document-group{
  margin-top:2rem
}

.document-group{
  text-align:center;
  margin-bottom:1rem
}

.document td{
  padding:1.25rem 1rem
}

.document__name,.document__download{
  font-size:1.5rem;
  line-height:1.3
}

@media screen and (max-width: 39.9375em){
  .document__name,.document__download{
    font-size:1.125rem
  }
}

.document__name{
  font-weight:700;
  margin-right:5px
}

.document__size{
  color:#4a4a4a;
  display:inline-block
}

.document__download{
  float:right
}

.empty-state{
  text-align:center
}

.empty-state__section{
  padding:60px 0
}

.empty-state__subsection--icon i,.empty-state__subsection--icon svg{
  font-size:150px
}

.empty-state__subsection--icon-small i,.empty-state__subsection--icon-small svg{
  font-size:50px
}

.empty-state__title{
  font-weight:normal;
  margin-bottom:1rem
}

.empty-state__subtitle{
  font-weight:normal;
  color:#4a4a4a;
  margin-bottom:1rem
}

.events--short .event-item__title{
  line-height:1.4
}

.event-timeline{
  color:#9b9b9b;
  font-weight:700;
  text-align:left
}

@media screen and (max-width: 39.9375em){
  .event-timeline{
    margin-bottom:1rem
  }
}

@media print, screen and (min-width: 40em){
  .event-timeline{
    text-align:right
  }
}

.event-item-wrapper:hover{
  text-decoration:none
}

.event-item-wrapper:hover .event-item__title{
  text-decoration:underline
}

.event-item{
  margin-bottom:2rem
}

@media print, screen and (min-width: 40em){
  .event-item{
    margin-bottom:3rem
  }
}

.event-item__title{
  margin-bottom:10px;
  font-weight:700;
  color:#000
}

.event-item__meta{
  color:#9b9b9b
}

.event-item__meta i,.event-item__meta svg{
  margin-right:5px
}

@media screen and (max-width: 39.9375em){
  .event-item__meta span{
    display:block
  }

  .event-item__meta span+span{
    margin-top:.5rem
  }

  .event-item__meta .label{
    display:inline-block
  }
}

@media print, screen and (min-width: 40em){
  .event-item__meta span+span{
    margin-left:1rem
  }
}

.event-item__status i,.event-item__status svg{
  font-size:.8125rem;
  line-height:1rem
}

.event-item__status--success i,.event-item__status--success svg{
  color:#7ed321
}

.event-item__status--alert i,.event-item__status--alert svg{
  color:#d0021b
}

.event-item__status--warning i,.event-item__status--warning svg{
  color:#f5a623
}

.event__image-wrapper{
  margin-bottom:2rem
}

.event__card{
  color:#4a4a4a
}

.event__card h3,.event__card .heading-3{
  color:#000
}

.event__meta i,.event__meta svg{
  margin-right:5px;
  display:inline-block;
  width:20px;
  text-align:center
}

.event__status--success i,.event__status--success svg{
  color:#7ed321
}

.event__status--alert i,.event__status--alert svg{
  color:#d0021b
}

.event__status--warning i,.event__status--warning svg{
  color:#f5a623
}

.event__status,.event__date,.event__city{
  margin-bottom:.5rem
}

.event__price{
  margin-bottom:1rem
}

.event__details{
  text-align:center
}

.event__details-divider{
  margin:1rem auto;
  width:25%;
  border-color:#ddd
}

.event__part+.event__part{
  margin-top:5px
}

.event__part-index{
  float:left;
  color:#9b9b9b;
  margin-right:10px;
  line-height:24px;
  width:25px;
  text-align:right
}

.event__part-title{
  float:left;
  font-weight:700
}

.event__part-time{
  float:right;
  line-height:24px
}

.event__part-time--centered{
  float:none;
  text-align:center
}

.filters{
  margin:1.5rem 0
}

.filters span{
  line-height:46px
}

.filters .filter{
  margin:0 .5rem;
  margin-top:-7px
}

.filters .filter__caret{
  margin-left:.5rem;
  transition:all .2s ease;
  line-height:1.3
}

.filters .filter.is-active .filter__caret{
  transform:rotate(180deg)
}

.filters--flex{
  margin-bottom:1rem;
  flex-wrap:wrap
}

.filters--flex .filter-label{
  color:#9b9b9b;
  font-weight:normal
}

@media screen and (max-width: 39.9375em){
  .filters--flex .filter-label{
    display:block;
    margin:.5rem 0
  }
}

@media print, screen and (min-width: 40em){
  .filters--flex .filter-label{
    line-height:46px
  }
}

@media screen and (max-width: 39.9375em){
  .filters--flex [data-controller=popper]{
    display:block
  }
}

@media print, screen and (min-width: 40em){
  .filters--flex [data-controller=popper]{
    display:inline-block;
    margin:0 0 0 .5rem
  }
}

.filters--flex .popover-filter{
  margin-bottom:1rem;
  position:relative
}

@media print, screen and (min-width: 40em){
  .filters--flex .popover-filter{
    display:inline-block
  }
}

.filters--flex .popover-filter .filter-label{
  width:100%
}

.filters--flex .popover-filter [data-popper-target~=button]{
  width:100%;
  margin:0
}

@media screen and (max-width: 39.9375em){
  .filters--flex .popover-filter [data-popper-target~=button]{
    text-align:left
  }

  .filters--flex .popover-filter [data-popper-target~=button] i,.filters--flex .popover-filter [data-popper-target~=button] svg{
    position:absolute;
    right:1rem
  }
}

@media print, screen and (min-width: 40em){
  .filters--flex .popover-filter [data-popper-target~=button]{
    margin-top:-7px
  }
}

.filters--flex .filter{
  margin-bottom:1rem;
  display:flex;
  align-items:stretch
}

.filters--flex .filter--schedule .button{
  width:50%
}

.filters--flex .filter__prev{
  flex-grow:0;
  flex-shrink:0
}

.filters--flex .filter__label{
  flex-grow:1;
  overflow:hidden;
  white-space:nowrap;
  text-overflow:ellipsis
}

.filters--flex .filter__next{
  flex-grow:0;
  flex-shrink:0
}

@media print, screen and (min-width: 40em){
  .filters--flex{
    display:flex;
    margin:-0.5rem;
    margin-bottom:.5rem;
    flex-direction:row;
    flex-wrap:wrap;
    align-items:center
  }

  .filters--flex .filter-title{
    line-height:40px;
    order:2
  }

  .filters--flex .popover-filter{
    margin:.5rem
  }

  .filters--flex .filter{
    order:1;
    margin:.5rem
  }

  .filters--flex .filter--schedule .button{
    width:auto
  }

  .filters--flex .filter--timeframe{
    flex:1 0 auto
  }

  .filters--flex .filter__label{
    flex-grow:0
  }
}

.footer{
  color:#4a4a4a;
  padding-bottom:20px
}

.footer ul{
  list-style:none;
  margin-left:0
}

.footer ul:last-child{
  margin-bottom:0
}

.contact__type{
  font-weight:700;
  color:#000
}

.contact__type a{
  color:#000
}

.contact__type a:hover{
  color:#000
}

.contact__type i,.contact__type svg{
  display:inline-block;
  text-align:center;
  width:20px;
  margin-right:5px
}

.contact__opening-times+.contact__opening-times{
  margin-top:.5rem
}

.contact__policies{
  margin-top:1rem;
  font-size:.875rem
}

.contact__policy a{
  color:#4a4a4a
}

.contact__policy+.contact__policy{
  margin-left:.5rem
}

.impressum{
  color:#9b9b9b;
  padding-top:20px
}

@media screen and (max-width: 39.9375em){
  .impressum{
    font-size:.8rem
  }
}

@media print, screen and (min-width: 40em){
  .impressum{
    padding-top:60px
  }
}

.social-icon{
  font-size:1.5rem;
  vertical-align:middle
}

.social-icon+.social-icon{
  margin-left:.75rem
}

@media print, screen and (min-width: 64em){
  .copyright--center{
    text-align:center
  }
}

.powered-by a{
  color:#9b9b9b
}

.powered-by a:hover{
  color:#9b9b9b
}

.powered-by i,.powered-by svg{
  color:#f8e71c;
  margin-right:5px
}

@media screen and (max-width: 39.9375em){
  .footer--first-row .column+.column,.footer--first-row .columns+.column,.footer--first-row .column+.columns,.footer--first-row .columns+.columns{
    margin-top:20px;
    padding-top:20px;
    border-top:1px dashed #ddd
  }
}

.header{
  padding:20px 0;
  background-color:#fff
}

.header__title{
  line-height:1.4;
  font-weight:700
}

@media print, screen and (min-width: 64em){
  .header__title{
    line-height:42px;
    margin:1rem 0
  }
}

.header__title a{
  color:#000
}

.header__title a:hover,.header__title a:focus,.header__title a:active{
  color:#000;
  text-decoration:none
}

.header__logo{
  max-height:85px
}

.header__cta-button{
  margin:1rem 0
}

.hamburger{
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color:#000;
}

.hamburger i,.hamburger svg{
  font-size:2.1875rem;
  display:block
}

.hamburger span{
  font-size:.75rem;
  display:block
}

.announcement-bar{
  text-align:center;
  transition:all ease .2s;
  position:relative;
  z-index:10;
  font-weight:bold;
  color:#fff;
  display:block;
  padding:10px 0;
  border-bottom:none
}

.announcement-bar:hover,.announcement-bar:focus{
  color:#fff
}

.announcement-bar .icon{
  display:inline-block
}

.hero{
  position:relative;
  background:no-repeat center center;
  background-size:cover;
  background-color:#fff
}

@media screen and (max-width: 39.9375em){
  .hero{
    background-image:none !important
  }
}

.hero--regular .hero__content{
  padding:20px 0
}

@media print, screen and (min-width: 40em){
  .hero--regular .hero__content{
    padding:120px 0
  }
}

.hero--flexible{
  height:460px
}

@media(min-height: 700px){
  .hero--flexible{
    height:350px !important
  }
}

@media(min-height: 850px){
  .hero--flexible{
    height:450px !important
  }
}

@media(min-height: 1000px){
  .hero--flexible{
    height:500px !important
  }
}

@media(min-width: 744px)and (min-height: 700px){
  .hero--flexible{
    height:350px !important
  }
}

@media(min-width: 744px)and (min-height: 850px){
  .hero--flexible{
    height:450px !important
  }
}

@media(min-width: 744px)and (min-height: 1000px){
  .hero--flexible{
    height:550px !important
  }
}

@media(min-width: 1128px)and (min-height: 700px){
  .hero--flexible{
    height:480px !important
  }
}

@media(min-width: 1128px)and (min-height: 850px){
  .hero--flexible{
    height:500px !important
  }
}

@media(min-width: 1128px)and (min-height: 1000px){
  .hero--flexible{
    height:650px !important
  }
}

@media screen and (max-width: 39.9375em){
  .hero--flexible{
    height:auto !important
  }
}

.hero__content{
  position:relative;
  z-index:2
}

@media print, screen and (min-width: 40em){
  .hero__content{
    text-shadow:0 0 5px rgba(0,0,0,.2);
    color:#fff
  }
}

.hero__subtitle{
  line-height:1.4
}

.hero .button{
  text-shadow:none;
  margin-bottom:0
}

.hero__button-hint{
  margin-top:.5rem
}

.hero__button-hint a{
  color:inherit
}

.hero__button-hint a:hover{
  color:inherit
}

.hero__button-hint strong{
  margin-left:5px
}

.hero__button-hint strong i,.hero__button-hint strong svg{
  margin-right:3px
}

.hero__overlay{
  position:absolute;
  z-index:1;
  opacity:.6
}

.hero__overlay--half{
  top:0;
  bottom:0;
  left:0;
  right:30%
}

@media print, screen and (min-width: 64em){
  .hero__overlay--half{
    right:50%
  }
}

.hero__overlay--full{
  top:0;
  right:0;
  bottom:0;
  left:0;
  background:#005eb2
}

@media print, screen and (min-width: 40em){
  .hero .section,.hero .section--alt{
    background-color:rgba(0,0,0,0)
  }
}

.instructors .instructor{
  display:inline-block;
  margin:0 .5rem .5rem 0
}

.instructor{
  text-align:center
}

.instructor__name{
  margin-top:1rem;
  font-weight:700
}

.instructor__function{
  font-weight:700;
  margin-bottom:1rem
}

.instructor__skills{
  margin:0;
  list-style:none
}

.amenity{
  margin-top:1rem
}

.amenity__icon{
  width:20px;
  text-align:center;
  display:block;
  float:left
}

.amenity__name{
  padding-left:2.25rem
}

.location-directions{
  display:block;
  color:#9b9b9b
}

.location-directions i,.location-directions svg{
  margin-right:1rem
}

.location-cta{
  margin-top:2rem
}

.location-cta .button{
  margin-bottom:.5rem
}

.location-info__business,.location-info__sessions{
  margin-bottom:1rem
}

.location-info__business p{
  font-weight:bold
}

.location-info__contact-item{
  line-height:1.5;
  margin:10px 0
}

.location-info__contact-item i,.location-info__contact-item svg{
  font-size:1.125rem;
  width:20px;
  text-align:center;
  margin-right:.5rem
}

.location-info__contact-item a{
  color:#000
}

.location-info__contact-item a:hover{
  color:#000
}

.location-map-content{
  z-index:3;
  position:relative
}

.location-map{
  height:300px;
  width:100%;
  margin:20px 0 -20px 0;
  overflow:hidden;
  position:relative
}

@media print, screen and (min-width: 40em){
  .location-map{
    margin:60px 0 -60px 0
  }
}

.location-map-overlay{
  display:none
}

.section--alt .location-map-overlay svg *{
  fill:#f9f7f6
}

.location-item__name{
  font-weight:700;
  margin-bottom:.5rem
}

.location-item__address{
  color:#4a4a4a
}

@media print, screen and (min-width: 64em){
  .location-map,.location-map-overlay{
    position:absolute !important;
    top:0;
    left:0;
    bottom:0;
    right:0
  }

  .location-map{
    margin:0;
    z-index:1;
    height:auto;
    left:42%;
    width:58%
  }

  .location-map>div>div>div:nth-child(3){
    margin-left:25px !important
  }

  .location-map-overlay{
    display:block;
    right:45%;
    z-index:2;
    opacity:1;
    pointer-events:none
  }
}

.navigation{
  background-color:#fff
}

.navigation__primary{
  float:left
}

.navigation__secondary{
  float:right
}

.navigation ul{
  position:relative
}

.navigation li{
  position:relative
}

.navigation li+li{
  margin-left:1rem
}

.navigation a{
  color:#4a4a4a
}

.navigation ul ul{
  display:none;
  position:absolute;
  top:100%;
  left:-1rem;
  margin:0;
  z-index:20;
  background:#fff;
  border-bottom-left-radius:3px;
  border-bottom-right-radius:3px;
  border:1px solid #ddd;
  border-top:none;
  box-shadow:0 2px 2px rgba(0,0,0,.1);
  min-width:250px
}

.navigation ul ul li{
  margin:0
}

.navigation ul ul li+.menu-text{
  margin-top:.5rem
}

.navigation ul ul .menu-text{
  font-size:.875rem;
  color:#4a4a4a;
  border-bottom:1px solid #ddd
}

.navigation ul ul a{
  line-height:1.3;
  padding:.7rem 1rem
}

.navigation li:hover ul{
  display:block
}

.external-link-icon{
  transform:translateY(-5px) rotate(-45deg)
}

[data-navigation-target~=sidebar]{
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 50;
  min-height: 100vh;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

@media (min-width: 1024px){
  [data-navigation-target~=sidebar]{
    display: none;
  }
}

[data-navigation-target~=sidebar]{
  z-index:2147000000;
  transition:transform 200ms ease;
  transform:translate3d(300px, 0, 0);
  max-width:300px;
  min-width:240px
}

[data-navigation-target~=sidebar].is-open{
  display: flex;
  transform: none;
}

[data-navigation-target~=sidebar].is-open [data-navigation-target~=closeButton]{
  display: block;
}

[data-navigation-target~=closeButton]{
  display: none;
}

[data-navigation-target~=bg]{
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-color: rgb(28 28 21 / 0.4);
  z-index:2146999999;
}

[data-navigation-target~=sidebar] li{
  border-bottom:none
}

[data-navigation-target~=sidebar] li a{
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  text-decoration:none;
  color:#000;
  display:block;
  line-height:1.5;
}

[data-navigation-target~=sidebar] li a:hover{
  color:#000
}

[data-navigation-target~=sidebar] li a.is-active,[data-navigation-target~=sidebar] li a.active{
  color:#1779ba
}

[data-navigation-target~=sidebar] .is-active>a{
  color:#000
}

[data-navigation-target~=sidebar] ul{
  margin:0;
  list-style:none
}

[data-navigation-target~=sidebar] ul+.oc__title,[data-navigation-target~=sidebar] li+.oc__title{
  padding-top:1.4rem
}

[data-navigation-target~=sidebar] .accordion{
  box-shadow:none;
  background:rgba(0,0,0,0)
}

[data-navigation-target~=sidebar] .accordion .menu li{
  border-top:none
}

[data-navigation-target~=sidebar] .accordion-content{
  border:none;
  border-top:1px solid rgb(238.8,233.4,230.7);
  border-bottom:1px solid rgb(238.8,233.4,230.7);
  background:#f9f7f6;
  background:rgba(208.2,192.6,184.8,.1)
}

[data-navigation-target~=sidebar] .accordion-content a{
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  border-left:1px solid rgb(228.6,219.8,215.4);
}

[data-navigation-target~=sidebar] .accordion-content .oc__title{
  padding:0;
  border-left:none;
  margin-bottom:1rem;
  color:#9b9b9b
}

[data-navigation-target~=sidebar] .accordion-content li+.oc__title{
  margin-top:1.5rem
}

[data-navigation-target~=sidebar] .oc__title{
  font-weight:700;
  font-size:1rem;
  padding:1rem 2rem;
  border-top:none
}

[data-navigation-target~=sidebar] .oc__title a{
  line-height:inherit
}

.off-canvas-header{
  border-bottom:1px solid #ddd;
  padding:1rem 2rem
}

.off-canvas-menu--primary{
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.off-canvas-menu--primary a{
  font-weight:700;
  color:#000
}

.off-canvas-menu--primary ul a{
  color:rgb(99.5,99.5,99.5)
}

.off-canvas-menu--secondary{
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
}

.off-canvas-menu--secondary li a{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  color:#9b9b9b;
  line-height:1;
}

.off-canvas-menu--policies{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.off-canvas-menu--policies a{
  margin: 0px;
  padding: 0px;
  color:#9b9b9b;
}

.off-canvas-menu--policies a.active{
  color:#1779ba
}

.off-canvas-menu-bar{
  font-size:1.75rem;
  padding:10px
}

[data-popper-arrow]{
  position:absolute
}

[data-popper-arrow],[data-popper-arrow]::before{
  position:absolute;
  width:8px;
  height:8px;
  z-index:-1
}

[data-popper-arrow]::before{
  content:"";
  transform:rotate(45deg);
  background:#fff
}

.popover[data-popper-placement^=top]>[data-popper-arrow]{
  bottom:-4px
}

.popover[data-popper-placement^=bottom]>[data-popper-arrow]{
  top:-4px
}

.popover[data-popper-placement^=left]>[data-popper-arrow]{
  right:-4px
}

.popover[data-popper-placement^=right]>[data-popper-arrow]{
  left:-4px
}

.popover{
  display:none;
  z-index:197;
  background:#fff;
  color:#000;
  border-radius:3px;
  box-shadow:rgba(0,0,0,.3) 0 0 10px;
  max-width:300px;
  width:300px
}

.popover__section{
  padding:1rem
}

.popover__section p{
  margin-bottom:5px
}

.popover__section p a{
  text-decoration:underline
}

.popover__section hr{
  border-bottom:1px solid #ddd
}

.popover__section+.popover__section{
  border-top:1px solid #ddd
}

.popover__section--scrollable{
  max-height:500px;
  overflow-y:auto
}

.popover__header{
  border-bottom:1px solid #ddd;
  padding:10px 10px 5px 10px
}

.popover__list{
  display:block;
  margin:-1rem
}

.popover__item{
  float:none;
  display:block;
  padding:.75rem 1rem;
  line-height:1.5
}

.popover__item .row{
  margin-left:0;
  margin-right:0
}

.popover__item .column,.popover__item .columns{
  padding:0 10px
}

.popover__item+.popover__item{
  border-top:1px dashed #ddd
}

.popover__item.active{
  color:#000
}

.popover__item.fake-link:hover{
  background:#ddd;
  cursor:pointer
}

.popover li{
  padding:5px
}

.popover li a{
  display:block;
  text-decoration:none
}

.popover li a:hover{
  text-decoration:underline
}

a.popover__item{
  color:#000
}

a.popover__item:hover{
  text-decoration:underline
}

a.popover__item:hover .popover__item-state{
  color:#000
}

a.popover__item:hover.active .popover__item-state{
  color:#000
}

span.popover__item{
  color:hsl(0,0%,67.1666666667%)
}

.post{
  text-align:left
}

.post--featured .post__thumbnail,.post--preview .post__thumbnail{
  margin:0 0 1rem 0
}

.post__thumbnail{
  border-radius:3px;
  margin-bottom:2rem;
  text-align:center;
  position:relative;
  background:#000;
  overflow:hidden
}

@media print, screen and (min-width: 40em){
  .post__thumbnail{
    margin-bottom:3rem
  }
}

.post__thumbnail .bg{
  filter:blur(5px);
  position:absolute;
  height:100%;
  width:100%;
  transform:scale(1.5)
}

.post__thumbnail img.fg{
  position:relative;
  border-radius:3px
}

.post__title a{
  text-decoration:none;
  color:#000
}

.post__title a:hover{
  text-decoration:underline
}

.post h1.post__title,.post .post__title.heading-1{
  margin-bottom:.5rem
}

.post__meta{
  color:#9b9b9b
}

.post__meta .post__social{
  margin-top:1rem
}

@media print, screen and (min-width: 40em){
  .post__meta .post__social{
    margin-top:-3px;
    float:right
  }

  .post__meta .post__social-icon{
    margin-right:0;
    margin-left:5px
  }
}

.post__by,.post__published_at,.post__read-time,.post__divider{
  display:inline-block
}

.post__category{
  font-weight:700
}

.post__divider{
  color:#9b9b9b;
  margin:0 5px
}

.post__author{
  margin:3rem 0;
  text-align:center
}

.post__author-avatar{
  width:80px;
  height:80px;
  border-radius:80px;
  background:#ddd;
  margin:0 auto 1rem auto
}

.post__author-name{
  font-size:.875rem
}

.post__author-link{
  font-size:.875rem
}

.post__author-link a{
  text-decoration:none
}

.post__body{
  margin:2rem 0 3rem 0
}

@media print, screen and (min-width: 40em){
  .post__body{
    margin:3rem 0
  }

  .post__body.editor-content .attachment-gallery{
    margin-left:-7.1875rem;
    margin-right:-7.1875rem
  }
}

@media print, screen and (min-width: 40em)and (min-width: 40em){
  .post__body.editor-content .attachment-gallery{
    margin-left:-7.1875rem;
    margin-right:-7.1875rem
  }
}

.post__social--footer{
  padding:1rem 0;
  border-top:1px solid #ddd
}

.post__social-icon{
  display:inline-block;
  border-radius:3px;
  background:#000;
  color:#fff;
  width:30px;
  height:30px;
  line-height:30px;
  text-align:center;
  margin-right:5px
}

.post__social-icon:hover,.post__social-icon:visited,.post__social-icon:focus,.post__social-icon:active{
  color:#fff
}

.post__social-icon--facebook{
  background:#39589a
}

.editor-content *+h2,.editor-content *+.heading-2{
  margin-top:2rem
}

.editor-content h2,.editor-content .heading-2{
  margin-bottom:1rem
}

.editor-content div,.editor-content ul,.editor-content ol{
  margin-bottom:1rem
}

.editor-content ul ul,.editor-content ol ul,.editor-content ul ol,.editor-content ol ol{
  margin-bottom:0
}

.editor-content blockquote{
  border-left:.3em solid #ddd;
  margin:1rem 0;
  padding:0 0 0 .6rem;
  color:#4a4a4a
}

.editor-content .post__image{
  border:15px solid #fff;
  box-shadow:0 1px 3px rgba(0,0,0,.2);
  margin-bottom:2rem
}

.editor-content .attachment--preview .attachment__caption{
  color:#4a4a4a;
  margin-top:.5rem
}

.editor-content .attachment--thumbnail:hover{
  cursor:zoom-in
}

.editor-content a .attachment--file,.editor-content a a,.editor-content .attachment--file .attachment--file,.editor-content .attachment--file a,.editor-content .attachment--pdf .attachment--file,.editor-content .attachment--pdf a{
  display:block;
  width:100%;
  padding:1rem;
  border:1px solid #ddd;
  color:#4a4a4a;
  line-height:1;
  margin:0 2px 2px 0;
  border-radius:3px;
  text-align:center;
  transition:all .2s ease-in;
  background:#f9f7f6
}

.editor-content a .attachment--file:hover,.editor-content a a:hover,.editor-content .attachment--file .attachment--file:hover,.editor-content .attachment--file a:hover,.editor-content .attachment--pdf .attachment--file:hover,.editor-content .attachment--pdf a:hover{
  border:1px solid #9b9b9b;
  background:rgb(242.88,238.84,236.82)
}

.editor-content a .attachment--file:hover:before,.editor-content a a:hover:before,.editor-content .attachment--file .attachment--file:hover:before,.editor-content .attachment--file a:hover:before,.editor-content .attachment--pdf .attachment--file:hover:before,.editor-content .attachment--pdf a:hover:before{
  color:#4a4a4a
}

.editor-content a .attachment--file .attachment__name,.editor-content a .attachment--file .attachment__size,.editor-content a a .attachment__name,.editor-content a a .attachment__size,.editor-content .attachment--file .attachment--file .attachment__name,.editor-content .attachment--file .attachment--file .attachment__size,.editor-content .attachment--file a .attachment__name,.editor-content .attachment--file a .attachment__size,.editor-content .attachment--pdf .attachment--file .attachment__name,.editor-content .attachment--pdf .attachment--file .attachment__size,.editor-content .attachment--pdf a .attachment__name,.editor-content .attachment--pdf a .attachment__size{
  display:block
}

.editor-content a .attachment--file .attachment__name,.editor-content a a .attachment__name,.editor-content .attachment--file .attachment--file .attachment__name,.editor-content .attachment--file a .attachment__name,.editor-content .attachment--pdf .attachment--file .attachment__name,.editor-content .attachment--pdf a .attachment__name{
  margin-bottom:.5rem;
  font-weight:700
}

.editor-content a .attachment--file .attachment__name:before,.editor-content a a .attachment__name:before,.editor-content .attachment--file .attachment--file .attachment__name:before,.editor-content .attachment--file a .attachment__name:before,.editor-content .attachment--pdf .attachment--file .attachment__name:before,.editor-content .attachment--pdf a .attachment__name:before{
  content:"Download ";
  font-weight:normal
}

.editor-content a .attachment--file .attachment__size,.editor-content a a .attachment__size,.editor-content .attachment--file .attachment--file .attachment__size,.editor-content .attachment--file a .attachment__size,.editor-content .attachment--pdf .attachment--file .attachment__size,.editor-content .attachment--pdf a .attachment__size{
  color:#9b9b9b
}

.editor-content a .attachment--pdf:before,.editor-content a a:before,.editor-content .attachment--file .attachment--pdf:before,.editor-content .attachment--file a:before,.editor-content .attachment--pdf .attachment--pdf:before,.editor-content .attachment--pdf a:before{
  content:url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="%239b9b9b" viewBox="0 0 384 512"><path d="M181.9 256.1c-5-16-4.9-46.9-2-46.9 8.4 0 7.6 36.9 2 46.9zm-1.7 47.2c-7.7 20.2-17.3 43.3-28.4 62.7 18.3-7 39-17.2 62.9-21.9-12.7-9.6-24.9-23.4-34.5-40.8zM86.1 428.1c0 .8 13.2-5.4 34.9-40.2-6.7 6.3-29.1 24.5-34.9 40.2zM248 160h136v328c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V24C0 10.7 10.7 0 24 0h200v136c0 13.2 10.8 24 24 24zm-8 171.8c-20-12.2-33.3-29-42.7-53.8 4.5-18.5 11.6-46.6 6.2-64.2-4.7-29.4-42.4-26.5-47.8-6.8-5 18.3-.4 44.1 8.1 77-11.6 27.6-28.7 64.6-40.8 85.8-.1 0-.1.1-.2.1-27.1 13.9-73.6 44.5-54.5 68 5.6 6.9 16 10 21.5 10 17.9 0 35.7-18 61.1-61.8 25.8-8.5 54.1-19.1 79-23.2 21.7 11.8 47.1 19.5 64 19.5 29.2 0 31.2-32 19.7-43.4-13.9-13.6-54.3-9.7-73.6-7.2zM377 105L279 7c-4.5-4.5-10.6-7-17-7h-6v128h128v-6.1c0-6.3-2.5-12.4-7-16.9zm-74.1 255.3c4.1-2.7-2.5-11.9-42.8-9 37.1 15.8 42.8 9 42.8 9z"></path></svg>');
  display:block;
  color:#9b9b9b;
  font-size:2rem;
  margin-bottom:1rem;
  transition:all .2s ease-in
}

.editor-content .attachment-gallery{
  display:flex;
  flex-wrap:wrap;
  position:relative;
  margin:-0.5rem -0.5rem 1rem -0.5rem;
  justify-content:center;
  padding:0
}

.editor-content .attachment-gallery .attachment{
  padding:.5rem .5rem 0 .5rem
}

@media print, screen and (min-width: 40em){
  .editor-content .attachment-gallery .attachment{
    flex:1 0 33%;
    max-width:33%
  }

  .editor-content .attachment-gallery.attachment-gallery--2 .attachment,.editor-content .attachment-gallery.attachment-gallery--4 .attachment{
    flex-basis:50%;
    max-width:50%
  }
}

.product-benefits{
  margin:2rem 0 2rem 0;
  position:relative;
  padding-left:2.5rem
}

.product-benefits li{
  list-style:none;
  margin-left:0
}

.product-benefits li+li{
  margin-top:1rem
}

.product-benefits li:before{
  content:url('data:image/svg+xml;charset=utf-8,<svg width="24" height="24" fill="%237ed321" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z"/></svg>');
  position:absolute;
  left:0;
  margin-top:-0.5rem;
  font-size:1.75rem
}

.product-external-info{
  color:#9b9b9b;
  margin-top:2rem
}

.product-external-info i,.product-external-info svg{
  float:left;
  margin-top:4px
}

.product-external-info div{
  padding-left:30px
}

.sessions-table{
  width:auto
}

.sessions-table--with-spacing{
  margin:2rem 0
}

.sessions-table th,.sessions-table td{
  border:none
}

.sessions-table th{
  padding:0 1rem 1rem;
  color:#4a4a4a
}

.sessions-next-trial{
  margin:2rem 0
}

.session{
  color:#4a4a4a;
  vertical-align:top;
  line-height:1.125rem
}

.session td{
  padding:.25rem
}

.session td.session__time{
  padding:.25rem 1rem .25rem 1rem
}

.session--last td{
  padding-bottom:1rem !important
}

.session--end td{
  padding-bottom:.25rem !important
}

.session__day{
  text-align:right
}

.session__time{
  color:#000;
  font-weight:700;
  text-align:left
}

.session__info span+span::before{
  content:"/";
  display:inline-block;
  margin:0 8px 0 5px
}

.session-item{
  vertical-align:top
}

.session-item--trial{
  cursor:pointer
}

.session-item--trial:hover .session-item__signup{
  color:#000
}

.session-item__info{
  margin-left:.25rem
}

.session-item__info+.session-item__info:before{
  content:"/";
  display:inline-block;
  margin:0 .25rem 0 0
}

.session-item__signup{
  display:block;
  color:#9b9b9b
}

@media print, screen and (min-width: 64em){
  .session-item__signup{
    font-size:.9rem;
    float:right
  }
}

.sidebar{
  display:none;
  margin-top: -7.5rem
}

.sidebar-wrapper{
  position:relative
}

.sidebar--fixed{
  position:fixed !important;
  top:0;
  z-index:10
}

@media print, screen and (min-width: 40em){
  .sidebar{
    display:block
  }
}

.sidebar{
  position:absolute
}

.sidebar--fixed,.sidebar--bottom{
  box-shadow:0 0 20px rgba(0,0,0,.2)
}

/*! purgecss end ignore */

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

.visible{
  visibility: visible;
}

.collapse{
  visibility: collapse;
}

.static{
  position: static;
}

.fixed{
  position: fixed;
}

.absolute{
  position: absolute;
}

.relative{
  position: relative;
}

.inset-0{
  inset: 0px;
}

.inset-x-0{
  left: 0px;
  right: 0px;
}

.inset-y-0{
  top: 0px;
  bottom: 0px;
}

.-bottom-2{
  bottom: -0.5rem;
}

.-bottom-4{
  bottom: -1rem;
}

.-left-10{
  left: -2.5rem;
}

.-left-2{
  left: -0.5rem;
}

.-left-4{
  left: -1rem;
}

.-right-1{
  right: -0.25rem;
}

.-right-10{
  right: -2.5rem;
}

.-right-2{
  right: -0.5rem;
}

.-right-4{
  right: -1rem;
}

.-top-1{
  top: -0.25rem;
}

.-top-2{
  top: -0.5rem;
}

.-top-4{
  top: -1rem;
}

.bottom-0{
  bottom: 0px;
}

.bottom-1\/4{
  bottom: 25%;
}

.bottom-4{
  bottom: 1rem;
}

.bottom-\[28px\]{
  bottom: 28px;
}

.left-0{
  left: 0px;
}

.left-1\/2{
  left: 50%;
}

.left-1\/4{
  left: 25%;
}

.left-8{
  left: 2rem;
}

.right-0{
  right: 0px;
}

.right-1\/4{
  right: 25%;
}

.right-2{
  right: 0.5rem;
}

.right-3{
  right: 0.75rem;
}

.right-8{
  right: 2rem;
}

.top-0{
  top: 0px;
}

.top-1\/2{
  top: 50%;
}

.top-1\/4{
  top: 25%;
}

.top-2{
  top: 0.5rem;
}

.top-3{
  top: 0.75rem;
}

.top-\[4rem\]{
  top: 4rem;
}

.-z-10{
  z-index: -10;
}

.-z-20{
  z-index: -20;
}

.z-0{
  z-index: 0;
}

.z-10{
  z-index: 10;
}

.z-20{
  z-index: 20;
}

.z-30{
  z-index: 30;
}

.order-1{
  order: 1;
}

.col-span-2{
  grid-column: span 2 / span 2;
}

.float-right{
  float: right;
}

.float-left{
  float: left;
}

.-m-\[calc\(2px\+0\.375rem\)\]{
  margin: calc(calc(2px + 0.375rem) * -1);
}

.m-0{
  margin: 0px;
}

.-mx-3{
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.-mx-6{
  margin-left: -1.5rem;
  margin-right: -1.5rem;
}

.mx-4{
  margin-left: 1rem;
  margin-right: 1rem;
}

.mx-auto{
  margin-left: auto;
  margin-right: auto;
}

.my-6{
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.\!mt-\[6px\]{
  margin-top: 6px !important;
}

.-mb-2{
  margin-bottom: -0.5rem;
}

.-mb-5{
  margin-bottom: -1.25rem;
}

.-mb-8{
  margin-bottom: -2rem;
}

.-ml-1{
  margin-left: -0.25rem;
}

.-ml-2{
  margin-left: -0.5rem;
}

.-ml-4{
  margin-left: -1rem;
}

.-ml-\[2\%\]{
  margin-left: -2%;
}

.-ml-\[35\%\]{
  margin-left: -35%;
}

.-ml-\[50\%\]{
  margin-left: -50%;
}

.-mr-2{
  margin-right: -0.5rem;
}

.-mr-3{
  margin-right: -0.75rem;
}

.-mr-4{
  margin-right: -1rem;
}

.-mr-5{
  margin-right: -1.25rem;
}

.-mt-1{
  margin-top: -0.25rem;
}

.-mt-16{
  margin-top: -4rem;
}

.-mt-2{
  margin-top: -0.5rem;
}

.-mt-3{
  margin-top: -0.75rem;
}

.-mt-4{
  margin-top: -1rem;
}

.-mt-5{
  margin-top: -1.25rem;
}

.-mt-6{
  margin-top: -1.5rem;
}

.-mt-\[100\%\]{
  margin-top: -100%;
}

.-mt-\[11px\]{
  margin-top: -11px;
}

.-mt-\[calc\(1rem\+1px\)\]{
  margin-top: calc(calc(1rem + 1px) * -1);
}

.mb-0{
  margin-bottom: 0px;
}

.mb-1{
  margin-bottom: 0.25rem;
}

.mb-12{
  margin-bottom: 3rem;
}

.mb-2{
  margin-bottom: 0.5rem;
}

.mb-24{
  margin-bottom: 6rem;
}

.mb-3{
  margin-bottom: 0.75rem;
}

.mb-4{
  margin-bottom: 1rem;
}

.mb-5{
  margin-bottom: 1.25rem;
}

.mb-6{
  margin-bottom: 1.5rem;
}

.ml-0{
  margin-left: 0px;
}

.ml-1{
  margin-left: 0.25rem;
}

.ml-2{
  margin-left: 0.5rem;
}

.ml-4{
  margin-left: 1rem;
}

.ml-6{
  margin-left: 1.5rem;
}

.ml-auto{
  margin-left: auto;
}

.mr-2{
  margin-right: 0.5rem;
}

.mr-4{
  margin-right: 1rem;
}

.mr-5{
  margin-right: 1.25rem;
}

.mr-6{
  margin-right: 1.5rem;
}

.mt-0{
  margin-top: 0px;
}

.mt-0\.5{
  margin-top: 0.125rem;
}

.mt-1{
  margin-top: 0.25rem;
}

.mt-12{
  margin-top: 3rem;
}

.mt-2{
  margin-top: 0.5rem;
}

.mt-4{
  margin-top: 1rem;
}

.mt-6{
  margin-top: 1.5rem;
}

.mt-8{
  margin-top: 2rem;
}

.mt-auto{
  margin-top: auto;
}

.block{
  display: block;
}

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

.inline{
  display: inline;
}

.flex{
  display: flex;
}

.inline-flex{
  display: inline-flex;
}

.table{
  display: table;
}

.grid{
  display: grid;
}

.hidden{
  display: none;
}

.aspect-\[10\/19\]{
  aspect-ratio: 10/19;
}

.aspect-\[16\/9\]{
  aspect-ratio: 16/9;
}

.aspect-square{
  aspect-ratio: 1 / 1;
}

.size-5{
  width: 1.25rem;
  height: 1.25rem;
}

.h-0{
  height: 0px;
}

.h-0\.5{
  height: 0.125rem;
}

.h-1{
  height: 0.25rem;
}

.h-10{
  height: 2.5rem;
}

.h-12{
  height: 3rem;
}

.h-16{
  height: 4rem;
}

.h-2{
  height: 0.5rem;
}

.h-20{
  height: 5rem;
}

.h-24{
  height: 6rem;
}

.h-3{
  height: 0.75rem;
}

.h-32{
  height: 8rem;
}

.h-36{
  height: 9rem;
}

.h-4{
  height: 1rem;
}

.h-40{
  height: 10rem;
}

.h-48{
  height: 12rem;
}

.h-5{
  height: 1.25rem;
}

.h-6{
  height: 1.5rem;
}

.h-64{
  height: 16rem;
}

.h-7{
  height: 1.75rem;
}

.h-8{
  height: 2rem;
}

.h-\[14px\]{
  height: 14px;
}

.h-\[200\%\]{
  height: 200%;
}

.h-\[300px\]{
  height: 300px;
}

.h-\[350px\]{
  height: 350px;
}

.h-\[380px\]{
  height: 380px;
}

.h-\[4px\]{
  height: 4px;
}

.h-auto{
  height: auto;
}

.h-full{
  height: 100%;
}

.h-px{
  height: 1px;
}

.max-h-full{
  max-height: 100%;
}

.min-h-\[300px\]{
  min-height: 300px;
}

.min-h-\[600px\]{
  min-height: 600px;
}

.min-h-screen{
  min-height: 100vh;
}

.w-1\/2{
  width: 50%;
}

.w-1\/3{
  width: 33.333333%;
}

.w-1\/4{
  width: 25%;
}

.w-12{
  width: 3rem;
}

.w-14{
  width: 3.5rem;
}

.w-16{
  width: 4rem;
}

.w-2{
  width: 0.5rem;
}

.w-2\/3{
  width: 66.666667%;
}

.w-20{
  width: 5rem;
}

.w-24{
  width: 6rem;
}

.w-28{
  width: 7rem;
}

.w-3{
  width: 0.75rem;
}

.w-3\/4{
  width: 75%;
}

.w-32{
  width: 8rem;
}

.w-4{
  width: 1rem;
}

.w-4\/5{
  width: 80%;
}

.w-40{
  width: 10rem;
}

.w-48{
  width: 12rem;
}

.w-5{
  width: 1.25rem;
}

.w-5\/12{
  width: 41.666667%;
}

.w-5\/6{
  width: 83.333333%;
}

.w-6{
  width: 1.5rem;
}

.w-60{
  width: 15rem;
}

.w-64{
  width: 16rem;
}

.w-7\/12{
  width: 58.333333%;
}

.w-8{
  width: 2rem;
}

.w-\[120px\]{
  width: 120px;
}

.w-\[14px\]{
  width: 14px;
}

.w-\[150px\]{
  width: 150px;
}

.w-\[180px\]{
  width: 180px;
}

.w-\[200\%\]{
  width: 200%;
}

.w-\[300px\]{
  width: 300px;
}

.w-\[350px\]{
  width: 350px;
}

.w-\[380px\]{
  width: 380px;
}

.w-\[400px\]{
  width: 400px;
}

.w-\[50px\]{
  width: 50px;
}

.w-\[65px\]{
  width: 65px;
}

.w-\[90\%\]{
  width: 90%;
}

.w-\[95\%\]{
  width: 95%;
}

.w-auto{
  width: auto;
}

.w-full{
  width: 100%;
}

.min-w-0{
  min-width: 0px;
}

.min-w-max{
  min-width: -moz-max-content;
  min-width: max-content;
}

.min-w-min{
  min-width: -moz-min-content;
  min-width: min-content;
}

.max-w-2xl{
  max-width: 42rem;
}

.max-w-3xl{
  max-width: 48rem;
}

.max-w-\[800px\]{
  max-width: 800px;
}

.max-w-full{
  max-width: 100%;
}

.max-w-lg{
  max-width: 32rem;
}

.max-w-md{
  max-width: 28rem;
}

.max-w-screen-lg{
  max-width: 1024px;
}

.max-w-screen-md{
  max-width: 768px;
}

.max-w-screen-sm{
  max-width: 640px;
}

.max-w-screen-xl{
  max-width: 1280px;
}

.flex-1{
  flex: 1 1 0%;
}

.flex-none{
  flex: none;
}

.flex-shrink{
  flex-shrink: 1;
}

.flex-shrink-0{
  flex-shrink: 0;
}

.shrink-0{
  flex-shrink: 0;
}

.flex-grow{
  flex-grow: 1;
}

.grow{
  flex-grow: 1;
}

.grow-\[99999\]{
  flex-grow: 99999;
}

.basis-0{
  flex-basis: 0px;
}

.origin-top-left{
  transform-origin: top left;
}

.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-6{
  --tw-translate-x: -1.5rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-x-full{
  --tw-translate-x: -100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-translate-y-8{
  --tw-translate-y: -2rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-0{
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-x-1\/2{
  --tw-translate-x: 50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.translate-y-0{
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-1{
  --tw-rotate: -1deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-2{
  --tw-rotate: -2deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-3{
  --tw-rotate: -3deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-6{
  --tw-rotate: -6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-0{
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-1{
  --tw-rotate: 1deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-2{
  --tw-rotate: 2deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-3{
  --tw-rotate: 3deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-6{
  --tw-rotate: 6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-\[-6deg\]{
  --tw-rotate: -6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-\[8deg\]{
  --tw-rotate: 8deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-\[0\.5\]{
  --tw-scale-x: 0.5;
  --tw-scale-y: 0.5;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-\[0\.7\]{
  --tw-scale-x: 0.7;
  --tw-scale-y: 0.7;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-\[0\.8\]{
  --tw-scale-x: 0.8;
  --tw-scale-y: 0.8;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

.animate-\[spin_20s_linear_infinite_reverse\]{
  animation: spin 20s linear infinite reverse;
}

@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

.animate-\[spin_30s_linear_infinite\]{
  animation: spin 30s linear infinite;
}

@keyframes bounce{
  0%, 100%{
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.animate-bounce{
  animation: bounce 1s infinite;
}

@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

.animate-ping{
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pulse{
  50%{
    opacity: .5;
  }
}

.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}

.animate-spin{
  animation: spin 1s linear infinite;
}

.cursor-pointer{
  cursor: pointer;
}

.resize{
  resize: both;
}

.list-disc{
  list-style-type: disc;
}

.list-none{
  list-style-type: none;
}

.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.flex-wrap{
  flex-wrap: wrap;
}

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

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

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

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

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

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

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

.gap-0{
  gap: 0px;
}

.gap-1{
  gap: 0.25rem;
}

.gap-1\.5{
  gap: 0.375rem;
}

.gap-2{
  gap: 0.5rem;
}

.gap-3{
  gap: 0.75rem;
}

.gap-4{
  gap: 1rem;
}

.gap-5{
  gap: 1.25rem;
}

.gap-6{
  gap: 1.5rem;
}

.gap-8{
  gap: 2rem;
}

.gap-x-2{
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.gap-x-3{
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}

.gap-y-1{
  row-gap: 0.25rem;
}

.gap-y-2{
  row-gap: 0.5rem;
}

.-space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity));
}

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

.overflow-hidden{
  overflow: hidden;
}

.overflow-x-auto{
  overflow-x: auto;
}

.overflow-y-auto{
  overflow-y: auto;
}

.overflow-x-hidden{
  overflow-x: hidden;
}

.overscroll-contain{
  overscroll-behavior: contain;
}

.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hyphens-auto{
  -webkit-hyphens: auto;
          hyphens: auto;
}

.whitespace-normal{
  white-space: normal;
}

.whitespace-nowrap{
  white-space: nowrap;
}

.rounded{
  border-radius: 0.25rem;
}

.rounded-3xl{
  border-radius: 1.5rem;
}

.rounded-\[2rem\]{
  border-radius: 2rem;
}

.rounded-full{
  border-radius: 9999px;
}

.rounded-lg{
  border-radius: 0.5rem;
}

.rounded-md{
  border-radius: 0.375rem;
}

.rounded-sm{
  border-radius: 0.125rem;
}

.rounded-b{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.rounded-b-md{
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.rounded-l-none{
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.rounded-r-none{
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.rounded-t{
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.rounded-bl{
  border-bottom-left-radius: 0.25rem;
}

.rounded-br{
  border-bottom-right-radius: 0.25rem;
}

.border{
  border-width: 1px;
}

.border-2{
  border-width: 2px;
}

.border-4{
  border-width: 4px;
}

.border-\[7px\]{
  border-width: 7px;
}

.border-b{
  border-bottom-width: 1px;
}

.border-b-2{
  border-bottom-width: 2px;
}

.border-l{
  border-left-width: 1px;
}

.border-l-0{
  border-left-width: 0px;
}

.border-l-2{
  border-left-width: 2px;
}

.border-l-4{
  border-left-width: 4px;
}

.border-r{
  border-right-width: 1px;
}

.border-t{
  border-top-width: 1px;
}

.border-t-2{
  border-top-width: 2px;
}

.border-dashed{
  border-style: dashed;
}

.border-blue-100{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity));
}

.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity));
}

.border-blue-300{
  --tw-border-opacity: 1;
  border-color: rgb(147 197 253 / var(--tw-border-opacity));
}

.border-blue-400{
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity));
}

.border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
}

.border-blue-600{
  --tw-border-opacity: 1;
  border-color: rgb(37 99 235 / var(--tw-border-opacity));
}

.border-egg{
  --tw-border-opacity: 1;
  border-color: rgb(251 247 240 / var(--tw-border-opacity));
}

.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity));
}

.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}

.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

.border-gray-500{
  --tw-border-opacity: 1;
  border-color: rgb(107 114 128 / var(--tw-border-opacity));
}

.border-gray-800{
  --tw-border-opacity: 1;
  border-color: rgb(31 41 55 / var(--tw-border-opacity));
}

.border-gray-light{
  --tw-border-opacity: 1;
  border-color: rgb(230 230 230 / var(--tw-border-opacity));
}

.border-gray-light-alt{
  --tw-border-opacity: 1;
  border-color: rgb(246 242 239 / var(--tw-border-opacity));
}

.border-green-600{
  --tw-border-opacity: 1;
  border-color: rgb(22 163 74 / var(--tw-border-opacity));
}

.border-transparent{
  border-color: transparent;
}

.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.border-yellow-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 240 138 / var(--tw-border-opacity));
}

.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity));
}

.bg-blue-400{
  --tw-bg-opacity: 1;
  background-color: rgb(96 165 250 / var(--tw-bg-opacity));
}

.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity));
}

.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}

.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.bg-egg{
  --tw-bg-opacity: 1;
  background-color: rgb(251 247 240 / var(--tw-bg-opacity));
}

.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}

.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
}

.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity));
}

.bg-green-400{
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity));
}

.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity));
}

.bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
}

.bg-orange-500{
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / var(--tw-bg-opacity));
}

.bg-primary-300{
  --tw-bg-opacity: 1;
  background-color: rgb(215 38 35 / var(--tw-bg-opacity));
}

.bg-primary-500{
  --tw-bg-opacity: 1;
  background-color: rgb(171 31 28 / var(--tw-bg-opacity));
}

.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / var(--tw-bg-opacity));
}

.bg-purple-400{
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity));
}

.bg-purple-500{
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / var(--tw-bg-opacity));
}

.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
}

.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity));
}

.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / var(--tw-bg-opacity));
}

.bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / var(--tw-bg-opacity));
}

.bg-yellow-50{
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / var(--tw-bg-opacity));
}

.bg-yellow-500{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity));
}

.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-gray-100{
  --tw-gradient-from: #f3f4f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(243 244 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.via-blue-300{
  --tw-gradient-to: rgb(147 197 253 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #93c5fd var(--tw-gradient-via-position), var(--tw-gradient-to);
}

.to-transparent{
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}

.to-white{
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}

.fill-current{
  fill: currentColor;
}

.stroke-egg{
  stroke: #fbf7f0;
}

.p-1{
  padding: 0.25rem;
}

.p-1\.5{
  padding: 0.375rem;
}

.p-2{
  padding: 0.5rem;
}

.p-3{
  padding: 0.75rem;
}

.p-4{
  padding: 1rem;
}

.p-5{
  padding: 1.25rem;
}

.p-6{
  padding: 1.5rem;
}

.p-8{
  padding: 2rem;
}

.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}

.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8{
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-12{
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16{
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-24{
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pb-1{
  padding-bottom: 0.25rem;
}

.pb-12{
  padding-bottom: 3rem;
}

.pb-6{
  padding-bottom: 1.5rem;
}

.pb-8{
  padding-bottom: 2rem;
}

.pl-10{
  padding-left: 2.5rem;
}

.pl-2{
  padding-left: 0.5rem;
}

.pl-3{
  padding-left: 0.75rem;
}

.pl-5{
  padding-left: 1.25rem;
}

.pr-3{
  padding-right: 0.75rem;
}

.pr-4{
  padding-right: 1rem;
}

.pt-1{
  padding-top: 0.25rem;
}

.pt-12{
  padding-top: 3rem;
}

.pt-20{
  padding-top: 5rem;
}

.pt-24{
  padding-top: 6rem;
}

.pt-3{
  padding-top: 0.75rem;
}

.pt-4{
  padding-top: 1rem;
}

.pt-6{
  padding-top: 1.5rem;
}

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

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

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

.align-top{
  vertical-align: top;
}

.align-middle{
  vertical-align: middle;
}

.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-black{
  font-weight: 900;
}

.font-bold{
  font-weight: 700;
}

.font-extrabold{
  font-weight: 800;
}

.font-medium{
  font-weight: 500;
}

.font-semibold{
  font-weight: 600;
}

.uppercase{
  text-transform: uppercase;
}

.capitalize{
  text-transform: capitalize;
}

.italic{
  font-style: italic;
}

.leading-6{
  line-height: 1.5rem;
}

.leading-none{
  line-height: 1;
}

.leading-tight{
  line-height: 1.25;
}

.text-black{
  --tw-text-opacity: 1;
  color: rgb(28 28 21 / var(--tw-text-opacity));
}

.text-blue-500{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity));
}

.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}

.text-blue-700{
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / var(--tw-text-opacity));
}

.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}

.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}

.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}

.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}

.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}

.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}

.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / var(--tw-text-opacity));
}

.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}

.text-green-700{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity));
}

.text-inherit{
  color: inherit;
}

.text-orange-500{
  --tw-text-opacity: 1;
  color: rgb(249 115 22 / var(--tw-text-opacity));
}

.text-orange-600{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / var(--tw-text-opacity));
}

.text-primary-500{
  --tw-text-opacity: 1;
  color: rgb(171 31 28 / var(--tw-text-opacity));
}

.text-purple-500{
  --tw-text-opacity: 1;
  color: rgb(168 85 247 / var(--tw-text-opacity));
}

.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}

.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}

.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity));
}

.text-yellow-500{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / var(--tw-text-opacity));
}

.text-yellow-600{
  --tw-text-opacity: 1;
  color: rgb(202 138 4 / var(--tw-text-opacity));
}

.text-yellow-700{
  --tw-text-opacity: 1;
  color: rgb(161 98 7 / var(--tw-text-opacity));
}

.underline{
  text-decoration-line: underline;
}

.no-underline{
  text-decoration-line: none;
}

.opacity-0{
  opacity: 0;
}

.opacity-100{
  opacity: 1;
}

.opacity-20{
  opacity: 0.2;
}

.opacity-25{
  opacity: 0.25;
}

.opacity-40{
  opacity: 0.4;
}

.opacity-60{
  opacity: 0.6;
}

.opacity-70{
  opacity: 0.7;
}

.opacity-75{
  opacity: 0.75;
}

.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.delay-100{
  transition-delay: 100ms;
}

.delay-200{
  transition-delay: 200ms;
}

.delay-300{
  transition-delay: 300ms;
}

.duration-1000{
  transition-duration: 1000ms;
}

.duration-300{
  transition-duration: 300ms;
}

.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.placeholder\:text-black::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(28 28 21 / var(--tw-text-opacity));
}

.placeholder\:text-black::placeholder{
  --tw-text-opacity: 1;
  color: rgb(28 28 21 / var(--tw-text-opacity));
}

.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}

.after\:left-\[2px\]::after{
  content: var(--tw-content);
  left: 2px;
}

.after\:top-\[2px\]::after{
  content: var(--tw-content);
  top: 2px;
}

.after\:h-6::after{
  content: var(--tw-content);
  height: 1.5rem;
}

.after\:w-6::after{
  content: var(--tw-content);
  width: 1.5rem;
}

.after\:rounded-full::after{
  content: var(--tw-content);
  border-radius: 9999px;
}

.after\:bg-white::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.after\:transition-all::after{
  content: var(--tw-content);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.after\:content-\[\'\'\]::after{
  --tw-content: '';
  content: var(--tw-content);
}

.first\:block:first-child{
  display: block;
}

.hover\:rotate-0:hover{
  --tw-rotate: 0deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:rotate-\[-4deg\]:hover{
  --tw-rotate: -4deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:rotate-\[6deg\]:hover{
  --tw-rotate: 6deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-\[0\.85\]:hover{
  --tw-scale-x: 0.85;
  --tw-scale-y: 0.85;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:cursor-not-allowed:hover{
  cursor: not-allowed;
}

.hover\:cursor-pointer:hover{
  cursor: pointer;
}

.hover\:border-blue-100:hover{
  --tw-border-opacity: 1;
  border-color: rgb(219 234 254 / var(--tw-border-opacity));
}

.hover\:border-blue-200:hover{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / var(--tw-border-opacity));
}

.hover\:bg-blue-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / var(--tw-bg-opacity));
}

.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / var(--tw-bg-opacity));
}

.hover\:bg-gray-100:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}

.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}

.hover\:bg-green-600:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}

.hover\:bg-yellow-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / var(--tw-bg-opacity));
}

.hover\:underline:hover{
  text-decoration-line: underline;
}

.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:ring-4:hover{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.hover\:ring-blue-200:hover{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
}

.hover\:ring-green-200:hover{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity));
}

.hover\:ring-purple-200:hover{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(233 213 255 / var(--tw-ring-opacity));
}

.focus\:z-10:focus{
  z-index: 10;
}

.focus\:border-purple-500:focus{
  --tw-border-opacity: 1;
  border-color: rgb(168 85 247 / var(--tw-border-opacity));
}

.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-4:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-200:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(191 219 254 / var(--tw-ring-opacity));
}

.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}

.focus\:ring-indigo-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(99 102 241 / var(--tw-ring-opacity));
}

.focus\:ring-purple-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(168 85 247 / var(--tw-ring-opacity));
}

.group:hover .group-hover\:block{
  display: block;
}

.group:hover .group-hover\:bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}

.peer:checked ~ .peer-checked\:bg-green-500{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / var(--tw-bg-opacity));
}

.peer:checked ~ .peer-checked\:bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.peer:checked ~ .peer-checked\:shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.peer:checked ~ .peer-checked\:after\:translate-x-full::after{
  content: var(--tw-content);
  --tw-translate-x: 100%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.peer:focus ~ .peer-focus\:outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.peer:focus ~ .peer-focus\:ring-4{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.peer:focus ~ .peer-focus\:ring-green-200{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(187 247 208 / var(--tw-ring-opacity));
}

.dz-drag-hover\:border-gray-300.dz-drag-hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}

@media (min-width: 640px){
  .sm\:mt-16{
    margin-top: 4rem;
  }

  .sm\:mt-8{
    margin-top: 2rem;
  }

  .sm\:flex{
    display: flex;
  }

  .sm\:grid{
    display: grid;
  }

  .sm\:w-auto{
    width: auto;
  }

  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-col{
    flex-direction: column;
  }

  .sm\:gap-6{
    gap: 1.5rem;
  }

  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .sm\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 768px){
  .md\:order-2{
    order: 2;
  }

  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .md\:m-0{
    margin: 0px;
  }

  .md\:-mb-4{
    margin-bottom: -1rem;
  }

  .md\:-mr-4{
    margin-right: -1rem;
  }

  .md\:-mt-2{
    margin-top: -0.5rem;
  }

  .md\:-mt-8{
    margin-top: -2rem;
  }

  .md\:-mt-\[calc\(2rem\+1px\)\]{
    margin-top: calc(calc(2rem + 1px) * -1);
  }

  .md\:mb-0{
    margin-bottom: 0px;
  }

  .md\:mb-12{
    margin-bottom: 3rem;
  }

  .md\:ml-0{
    margin-left: 0px;
  }

  .md\:ml-auto{
    margin-left: auto;
  }

  .md\:block{
    display: block;
  }

  .md\:flex{
    display: flex;
  }

  .md\:grid{
    display: grid;
  }

  .md\:hidden{
    display: none;
  }

  .md\:h-32{
    height: 8rem;
  }

  .md\:h-\[400px\]{
    height: 400px;
  }

  .md\:h-\[500px\]{
    height: 500px;
  }

  .md\:h-auto{
    height: auto;
  }

  .md\:h-full{
    height: 100%;
  }

  .md\:min-h-\[600px\]{
    min-height: 600px;
  }

  .md\:w-1\/2{
    width: 50%;
  }

  .md\:w-1\/3{
    width: 33.333333%;
  }

  .md\:w-2\/3{
    width: 66.666667%;
  }

  .md\:w-3\/4{
    width: 75%;
  }

  .md\:w-32{
    width: 8rem;
  }

  .md\:w-\[300px\]{
    width: 300px;
  }

  .md\:w-\[400px\]{
    width: 400px;
  }

  .md\:w-\[500px\]{
    width: 500px;
  }

  .md\:w-auto{
    width: auto;
  }

  .md\:w-full{
    width: 100%;
  }

  .md\:translate-x-\[-15\%\]{
    --tw-translate-x: -15%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:-rotate-6{
    --tw-rotate: -6deg;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-\[0\.7\]{
    --tw-scale-x: 0.7;
    --tw-scale-y: 0.7;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:scale-\[1\.0\]{
    --tw-scale-x: 1.0;
    --tw-scale-y: 1.0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row{
    flex-direction: row;
  }

  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }

  .md\:items-center{
    align-items: center;
  }

  .md\:justify-center{
    justify-content: center;
  }

  .md\:gap-4{
    gap: 1rem;
  }

  .md\:gap-8{
    gap: 2rem;
  }

  .md\:rounded-\[3rem\]{
    border-radius: 3rem;
  }

  .md\:border-\[14px\]{
    border-width: 14px;
  }

  .md\:px-6{
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:px-8{
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .md\:py-12{
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-24{
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-4{
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .md\:py-6{
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .md\:pb-12{
    padding-bottom: 3rem;
  }

  .md\:pl-6{
    padding-left: 1.5rem;
  }

  .md\:pr-6{
    padding-right: 1.5rem;
  }

  .md\:pr-8{
    padding-right: 2rem;
  }

  .md\:pt-12{
    padding-top: 3rem;
  }

  .md\:pt-24{
    padding-top: 6rem;
  }

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

  .md\:text-2xl{
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-5xl{
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-lg{
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px){
  .lg\:col-span-1{
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4{
    grid-column: span 4 / span 4;
  }

  .lg\:float-right{
    float: right;
  }

  .lg\:mx-auto{
    margin-left: auto;
    margin-right: auto;
  }

  .lg\:mb-0{
    margin-bottom: 0px;
  }

  .lg\:block{
    display: block;
  }

  .lg\:flex{
    display: flex;
  }

  .lg\:hidden{
    display: none;
  }

  .lg\:w-1\/2{
    width: 50%;
  }

  .lg\:w-1\/3{
    width: 33.333333%;
  }

  .lg\:w-auto{
    width: auto;
  }

  .lg\:scale-\[1\.0\]{
    --tw-scale-x: 1.0;
    --tw-scale-y: 1.0;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }

  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:flex-row{
    flex-direction: row;
  }

  .lg\:items-center{
    align-items: center;
  }

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

@media (min-width: 1280px){
  .xl\:col-span-2{
    grid-column: span 2 / span 2;
  }

  .xl\:col-span-3{
    grid-column: span 3 / span 3;
  }

  .xl\:mx-0{
    margin-left: 0px;
    margin-right: 0px;
  }

  .xl\:max-w-none{
    max-width: none;
  }

  .xl\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xl\:space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }
}

@media print{
  .print\:hidden{
    display: none;
  }

  .print\:w-full{
    width: 100%;
  }
}
