@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

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

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

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

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

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

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

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

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

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

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

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

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

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

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

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

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

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

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

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

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

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

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

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

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

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

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

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

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

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

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

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

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

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

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

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

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

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

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

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

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

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

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

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

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

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

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

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

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

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

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

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

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

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

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

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

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

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

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

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

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

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

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

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

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

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

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

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

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

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

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

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

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

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

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

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

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

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

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

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

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

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

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

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

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

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

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

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

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

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

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

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

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

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

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

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

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

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

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

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

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

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

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

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

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

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

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

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

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

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

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

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

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

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

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

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

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

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

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

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

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

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

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

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

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

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

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

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

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

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

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

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

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

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

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

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

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

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

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

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

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

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

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

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

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

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

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

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

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

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

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

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

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

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

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

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

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

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

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

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

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

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

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

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

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

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

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

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

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

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

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

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

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

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

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

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

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

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

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

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

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

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

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

.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

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

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

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

.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

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

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

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

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

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

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

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

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

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

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

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

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

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

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

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

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

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

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

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

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

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

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

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

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

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

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

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

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

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

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

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

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

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
/*!
 * animsition v4.0.2
 * A simple and easy jQuery plugin for CSS animated page transitions.
 * http://blivesta.github.io/animsition
 * License : MIT
 * Author : blivesta (http://blivesta.com/)
 */
.animsition,
.animsition-overlay {
  position: relative;
  opacity: 0;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/**
 * overlay option
 */
.animsition-overlay-slide {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #ddd;
}
/* loading option */
.animsition-loading,
.animsition-loading:after {
  width: 32px;
  height: 32px;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -16px;
  margin-left: -16px;
  border-radius: 50%;
  z-index: 100;
}

.animsition-loading {
  background-color: transparent;
  border-top: 5px solid rgba(0, 0, 0, 0.2);
  border-right: 5px solid rgba(0, 0, 0, 0.2);
  border-bottom: 5px solid rgba(0, 0, 0, 0.2);
  border-left: 5px solid #eee;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-animation-iteration-count:infinite;
          animation-iteration-count:infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-duration: .8s;
          animation-duration: .8s;
  -webkit-animation-name: animsition-loading;
          animation-name: animsition-loading;
}

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.fade-in {
  -webkit-animation-name: fade-in;
          animation-name: fade-in;
}


@-webkit-keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.fade-out {
  -webkit-animation-name: fade-out;
          animation-name: fade-out;
}
@-webkit-keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up {
  0% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.fade-in-up {
  -webkit-animation-name: fade-in-up;
          animation-name: fade-in-up;
}


@-webkit-keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    opacity: 0;
  }
}


@keyframes fade-out-up {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    opacity: 0;
  }
}


.fade-out-up {
  -webkit-animation-name: fade-out-up;
          animation-name: fade-out-up;
}
@-webkit-keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up-sm {
  0% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.fade-in-up-sm {
  -webkit-animation-name: fade-in-up-sm;
          animation-name: fade-in-up-sm;
}


@-webkit-keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
}


@keyframes fade-out-up-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
}


.fade-out-up-sm {
  -webkit-animation-name: fade-out-up-sm;
          animation-name: fade-out-up-sm;
}
@-webkit-keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-up-lg {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.fade-in-up-lg {
  -webkit-animation-name: fade-in-up-lg;
          animation-name: fade-in-up-lg;
}


@-webkit-keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}


@keyframes fade-out-up-lg {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}


.fade-out-up-lg {
  -webkit-animation-name: fade-out-up-lg;
          animation-name: fade-out-up-lg;
}
@-webkit-keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.fade-in-down {
  -webkit-animation-name: fade-in-down;
          animation-name: fade-in-down;
}


@-webkit-keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    opacity: 0;
  }
}


@keyframes fade-out-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(500px);
            transform: translateY(500px);
    opacity: 0;
  }
}


.fade-out-down {
  -webkit-animation-name: fade-out-down;
          animation-name: fade-out-down;
}
@-webkit-keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down-sm {
  0% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.fade-in-down-sm {
  -webkit-animation-name: fade-in-down-sm;
          animation-name: fade-in-down-sm;
}


@-webkit-keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}


@keyframes fade-out-down-sm {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    opacity: 0;
  }
}


.fade-out-down-sm {
  -webkit-animation-name: fade-out-down-sm;
          animation-name: fade-out-down-sm;
}
@-webkit-keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-down-lg {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.fade-in-down-lg {
  -webkit-animation-name: fade-in-down;
          animation-name: fade-in-down;
}


@-webkit-keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}


@keyframes fade-out-down-lg {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}


.fade-out-down-lg {
  -webkit-animation-name: fade-out-down-lg;
          animation-name: fade-out-down-lg;
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.fade-in-left {
  -webkit-animation-name: fade-in-left;
          animation-name: fade-in-left;
}


@-webkit-keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
    opacity: 0;
  }
}


@keyframes fade-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-500px);
            transform: translateX(-500px);
    opacity: 0;
  }
}


.fade-out-left {
  -webkit-animation-name: fade-out-left;
          animation-name: fade-out-left;
}
@-webkit-keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left-sm {
  0% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.fade-in-left-sm {
  -webkit-animation-name: fade-in-left-sm;
          animation-name: fade-in-left-sm;
}


@-webkit-keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
}


@keyframes fade-out-left-sm {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
    opacity: 0;
  }
}


.fade-out-left-sm {
  -webkit-animation-name: fade-out-left-sm;
          animation-name: fade-out-left-sm;
}
@-webkit-keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left-lg {
  0% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.fade-in-left-lg {
  -webkit-animation-name: fade-in-left-lg;
          animation-name: fade-in-left-lg;
}


@-webkit-keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
    opacity: 0;
  }
}


@keyframes fade-out-left-lg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1500px);
            transform: translateX(-1500px);
    opacity: 0;
  }
}


.fade-out-left-lg {
  -webkit-animation-name: fade-out-left-lg;
          animation-name: fade-out-left-lg;
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.fade-in-right {
  -webkit-animation-name: fade-in-right;
          animation-name: fade-in-right;
}


@-webkit-keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
    opacity: 0;
  }
}


@keyframes fade-out-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(500px);
            transform: translateX(500px);
    opacity: 0;
  }
}


.fade-out-right {
  -webkit-animation-name: fade-out-right;
          animation-name: fade-out-right;
}
@-webkit-keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right-sm {
  0% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.fade-in-right-sm {
  -webkit-animation-name: fade-in-right-sm;
          animation-name: fade-in-right-sm;
}


@-webkit-keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
}


@keyframes fade-out-right-sm {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
    opacity: 0;
  }
}


.fade-out-right-sm {
  -webkit-animation-name: fade-out-right-sm;
          animation-name: fade-out-right-sm;
}
@-webkit-keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
            transform: translateX(1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right-lg {
  0% {
    -webkit-transform: translateX(1500px);
            transform: translateX(1500px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.fade-in-right-lg {
  -webkit-animation-name: fade-in-right-lg;
          animation-name: fade-in-right-lg;
}


@-webkit-keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1500px);
            transform: translateX(1500px);
    opacity: 0;
  }
}


@keyframes fade-out-right-lg {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1500px);
            transform: translateX(1500px);
    opacity: 0;
  }
}


.fade-out-right-lg {
  -webkit-animation-name: fade-out-right-lg;
          animation-name: fade-out-right-lg;
}

@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
}

@keyframes rotate-in {
  0% {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
}


.rotate-in {
  -webkit-animation-name: rotate-in;
          animation-name: rotate-in;
}


@-webkit-keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
}


@keyframes rotate-out {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
}


.rotate-out {
  -webkit-animation-name: rotate-out;
          animation-name: rotate-out;
}
@-webkit-keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
}
@keyframes rotate-in-sm {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
}


.rotate-in-sm {
  -webkit-animation-name: rotate-in-sm;
          animation-name: rotate-in-sm;
}


@-webkit-keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
}


@keyframes rotate-out-sm {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
}


.rotate-out-sm {
  -webkit-animation-name: rotate-out-sm;
          animation-name: rotate-out-sm;
}
@-webkit-keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
}
@keyframes rotate-in-lg {
  0% {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
}


.rotate-in-lg {
  -webkit-animation-name: rotate-in-lg;
          animation-name: rotate-in-lg;
}


@-webkit-keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
}


@keyframes rotate-out-lg {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    opacity: 0;
  }
}


.rotate-out-lg {
  -webkit-animation-name: rotate-out-lg;
          animation-name: rotate-out-lg;
}

@-webkit-keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
            transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
            transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flip-in-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(90deg);
            transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(550px) rotateX(0deg);
            transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
}


.flip-in-x {
  -webkit-animation-name: flip-in-x;
          animation-name: flip-in-x;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}


@-webkit-keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
            transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
            transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
}


@keyframes flip-out-x {
  0% {
    -webkit-transform: perspective(550px) rotateX(0deg);
            transform: perspective(550px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(550px) rotateX(90deg);
            transform: perspective(550px) rotateX(90deg);
    opacity: 0;
  }
}


.flip-out-x {
  -webkit-animation-name: flip-out-x;
          animation-name: flip-out-x;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
            transform: perspective(100px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
            transform: perspective(100px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(90deg);
            transform: perspective(100px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(0deg);
            transform: perspective(100px) rotateX(0deg);
    opacity: 1;
  }
}


.flip-in-x-nr {
  -webkit-animation-name: flip-in-x-nr;
          animation-name: flip-in-x-nr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}


@-webkit-keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
            transform: perspective(100px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
            transform: perspective(100px) rotateX(90deg);
    opacity: 0;
  }
}


@keyframes flip-out-x-nr {
  0% {
    -webkit-transform: perspective(100px) rotateX(0deg);
            transform: perspective(100px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(100px) rotateX(90deg);
            transform: perspective(100px) rotateX(90deg);
    opacity: 0;
  }
}


.flip-out-x-nr {
  -webkit-animation-name: flip-out-x-nr;
          animation-name: flip-out-x-nr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
}


.flip-in-x-fr {
  -webkit-animation-name: flip-in-x-fr;
          animation-name: flip-in-x-fr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}


@-webkit-keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}


@keyframes flip-out-x-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateX(0deg);
            transform: perspective(1000px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateX(90deg);
            transform: perspective(1000px) rotateX(90deg);
    opacity: 0;
  }
}


.flip-out-x-fr {
  -webkit-animation-name: flip-out-x-fr;
          animation-name: flip-out-x-fr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
            transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
            transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(90deg);
            transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(550px) rotateY(0deg);
            transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
}


.flip-in-y {
  -webkit-animation-name: flip-in-y;
          animation-name: flip-in-y;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}


@-webkit-keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
            transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
            transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
}


@keyframes flip-out-y {
  0% {
    -webkit-transform: perspective(550px) rotateY(0deg);
            transform: perspective(550px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(550px) rotateY(90deg);
            transform: perspective(550px) rotateY(90deg);
    opacity: 0;
  }
}


.flip-out-y {
  -webkit-animation-name: flip-out-y;
          animation-name: flip-out-y;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
            transform: perspective(100px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
            transform: perspective(100px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(90deg);
            transform: perspective(100px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(100px) rotateY(0deg);
            transform: perspective(100px) rotateY(0deg);
    opacity: 1;
  }
}


.flip-in-y-nr {
  -webkit-animation-name: flip-in-y-nr;
          animation-name: flip-in-y-nr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}


@-webkit-keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
            transform: perspective(100px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
            transform: perspective(100px) rotateY(90deg);
    opacity: 0;
  }
}


@keyframes flip-out-y-nr {
  0% {
    -webkit-transform: perspective(100px) rotateY(0deg);
            transform: perspective(100px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(100px) rotateY(90deg);
            transform: perspective(100px) rotateY(90deg);
    opacity: 0;
  }
}


.flip-out-y-nr {
  -webkit-animation-name: flip-out-y-nr;
          animation-name: flip-out-y-nr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}
@-webkit-keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
            transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flip-in-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
            transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
}


.flip-in-y-fr {
  -webkit-animation-name: flip-in-y-fr;
          animation-name: flip-in-y-fr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}


@-webkit-keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
            transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }
}


@keyframes flip-out-y-fr {
  0% {
    -webkit-transform: perspective(1000px) rotateY(0deg);
            transform: perspective(1000px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(1000px) rotateY(90deg);
            transform: perspective(1000px) rotateY(90deg);
    opacity: 0;
  }
}


.flip-out-y-fr {
  -webkit-animation-name: flip-out-y-fr;
          animation-name: flip-out-y-fr;
  -webkit-backface-visibility: visible !important;
          backface-visibility: visible !important;
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(.7);
            transform: scale(.7);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(.7);
            transform: scale(.7);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.zoom-in {
  -webkit-animation-name: zoom-in;
          animation-name: zoom-in;
}


@-webkit-keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(.7);
            transform: scale(.7);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@keyframes zoom-out {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(.7);
            transform: scale(.7);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.zoom-out {
  -webkit-animation-name: zoom-out;
          animation-name: zoom-out;
}
@-webkit-keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(.95);
            transform: scale(.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in-sm {
  0% {
    -webkit-transform: scale(.95);
            transform: scale(.95);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.zoom-in-sm {
  -webkit-animation-name: zoom-in-sm;
          animation-name: zoom-in-sm;
}


@-webkit-keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(.95);
            transform: scale(.95);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@keyframes zoom-out-sm {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(.95);
            transform: scale(.95);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.zoom-out-sm {
  -webkit-animation-name: zoom-out-sm;
          animation-name: zoom-out-sm;
}
@-webkit-keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(.4);
            transform: scale(.4);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in-lg {
  0% {
    -webkit-transform: scale(.4);
            transform: scale(.4);
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.zoom-in-lg {
  -webkit-animation-name: zoom-in-lg;
          animation-name: zoom-in-lg;
}


@-webkit-keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(.4);
            transform: scale(.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


@keyframes zoom-out-lg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  50% {
    -webkit-transform: scale(.4);
            transform: scale(.4);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}


.zoom-out-lg {
  -webkit-animation-name: zoom-out-lg;
          animation-name: zoom-out-lg;
}

@-webkit-keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}

@keyframes overlay-slide-in-top {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}


.overlay-slide-in-top {
  top: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-top;
          animation-name: overlay-slide-in-top;
}


@-webkit-keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}


@keyframes overlay-slide-out-top {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}


.overlay-slide-out-top {
  top: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-top;
          animation-name: overlay-slide-out-top;
}
@-webkit-keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}
@keyframes overlay-slide-in-bottom {
  0% {
    height: 100%;
  }
  100% {
    height: 0;
  }
}


.overlay-slide-in-bottom {
  bottom: 0;
  height: 0;
  -webkit-animation-name: overlay-slide-in-bottom;
          animation-name: overlay-slide-in-bottom;
}


@-webkit-keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}


@keyframes overlay-slide-out-bottom {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}


.overlay-slide-out-bottom {
  bottom: 0;
  height: 100%;
  -webkit-animation-name: overlay-slide-out-bottom;
          animation-name: overlay-slide-out-bottom;
}
@-webkit-keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes overlay-slide-in-left {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}


.overlay-slide-in-left {
  width: 0;
  -webkit-animation-name: overlay-slide-in-left;
          animation-name: overlay-slide-in-left;
}


@-webkit-keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


@keyframes overlay-slide-out-left {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


.overlay-slide-out-left {
  left: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-left;
          animation-name: overlay-slide-out-left;
}
@-webkit-keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes overlay-slide-in-right {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}


.overlay-slide-in-right {
  right: 0;
  width: 0;
  -webkit-animation-name: overlay-slide-in-right;
          animation-name: overlay-slide-in-right;
}


@-webkit-keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


@keyframes overlay-slide-out-right {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


.overlay-slide-out-right {
  right: 0;
  width: 100%;
  -webkit-animation-name: overlay-slide-out-right;
          animation-name: overlay-slide-out-right;
}
/**
 * Swiper 6.7.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 31, 2021
 */

@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-container-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@charset "UTF-8";

/** Import everything from autoload */

/*! bulma.io v0.8.0 | MIT License | github.com/jgthms/bulma */

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

@-o-keyframes spinAround {
  from {
    -o-transform: rotate(0deg);
       transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(359deg);
       transform: rotate(359deg);
  }
}

@keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg);
         -o-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(359deg);
         -o-transform: rotate(359deg);
            transform: rotate(359deg);
  }
}

/* line 140, node_modules/bulma/sass/utilities/mixins.sass */

.delete,
.modal-close,
.is-unselectable,
.button,
.file,
.breadcrumb,
.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis,
.tabs {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 159, node_modules/bulma/sass/utilities/mixins.sass */

.select:not(.is-multiple):not(.is-loading)::after,
.navbar-link:not(.is-arrowless)::after {
  border: 3px solid transparent;
  border-radius: 2px;
  border-right: 0;
  border-top: 0;
  content: " ";
  display: block;
  height: 0.625em;
  margin-top: -0.4375em;
  pointer-events: none;
  position: absolute;
  top: 50%;
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  width: 0.625em;
}

/* line 163, node_modules/bulma/sass/utilities/mixins.sass */

.box:not(:last-child),
.content:not(:last-child),
.notification:not(:last-child),
.progress:not(:last-child),
.table:not(:last-child),
.table-container:not(:last-child),
.title:not(:last-child),
.subtitle:not(:last-child),
.block:not(:last-child),
.highlight:not(:last-child),
.breadcrumb:not(:last-child),
.level:not(:last-child),
.list:not(:last-child),
.message:not(:last-child),
.pagination:not(:last-child),
.tabs:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* line 235, node_modules/bulma/sass/utilities/mixins.sass */

.delete,
.modal-close {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 290486px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 20px;
}

/* line 191, node_modules/bulma/sass/utilities/mixins.sass */

.delete::before,
.modal-close::before,
.delete::after,
.modal-close::after {
  background-color: white;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
       -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
}

/* line 201, node_modules/bulma/sass/utilities/mixins.sass */

.delete::before,
.modal-close::before {
  height: 2px;
  width: 50%;
}

/* line 204, node_modules/bulma/sass/utilities/mixins.sass */

.delete::after,
.modal-close::after {
  height: 50%;
  width: 2px;
}

/* line 207, node_modules/bulma/sass/utilities/mixins.sass */

.delete:hover,
.modal-close:hover,
.delete:focus,
.modal-close:focus {
  background-color: rgba(10, 10, 10, 0.3);
}

/* line 210, node_modules/bulma/sass/utilities/mixins.sass */

.delete:active,
.modal-close:active {
  background-color: rgba(10, 10, 10, 0.4);
}

/* line 213, node_modules/bulma/sass/utilities/mixins.sass */

.is-small.delete,
.is-small.modal-close {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}

/* line 220, node_modules/bulma/sass/utilities/mixins.sass */

.is-medium.delete,
.is-medium.modal-close {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}

/* line 227, node_modules/bulma/sass/utilities/mixins.sass */

.is-large.delete,
.is-large.modal-close {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

/* line 250, node_modules/bulma/sass/utilities/mixins.sass */

.button.is-loading::after,
.loader,
.select.is-loading::after,
.control.is-loading::after {
  -webkit-animation: spinAround 500ms infinite linear;
       -o-animation: spinAround 500ms infinite linear;
          animation: spinAround 500ms infinite linear;
  border: 2px solid #dbdbdb;
  border-radius: 290486px;
  border-right-color: transparent;
  border-top-color: transparent;
  content: "";
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
}

/* line 260, node_modules/bulma/sass/utilities/mixins.sass */

.is-overlay,
.image.is-square img,
.image.is-square .has-ratio,
.image.is-1by1 img,
.image.is-1by1 .has-ratio,
.image.is-5by4 img,
.image.is-5by4 .has-ratio,
.image.is-4by3 img,
.image.is-4by3 .has-ratio,
.image.is-3by2 img,
.image.is-3by2 .has-ratio,
.image.is-5by3 img,
.image.is-5by3 .has-ratio,
.image.is-16by9 img,
.image.is-16by9 .has-ratio,
.image.is-2by1 img,
.image.is-2by1 .has-ratio,
.image.is-3by1 img,
.image.is-3by1 .has-ratio,
.image.is-4by5 img,
.image.is-4by5 .has-ratio,
.image.is-3by4 img,
.image.is-3by4 .has-ratio,
.image.is-2by3 img,
.image.is-2by3 .has-ratio,
.image.is-3by5 img,
.image.is-3by5 .has-ratio,
.image.is-9by16 img,
.image.is-9by16 .has-ratio,
.image.is-1by2 img,
.image.is-1by2 .has-ratio,
.image.is-1by3 img,
.image.is-1by3 .has-ratio,
.modal,
.modal-background,
.hero-video {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* line 40, node_modules/bulma/sass/utilities/controls.sass */

.button,
.input,
.textarea,
.select select,
.file-cta,
.file-name,
.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.5em - 1px);
  padding-left: calc(0.75em - 1px);
  padding-right: calc(0.75em - 1px);
  padding-top: calc(0.5em - 1px);
  position: relative;
  vertical-align: top;
}

/* line 31, node_modules/bulma/sass/utilities/controls.sass */

.button:focus,
.input:focus,
.textarea:focus,
.select select:focus,
.file-cta:focus,
.file-name:focus,
.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus,
.pagination-ellipsis:focus,
.is-focused.button,
.is-focused.input,
.is-focused.textarea,
.select select.is-focused,
.is-focused.file-cta,
.is-focused.file-name,
.is-focused.pagination-previous,
.is-focused.pagination-next,
.is-focused.pagination-link,
.is-focused.pagination-ellipsis,
.button:active,
.input:active,
.textarea:active,
.select select:active,
.file-cta:active,
.file-name:active,
.pagination-previous:active,
.pagination-next:active,
.pagination-link:active,
.pagination-ellipsis:active,
.is-active.button,
.is-active.input,
.is-active.textarea,
.select select.is-active,
.is-active.file-cta,
.is-active.file-name,
.is-active.pagination-previous,
.is-active.pagination-next,
.is-active.pagination-link,
.is-active.pagination-ellipsis {
  outline: none;
}

/* line 36, node_modules/bulma/sass/utilities/controls.sass */

.button[disabled],
.input[disabled],
.textarea[disabled],
.select select[disabled],
.file-cta[disabled],
.file-name[disabled],
.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled],
.pagination-ellipsis[disabled],
fieldset[disabled] .button,
fieldset[disabled] .input,
fieldset[disabled] .textarea,
fieldset[disabled] .select select,
.select fieldset[disabled] select,
fieldset[disabled] .file-cta,
fieldset[disabled] .file-name,
fieldset[disabled] .pagination-previous,
fieldset[disabled] .pagination-next,
fieldset[disabled] .pagination-link,
fieldset[disabled] .pagination-ellipsis {
  cursor: not-allowed;
}

/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */

/* line 3, node_modules/bulma/sass/base/minireset.sass */

html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

/* line 30, node_modules/bulma/sass/base/minireset.sass */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

/* line 40, node_modules/bulma/sass/base/minireset.sass */

ul {
  list-style: none;
}

/* line 44, node_modules/bulma/sass/base/minireset.sass */

button,
input,
select,
textarea {
  margin: 0;
}

/* line 51, node_modules/bulma/sass/base/minireset.sass */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 55, node_modules/bulma/sass/base/minireset.sass */

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

/* line 61, node_modules/bulma/sass/base/minireset.sass */

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

/* line 67, node_modules/bulma/sass/base/minireset.sass */

iframe {
  border: 0;
}

/* line 71, node_modules/bulma/sass/base/minireset.sass */

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 75, node_modules/bulma/sass/base/minireset.sass */

td,
th {
  padding: 0;
}

/* line 78, node_modules/bulma/sass/base/minireset.sass */

td:not([align]),
th:not([align]) {
  text-align: left;
}

/* line 32, node_modules/bulma/sass/base/generic.sass */

html {
  background-color: white;
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  min-width: 300px;
  overflow-x: hidden;
  overflow-y: scroll;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

/* line 43, node_modules/bulma/sass/base/generic.sass */

article,
aside,
figure,
footer,
header,
hgroup,
section {
  display: block;
}

/* line 52, node_modules/bulma/sass/base/generic.sass */

body,
button,
input,
select,
textarea {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

/* line 59, node_modules/bulma/sass/base/generic.sass */

code,
pre {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

/* line 65, node_modules/bulma/sass/base/generic.sass */

body {
  color: #4a4a4a;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
}

/* line 73, node_modules/bulma/sass/base/generic.sass */

a {
  color: #3273dc;
  cursor: pointer;
  text-decoration: none;
}

/* line 77, node_modules/bulma/sass/base/generic.sass */

a strong {
  color: currentColor;
}

/* line 79, node_modules/bulma/sass/base/generic.sass */

a:hover {
  color: #363636;
}

/* line 82, node_modules/bulma/sass/base/generic.sass */

code {
  background-color: whitesmoke;
  color: #f14668;
  font-size: 0.875em;
  font-weight: normal;
  padding: 0.25em 0.5em 0.25em;
}

/* line 89, node_modules/bulma/sass/base/generic.sass */

hr {
  background-color: whitesmoke;
  border: none;
  display: block;
  height: 2px;
  margin: 1.5rem 0;
}

/* line 96, node_modules/bulma/sass/base/generic.sass */

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

/* line 100, node_modules/bulma/sass/base/generic.sass */

input[type="checkbox"],
input[type="radio"] {
  vertical-align: baseline;
}

/* line 104, node_modules/bulma/sass/base/generic.sass */

small {
  font-size: 0.875em;
}

/* line 107, node_modules/bulma/sass/base/generic.sass */

span {
  font-style: inherit;
  font-weight: inherit;
}

/* line 111, node_modules/bulma/sass/base/generic.sass */

strong {
  color: #363636;
  font-weight: 700;
}

/* line 117, node_modules/bulma/sass/base/generic.sass */

fieldset {
  border: none;
}

/* line 120, node_modules/bulma/sass/base/generic.sass */

pre {
  -webkit-overflow-scrolling: touch;
  background-color: whitesmoke;
  color: #4a4a4a;
  font-size: 0.875em;
  overflow-x: auto;
  padding: 1.25rem 1.5rem;
  white-space: pre;
  word-wrap: normal;
}

/* line 129, node_modules/bulma/sass/base/generic.sass */

pre code {
  background-color: transparent;
  color: currentColor;
  font-size: 1em;
  padding: 0;
}

/* line 136, node_modules/bulma/sass/base/generic.sass */

table td,
table th {
  vertical-align: top;
}

/* line 139, node_modules/bulma/sass/base/generic.sass */

table td:not([align]),
table th:not([align]) {
  text-align: left;
}

/* line 141, node_modules/bulma/sass/base/generic.sass */

table th {
  color: #363636;
}

/* line 4, node_modules/bulma/sass/utilities/mixins.sass */

.is-clearfix::after {
  clear: both;
  content: " ";
  display: table;
}

/* line 6, node_modules/bulma/sass/base/helpers.sass */

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

/* line 9, node_modules/bulma/sass/base/helpers.sass */

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

/* line 14, node_modules/bulma/sass/base/helpers.sass */

.is-clipped {
  overflow: hidden !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-1 {
  font-size: 3rem !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-2 {
  font-size: 2.5rem !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-3 {
  font-size: 2rem !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-4 {
  font-size: 1.5rem !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-5 {
  font-size: 1.25rem !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-6 {
  font-size: 1rem !important;
}

/* line 27, node_modules/bulma/sass/base/helpers.sass */

.is-size-7 {
  font-size: 0.75rem !important;
}

@media screen and (max-width: 768px) {
  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-1-mobile {
    font-size: 3rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-2-mobile {
    font-size: 2.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-3-mobile {
    font-size: 2rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-4-mobile {
    font-size: 1.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-5-mobile {
    font-size: 1.25rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-6-mobile {
    font-size: 1rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-7-mobile {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-1-tablet {
    font-size: 3rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-2-tablet {
    font-size: 2.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-3-tablet {
    font-size: 2rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-4-tablet {
    font-size: 1.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-5-tablet {
    font-size: 1.25rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-6-tablet {
    font-size: 1rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-7-tablet {
    font-size: 0.75rem !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-1-touch {
    font-size: 3rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-2-touch {
    font-size: 2.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-3-touch {
    font-size: 2rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-4-touch {
    font-size: 1.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-5-touch {
    font-size: 1.25rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-6-touch {
    font-size: 1rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-7-touch {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-1-desktop {
    font-size: 3rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-2-desktop {
    font-size: 2.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-3-desktop {
    font-size: 2rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-4-desktop {
    font-size: 1.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-5-desktop {
    font-size: 1.25rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-6-desktop {
    font-size: 1rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-7-desktop {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-1-widescreen {
    font-size: 3rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-2-widescreen {
    font-size: 2.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-3-widescreen {
    font-size: 2rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-4-widescreen {
    font-size: 1.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-5-widescreen {
    font-size: 1.25rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-6-widescreen {
    font-size: 1rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-7-widescreen {
    font-size: 0.75rem !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-1-fullhd {
    font-size: 3rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-2-fullhd {
    font-size: 2.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-3-fullhd {
    font-size: 2rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-4-fullhd {
    font-size: 1.5rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-5-fullhd {
    font-size: 1.25rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-6-fullhd {
    font-size: 1rem !important;
  }

  /* line 27, node_modules/bulma/sass/base/helpers.sass */

  .is-size-7-fullhd {
    font-size: 0.75rem !important;
  }
}

/* line 53, node_modules/bulma/sass/base/helpers.sass */

.has-text-centered {
  text-align: center !important;
}

/* line 53, node_modules/bulma/sass/base/helpers.sass */

.has-text-justified {
  text-align: justify !important;
}

/* line 53, node_modules/bulma/sass/base/helpers.sass */

.has-text-left {
  text-align: left !important;
}

/* line 53, node_modules/bulma/sass/base/helpers.sass */

.has-text-right {
  text-align: right !important;
}

@media screen and (max-width: 768px) {
  /* line 58, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-mobile {
    text-align: center !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 61, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-tablet {
    text-align: center !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 64, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-tablet-only {
    text-align: center !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 67, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-touch {
    text-align: center !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 70, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-desktop {
    text-align: center !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 73, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-desktop-only {
    text-align: center !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 76, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-widescreen {
    text-align: center !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 79, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-widescreen-only {
    text-align: center !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 82, node_modules/bulma/sass/base/helpers.sass */

  .has-text-centered-fullhd {
    text-align: center !important;
  }
}

@media screen and (max-width: 768px) {
  /* line 58, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-mobile {
    text-align: justify !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 61, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-tablet {
    text-align: justify !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 64, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-tablet-only {
    text-align: justify !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 67, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-touch {
    text-align: justify !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 70, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-desktop {
    text-align: justify !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 73, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-desktop-only {
    text-align: justify !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 76, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-widescreen {
    text-align: justify !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 79, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-widescreen-only {
    text-align: justify !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 82, node_modules/bulma/sass/base/helpers.sass */

  .has-text-justified-fullhd {
    text-align: justify !important;
  }
}

@media screen and (max-width: 768px) {
  /* line 58, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-mobile {
    text-align: left !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 61, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-tablet {
    text-align: left !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 64, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-tablet-only {
    text-align: left !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 67, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-touch {
    text-align: left !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 70, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-desktop {
    text-align: left !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 73, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-desktop-only {
    text-align: left !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 76, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-widescreen {
    text-align: left !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 79, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-widescreen-only {
    text-align: left !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 82, node_modules/bulma/sass/base/helpers.sass */

  .has-text-left-fullhd {
    text-align: left !important;
  }
}

@media screen and (max-width: 768px) {
  /* line 58, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-mobile {
    text-align: right !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 61, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-tablet {
    text-align: right !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 64, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-tablet-only {
    text-align: right !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 67, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-touch {
    text-align: right !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 70, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-desktop {
    text-align: right !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 73, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-desktop-only {
    text-align: right !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 76, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-widescreen {
    text-align: right !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 79, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-widescreen-only {
    text-align: right !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 82, node_modules/bulma/sass/base/helpers.sass */

  .has-text-right-fullhd {
    text-align: right !important;
  }
}

/* line 85, node_modules/bulma/sass/base/helpers.sass */

.is-capitalized {
  text-transform: capitalize !important;
}

/* line 88, node_modules/bulma/sass/base/helpers.sass */

.is-lowercase {
  text-transform: lowercase !important;
}

/* line 91, node_modules/bulma/sass/base/helpers.sass */

.is-uppercase {
  text-transform: uppercase !important;
}

/* line 94, node_modules/bulma/sass/base/helpers.sass */

.is-italic {
  font-style: italic !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-white {
  color: white !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-white:hover,
a.has-text-white:focus {
  color: #e6e6e6 !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-white {
  background-color: white !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-black {
  color: #0a0a0a !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-black:hover,
a.has-text-black:focus {
  color: black !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-black {
  background-color: #0a0a0a !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-light {
  color: whitesmoke !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-light:hover,
a.has-text-light:focus {
  color: #dbdbdb !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-light {
  background-color: whitesmoke !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-dark {
  color: #363636 !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-dark:hover,
a.has-text-dark:focus {
  color: #1c1c1c !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-dark {
  background-color: #363636 !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-primary {
  color: #00d1b2 !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-primary:hover,
a.has-text-primary:focus {
  color: #009e86 !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-primary {
  background-color: #00d1b2 !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-link {
  color: #3273dc !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-link:hover,
a.has-text-link:focus {
  color: #205bbc !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-link {
  background-color: #3273dc !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-info {
  color: #3298dc !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-info:hover,
a.has-text-info:focus {
  color: #207dbc !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-info {
  background-color: #3298dc !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-success {
  color: #48c774 !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-success:hover,
a.has-text-success:focus {
  color: #34a85c !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-success {
  background-color: #48c774 !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-warning {
  color: #ffdd57 !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-warning:hover,
a.has-text-warning:focus {
  color: #ffd324 !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-warning {
  background-color: #ffdd57 !important;
}

/* line 99, node_modules/bulma/sass/base/helpers.sass */

.has-text-danger {
  color: #f14668 !important;
}

/* line 102, node_modules/bulma/sass/base/helpers.sass */

a.has-text-danger:hover,
a.has-text-danger:focus {
  color: #ee1742 !important;
}

/* line 105, node_modules/bulma/sass/base/helpers.sass */

.has-background-danger {
  background-color: #f14668 !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-black-bis {
  color: #121212 !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-black-bis {
  background-color: #121212 !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-black-ter {
  color: #242424 !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-black-ter {
  background-color: #242424 !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-grey-darker {
  color: #363636 !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-grey-darker {
  background-color: #363636 !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-grey-dark {
  color: #4a4a4a !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-grey-dark {
  background-color: #4a4a4a !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-grey {
  color: #7a7a7a !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-grey {
  background-color: #7a7a7a !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-grey-light {
  color: #b5b5b5 !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-grey-light {
  background-color: #b5b5b5 !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-grey-lighter {
  color: #dbdbdb !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-grey-lighter {
  background-color: #dbdbdb !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-white-ter {
  color: whitesmoke !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-white-ter {
  background-color: whitesmoke !important;
}

/* line 109, node_modules/bulma/sass/base/helpers.sass */

.has-text-white-bis {
  color: #fafafa !important;
}

/* line 111, node_modules/bulma/sass/base/helpers.sass */

.has-background-white-bis {
  background-color: #fafafa !important;
}

/* line 114, node_modules/bulma/sass/base/helpers.sass */

.has-text-weight-light {
  font-weight: 300 !important;
}

/* line 116, node_modules/bulma/sass/base/helpers.sass */

.has-text-weight-normal {
  font-weight: 400 !important;
}

/* line 118, node_modules/bulma/sass/base/helpers.sass */

.has-text-weight-medium {
  font-weight: 500 !important;
}

/* line 120, node_modules/bulma/sass/base/helpers.sass */

.has-text-weight-semibold {
  font-weight: 600 !important;
}

/* line 122, node_modules/bulma/sass/base/helpers.sass */

.has-text-weight-bold {
  font-weight: 700 !important;
}

/* line 125, node_modules/bulma/sass/base/helpers.sass */

.is-family-primary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

/* line 128, node_modules/bulma/sass/base/helpers.sass */

.is-family-secondary {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

/* line 131, node_modules/bulma/sass/base/helpers.sass */

.is-family-sans-serif {
  font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !important;
}

/* line 134, node_modules/bulma/sass/base/helpers.sass */

.is-family-monospace {
  font-family: monospace !important;
}

/* line 137, node_modules/bulma/sass/base/helpers.sass */

.is-family-code {
  font-family: monospace !important;
}

/* line 145, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (max-width: 768px) {
  /* line 148, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 769px), print {
  /* line 151, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 154, node_modules/bulma/sass/base/helpers.sass */

  .is-block-tablet-only {
    display: block !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 157, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1024px) {
  /* line 160, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 163, node_modules/bulma/sass/base/helpers.sass */

  .is-block-desktop-only {
    display: block !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 166, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 169, node_modules/bulma/sass/base/helpers.sass */

  .is-block-widescreen-only {
    display: block !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 172, node_modules/bulma/sass/base/helpers.sass */

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

/* line 145, node_modules/bulma/sass/base/helpers.sass */

.is-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media screen and (max-width: 768px) {
  /* line 148, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-mobile {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 151, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-tablet {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 154, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-tablet-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 157, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-touch {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 160, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-desktop {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 163, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-desktop-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 166, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-widescreen {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 169, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-widescreen-only {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 172, node_modules/bulma/sass/base/helpers.sass */

  .is-flex-fullhd {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

/* line 145, node_modules/bulma/sass/base/helpers.sass */

.is-inline {
  display: inline !important;
}

@media screen and (max-width: 768px) {
  /* line 148, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-mobile {
    display: inline !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 151, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-tablet {
    display: inline !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 154, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-tablet-only {
    display: inline !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 157, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-touch {
    display: inline !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 160, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-desktop {
    display: inline !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 163, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-desktop-only {
    display: inline !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 166, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-widescreen {
    display: inline !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 169, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-widescreen-only {
    display: inline !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 172, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-fullhd {
    display: inline !important;
  }
}

/* line 145, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (max-width: 768px) {
  /* line 148, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-mobile {
    display: inline-block !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 151, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-tablet {
    display: inline-block !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 154, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-tablet-only {
    display: inline-block !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 157, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-touch {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 160, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-desktop {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 163, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-desktop-only {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 166, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-widescreen {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 169, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-widescreen-only {
    display: inline-block !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 172, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-block-fullhd {
    display: inline-block !important;
  }
}

/* line 145, node_modules/bulma/sass/base/helpers.sass */

.is-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media screen and (max-width: 768px) {
  /* line 148, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-mobile {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 151, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-tablet {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 154, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-tablet-only {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 157, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-touch {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 160, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-desktop {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 163, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-desktop-only {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 166, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-widescreen {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 169, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-widescreen-only {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 172, node_modules/bulma/sass/base/helpers.sass */

  .is-inline-flex-fullhd {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

/* line 175, node_modules/bulma/sass/base/helpers.sass */

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

/* line 178, node_modules/bulma/sass/base/helpers.sass */

.is-sr-only {
  border: none !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 0.01em !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 0.01em !important;
}

@media screen and (max-width: 768px) {
  /* line 189, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 769px), print {
  /* line 193, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 197, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (max-width: 1023px) {
  /* line 201, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1024px) {
  /* line 205, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 209, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1216px) {
  /* line 213, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 217, node_modules/bulma/sass/base/helpers.sass */

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

@media screen and (min-width: 1408px) {
  /* line 221, node_modules/bulma/sass/base/helpers.sass */

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

/* line 224, node_modules/bulma/sass/base/helpers.sass */

.is-invisible {
  visibility: hidden !important;
}

@media screen and (max-width: 768px) {
  /* line 228, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-mobile {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 769px), print {
  /* line 232, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-tablet {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 236, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-tablet-only {
    visibility: hidden !important;
  }
}

@media screen and (max-width: 1023px) {
  /* line 240, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-touch {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 1024px) {
  /* line 244, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-desktop {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 248, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-desktop-only {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 1216px) {
  /* line 252, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-widescreen {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 256, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-widescreen-only {
    visibility: hidden !important;
  }
}

@media screen and (min-width: 1408px) {
  /* line 260, node_modules/bulma/sass/base/helpers.sass */

  .is-invisible-fullhd {
    visibility: hidden !important;
  }
}

/* line 265, node_modules/bulma/sass/base/helpers.sass */

.is-marginless {
  margin: 0 !important;
}

/* line 268, node_modules/bulma/sass/base/helpers.sass */

.is-paddingless {
  padding: 0 !important;
}

/* line 271, node_modules/bulma/sass/base/helpers.sass */

.is-radiusless {
  border-radius: 0 !important;
}

/* line 274, node_modules/bulma/sass/base/helpers.sass */

.is-shadowless {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* line 280, node_modules/bulma/sass/base/helpers.sass */

.is-relative {
  position: relative !important;
}

/* line 10, node_modules/bulma/sass/elements/box.sass */

.box {
  background-color: white;
  border-radius: 6px;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  color: #4a4a4a;
  display: block;
  padding: 1.25rem;
}

/* line 20, node_modules/bulma/sass/elements/box.sass */

a.box:hover,
a.box:focus {
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
}

/* line 23, node_modules/bulma/sass/elements/box.sass */

a.box:active {
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
          box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
}

/* line 46, node_modules/bulma/sass/elements/button.sass */

.button {
  background-color: white;
  border-color: #dbdbdb;
  border-width: 1px;
  color: #363636;
  cursor: pointer;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: calc(0.5em - 1px);
  padding-left: 1em;
  padding-right: 1em;
  padding-top: calc(0.5em - 1px);
  text-align: center;
  white-space: nowrap;
}

/* line 63, node_modules/bulma/sass/elements/button.sass */

.button strong {
  color: inherit;
}

/* line 66, node_modules/bulma/sass/elements/button.sass */

.button .icon,
.button .icon.is-small,
.button .icon.is-medium,
.button .icon.is-large {
  height: 1.5em;
  width: 1.5em;
}

/* line 72, node_modules/bulma/sass/elements/button.sass */

.button .icon:first-child:not(:last-child) {
  margin-left: calc(-0.5em - 1px);
  margin-right: 0.25em;
}

/* line 75, node_modules/bulma/sass/elements/button.sass */

.button .icon:last-child:not(:first-child) {
  margin-left: 0.25em;
  margin-right: calc(-0.5em - 1px);
}

/* line 78, node_modules/bulma/sass/elements/button.sass */

.button .icon:first-child:last-child {
  margin-left: calc(-0.5em - 1px);
  margin-right: calc(-0.5em - 1px);
}

/* line 82, node_modules/bulma/sass/elements/button.sass */

.button:hover,
.button.is-hovered {
  border-color: #b5b5b5;
  color: #363636;
}

/* line 86, node_modules/bulma/sass/elements/button.sass */

.button:focus,
.button.is-focused {
  border-color: #3273dc;
  color: #363636;
}

/* line 90, node_modules/bulma/sass/elements/button.sass */

.button:focus:not(:active),
.button.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

/* line 92, node_modules/bulma/sass/elements/button.sass */

.button:active,
.button.is-active {
  border-color: #4a4a4a;
  color: #363636;
}

/* line 97, node_modules/bulma/sass/elements/button.sass */

.button.is-text {
  background-color: transparent;
  border-color: transparent;
  color: #4a4a4a;
  text-decoration: underline;
}

/* line 102, node_modules/bulma/sass/elements/button.sass */

.button.is-text:hover,
.button.is-text.is-hovered,
.button.is-text:focus,
.button.is-text.is-focused {
  background-color: whitesmoke;
  color: #363636;
}

/* line 108, node_modules/bulma/sass/elements/button.sass */

.button.is-text:active,
.button.is-text.is-active {
  background-color: #e8e8e8;
  color: #363636;
}

/* line 112, node_modules/bulma/sass/elements/button.sass */

.button.is-text[disabled],
fieldset[disabled] .button.is-text {
  background-color: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-white {
  background-color: white;
  border-color: transparent;
  color: #0a0a0a;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-white:hover,
.button.is-white.is-hovered {
  background-color: #f9f9f9;
  border-color: transparent;
  color: #0a0a0a;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-white:focus,
.button.is-white.is-focused {
  border-color: transparent;
  color: #0a0a0a;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-white:focus:not(:active),
.button.is-white.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-white:active,
.button.is-white.is-active {
  background-color: #f2f2f2;
  border-color: transparent;
  color: #0a0a0a;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-white[disabled],
fieldset[disabled] .button.is-white {
  background-color: white;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted {
  background-color: #0a0a0a;
  color: white;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted:hover,
.button.is-white.is-inverted.is-hovered {
  background-color: black;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted[disabled],
fieldset[disabled] .button.is-white.is-inverted {
  background-color: #0a0a0a;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-loading::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-outlined:hover,
.button.is-white.is-outlined.is-hovered,
.button.is-white.is-outlined:focus,
.button.is-white.is-outlined.is-focused {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-outlined.is-loading::after {
  border-color: transparent transparent white white !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-outlined.is-loading:hover::after,
.button.is-white.is-outlined.is-loading.is-hovered::after,
.button.is-white.is-outlined.is-loading:focus::after,
.button.is-white.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-outlined[disabled],
fieldset[disabled] .button.is-white.is-outlined {
  background-color: transparent;
  border-color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted.is-outlined:hover,
.button.is-white.is-inverted.is-outlined.is-hovered,
.button.is-white.is-inverted.is-outlined:focus,
.button.is-white.is-inverted.is-outlined.is-focused {
  background-color: #0a0a0a;
  color: white;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted.is-outlined.is-loading:hover::after,
.button.is-white.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-white.is-inverted.is-outlined.is-loading:focus::after,
.button.is-white.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-white.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-white.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0a0a0a;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-black {
  background-color: #0a0a0a;
  border-color: transparent;
  color: white;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-black:hover,
.button.is-black.is-hovered {
  background-color: #040404;
  border-color: transparent;
  color: white;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-black:focus,
.button.is-black.is-focused {
  border-color: transparent;
  color: white;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-black:focus:not(:active),
.button.is-black.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
          box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-black:active,
.button.is-black.is-active {
  background-color: black;
  border-color: transparent;
  color: white;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-black[disabled],
fieldset[disabled] .button.is-black {
  background-color: #0a0a0a;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted {
  background-color: white;
  color: #0a0a0a;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted:hover,
.button.is-black.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted[disabled],
fieldset[disabled] .button.is-black.is-inverted {
  background-color: white;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0a0a0a;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-loading::after {
  border-color: transparent transparent white white !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  color: #0a0a0a;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-outlined:hover,
.button.is-black.is-outlined.is-hovered,
.button.is-black.is-outlined:focus,
.button.is-black.is-outlined.is-focused {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-outlined.is-loading::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-outlined.is-loading:hover::after,
.button.is-black.is-outlined.is-loading.is-hovered::after,
.button.is-black.is-outlined.is-loading:focus::after,
.button.is-black.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent white white !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-outlined[disabled],
fieldset[disabled] .button.is-black.is-outlined {
  background-color: transparent;
  border-color: #0a0a0a;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #0a0a0a;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  color: white;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted.is-outlined:hover,
.button.is-black.is-inverted.is-outlined.is-hovered,
.button.is-black.is-inverted.is-outlined:focus,
.button.is-black.is-inverted.is-outlined.is-focused {
  background-color: white;
  color: #0a0a0a;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted.is-outlined.is-loading:hover::after,
.button.is-black.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-black.is-inverted.is-outlined.is-loading:focus::after,
.button.is-black.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #0a0a0a #0a0a0a !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-black.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-black.is-inverted.is-outlined {
  background-color: transparent;
  border-color: white;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: white;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-light {
  background-color: whitesmoke;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-light:hover,
.button.is-light.is-hovered {
  background-color: #eeeeee;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-light:focus,
.button.is-light.is-focused {
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-light:focus:not(:active),
.button.is-light.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
          box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-light:active,
.button.is-light.is-active {
  background-color: #e8e8e8;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-light[disabled],
fieldset[disabled] .button.is-light {
  background-color: whitesmoke;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted:hover,
.button.is-light.is-inverted.is-hovered {
  background-color: rgba(0, 0, 0, 0.7);
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted[disabled],
fieldset[disabled] .button.is-light.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: whitesmoke;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-loading::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  color: whitesmoke;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-outlined:hover,
.button.is-light.is-outlined.is-hovered,
.button.is-light.is-outlined:focus,
.button.is-light.is-outlined.is-focused {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-outlined.is-loading::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-outlined.is-loading:hover::after,
.button.is-light.is-outlined.is-loading.is-hovered::after,
.button.is-light.is-outlined.is-loading:focus::after,
.button.is-light.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-outlined[disabled],
fieldset[disabled] .button.is-light.is-outlined {
  background-color: transparent;
  border-color: whitesmoke;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: whitesmoke;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted.is-outlined:hover,
.button.is-light.is-inverted.is-outlined.is-hovered,
.button.is-light.is-inverted.is-outlined:focus,
.button.is-light.is-inverted.is-outlined.is-focused {
  background-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted.is-outlined.is-loading:hover::after,
.button.is-light.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-light.is-inverted.is-outlined.is-loading:focus::after,
.button.is-light.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent whitesmoke whitesmoke !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-light.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-light.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-dark {
  background-color: #363636;
  border-color: transparent;
  color: #fff;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-dark:hover,
.button.is-dark.is-hovered {
  background-color: #2f2f2f;
  border-color: transparent;
  color: #fff;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-dark:focus,
.button.is-dark.is-focused {
  border-color: transparent;
  color: #fff;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-dark:focus:not(:active),
.button.is-dark.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
          box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-dark:active,
.button.is-dark.is-active {
  background-color: #292929;
  border-color: transparent;
  color: #fff;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-dark[disabled],
fieldset[disabled] .button.is-dark {
  background-color: #363636;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted {
  background-color: #fff;
  color: #363636;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted:hover,
.button.is-dark.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted[disabled],
fieldset[disabled] .button.is-dark.is-inverted {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #363636;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #363636;
  color: #363636;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-outlined:hover,
.button.is-dark.is-outlined.is-hovered,
.button.is-dark.is-outlined:focus,
.button.is-dark.is-outlined.is-focused {
  background-color: #363636;
  border-color: #363636;
  color: #fff;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-outlined.is-loading::after {
  border-color: transparent transparent #363636 #363636 !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-outlined.is-loading:hover::after,
.button.is-dark.is-outlined.is-loading.is-hovered::after,
.button.is-dark.is-outlined.is-loading:focus::after,
.button.is-dark.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-outlined[disabled],
fieldset[disabled] .button.is-dark.is-outlined {
  background-color: transparent;
  border-color: #363636;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #363636;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted.is-outlined:hover,
.button.is-dark.is-inverted.is-outlined.is-hovered,
.button.is-dark.is-inverted.is-outlined:focus,
.button.is-dark.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #363636;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted.is-outlined.is-loading:hover::after,
.button.is-dark.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-dark.is-inverted.is-outlined.is-loading:focus::after,
.button.is-dark.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #363636 #363636 !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-dark.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-dark.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-primary {
  background-color: #00d1b2;
  border-color: transparent;
  color: #fff;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-primary:hover,
.button.is-primary.is-hovered {
  background-color: #00c4a7;
  border-color: transparent;
  color: #fff;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-primary:focus,
.button.is-primary.is-focused {
  border-color: transparent;
  color: #fff;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-primary:focus:not(:active),
.button.is-primary.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
          box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-primary:active,
.button.is-primary.is-active {
  background-color: #00b89c;
  border-color: transparent;
  color: #fff;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-primary[disabled],
fieldset[disabled] .button.is-primary {
  background-color: #00d1b2;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted {
  background-color: #fff;
  color: #00d1b2;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted:hover,
.button.is-primary.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted[disabled],
fieldset[disabled] .button.is-primary.is-inverted {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #00d1b2;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #00d1b2;
  color: #00d1b2;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-outlined:hover,
.button.is-primary.is-outlined.is-hovered,
.button.is-primary.is-outlined:focus,
.button.is-primary.is-outlined.is-focused {
  background-color: #00d1b2;
  border-color: #00d1b2;
  color: #fff;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-outlined.is-loading::after {
  border-color: transparent transparent #00d1b2 #00d1b2 !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-outlined.is-loading:hover::after,
.button.is-primary.is-outlined.is-loading.is-hovered::after,
.button.is-primary.is-outlined.is-loading:focus::after,
.button.is-primary.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-outlined[disabled],
fieldset[disabled] .button.is-primary.is-outlined {
  background-color: transparent;
  border-color: #00d1b2;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #00d1b2;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted.is-outlined:hover,
.button.is-primary.is-inverted.is-outlined.is-hovered,
.button.is-primary.is-inverted.is-outlined:focus,
.button.is-primary.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #00d1b2;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted.is-outlined.is-loading:hover::after,
.button.is-primary.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-primary.is-inverted.is-outlined.is-loading:focus::after,
.button.is-primary.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #00d1b2 #00d1b2 !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-primary.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

/* line 213, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-light {
  background-color: #ebfffc;
  color: #00947e;
}

/* line 216, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-light:hover,
.button.is-primary.is-light.is-hovered {
  background-color: #defffa;
  border-color: transparent;
  color: #00947e;
}

/* line 221, node_modules/bulma/sass/elements/button.sass */

.button.is-primary.is-light:active,
.button.is-primary.is-light.is-active {
  background-color: #d1fff8;
  border-color: transparent;
  color: #00947e;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-link {
  background-color: #3273dc;
  border-color: transparent;
  color: #fff;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-link:hover,
.button.is-link.is-hovered {
  background-color: #276cda;
  border-color: transparent;
  color: #fff;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-link:focus,
.button.is-link.is-focused {
  border-color: transparent;
  color: #fff;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-link:focus:not(:active),
.button.is-link.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-link:active,
.button.is-link.is-active {
  background-color: #2366d1;
  border-color: transparent;
  color: #fff;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-link[disabled],
fieldset[disabled] .button.is-link {
  background-color: #3273dc;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted {
  background-color: #fff;
  color: #3273dc;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted:hover,
.button.is-link.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted[disabled],
fieldset[disabled] .button.is-link.is-inverted {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3273dc;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-outlined {
  background-color: transparent;
  border-color: #3273dc;
  color: #3273dc;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-outlined:hover,
.button.is-link.is-outlined.is-hovered,
.button.is-link.is-outlined:focus,
.button.is-link.is-outlined.is-focused {
  background-color: #3273dc;
  border-color: #3273dc;
  color: #fff;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-outlined.is-loading::after {
  border-color: transparent transparent #3273dc #3273dc !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-outlined.is-loading:hover::after,
.button.is-link.is-outlined.is-loading.is-hovered::after,
.button.is-link.is-outlined.is-loading:focus::after,
.button.is-link.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-outlined[disabled],
fieldset[disabled] .button.is-link.is-outlined {
  background-color: transparent;
  border-color: #3273dc;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3273dc;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted.is-outlined:hover,
.button.is-link.is-inverted.is-outlined.is-hovered,
.button.is-link.is-inverted.is-outlined:focus,
.button.is-link.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #3273dc;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted.is-outlined.is-loading:hover::after,
.button.is-link.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-link.is-inverted.is-outlined.is-loading:focus::after,
.button.is-link.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #3273dc #3273dc !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-link.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

/* line 213, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-light {
  background-color: #eef3fc;
  color: #2160c4;
}

/* line 216, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-light:hover,
.button.is-link.is-light.is-hovered {
  background-color: #e3ecfa;
  border-color: transparent;
  color: #2160c4;
}

/* line 221, node_modules/bulma/sass/elements/button.sass */

.button.is-link.is-light:active,
.button.is-link.is-light.is-active {
  background-color: #d8e4f8;
  border-color: transparent;
  color: #2160c4;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-info {
  background-color: #3298dc;
  border-color: transparent;
  color: #fff;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-info:hover,
.button.is-info.is-hovered {
  background-color: #2793da;
  border-color: transparent;
  color: #fff;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-info:focus,
.button.is-info.is-focused {
  border-color: transparent;
  color: #fff;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-info:focus:not(:active),
.button.is-info.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-info:active,
.button.is-info.is-active {
  background-color: #238cd1;
  border-color: transparent;
  color: #fff;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-info[disabled],
fieldset[disabled] .button.is-info {
  background-color: #3298dc;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted {
  background-color: #fff;
  color: #3298dc;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted:hover,
.button.is-info.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted[disabled],
fieldset[disabled] .button.is-info.is-inverted {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3298dc;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-outlined {
  background-color: transparent;
  border-color: #3298dc;
  color: #3298dc;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-outlined:hover,
.button.is-info.is-outlined.is-hovered,
.button.is-info.is-outlined:focus,
.button.is-info.is-outlined.is-focused {
  background-color: #3298dc;
  border-color: #3298dc;
  color: #fff;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-outlined.is-loading::after {
  border-color: transparent transparent #3298dc #3298dc !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-outlined.is-loading:hover::after,
.button.is-info.is-outlined.is-loading.is-hovered::after,
.button.is-info.is-outlined.is-loading:focus::after,
.button.is-info.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-outlined[disabled],
fieldset[disabled] .button.is-info.is-outlined {
  background-color: transparent;
  border-color: #3298dc;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #3298dc;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted.is-outlined:hover,
.button.is-info.is-inverted.is-outlined.is-hovered,
.button.is-info.is-inverted.is-outlined:focus,
.button.is-info.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #3298dc;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted.is-outlined.is-loading:hover::after,
.button.is-info.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-info.is-inverted.is-outlined.is-loading:focus::after,
.button.is-info.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #3298dc #3298dc !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-info.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

/* line 213, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-light {
  background-color: #eef6fc;
  color: #1d72aa;
}

/* line 216, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-light:hover,
.button.is-info.is-light.is-hovered {
  background-color: #e3f1fa;
  border-color: transparent;
  color: #1d72aa;
}

/* line 221, node_modules/bulma/sass/elements/button.sass */

.button.is-info.is-light:active,
.button.is-info.is-light.is-active {
  background-color: #d8ebf8;
  border-color: transparent;
  color: #1d72aa;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-success {
  background-color: #48c774;
  border-color: transparent;
  color: #fff;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-success:hover,
.button.is-success.is-hovered {
  background-color: #3ec46d;
  border-color: transparent;
  color: #fff;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-success:focus,
.button.is-success.is-focused {
  border-color: transparent;
  color: #fff;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-success:focus:not(:active),
.button.is-success.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
          box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-success:active,
.button.is-success.is-active {
  background-color: #3abb67;
  border-color: transparent;
  color: #fff;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-success[disabled],
fieldset[disabled] .button.is-success {
  background-color: #48c774;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted {
  background-color: #fff;
  color: #48c774;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted:hover,
.button.is-success.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted[disabled],
fieldset[disabled] .button.is-success.is-inverted {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #48c774;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-outlined {
  background-color: transparent;
  border-color: #48c774;
  color: #48c774;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-outlined:hover,
.button.is-success.is-outlined.is-hovered,
.button.is-success.is-outlined:focus,
.button.is-success.is-outlined.is-focused {
  background-color: #48c774;
  border-color: #48c774;
  color: #fff;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-outlined.is-loading::after {
  border-color: transparent transparent #48c774 #48c774 !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-outlined.is-loading:hover::after,
.button.is-success.is-outlined.is-loading.is-hovered::after,
.button.is-success.is-outlined.is-loading:focus::after,
.button.is-success.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-outlined[disabled],
fieldset[disabled] .button.is-success.is-outlined {
  background-color: transparent;
  border-color: #48c774;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #48c774;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted.is-outlined:hover,
.button.is-success.is-inverted.is-outlined.is-hovered,
.button.is-success.is-inverted.is-outlined:focus,
.button.is-success.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #48c774;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted.is-outlined.is-loading:hover::after,
.button.is-success.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-success.is-inverted.is-outlined.is-loading:focus::after,
.button.is-success.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #48c774 #48c774 !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-success.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

/* line 213, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-light {
  background-color: #effaf3;
  color: #257942;
}

/* line 216, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-light:hover,
.button.is-success.is-light.is-hovered {
  background-color: #e6f7ec;
  border-color: transparent;
  color: #257942;
}

/* line 221, node_modules/bulma/sass/elements/button.sass */

.button.is-success.is-light:active,
.button.is-success.is-light.is-active {
  background-color: #dcf4e4;
  border-color: transparent;
  color: #257942;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-warning {
  background-color: #ffdd57;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-warning:hover,
.button.is-warning.is-hovered {
  background-color: #ffdb4a;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-warning:focus,
.button.is-warning.is-focused {
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-warning:focus:not(:active),
.button.is-warning.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-warning:active,
.button.is-warning.is-active {
  background-color: #ffd83d;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-warning[disabled],
fieldset[disabled] .button.is-warning {
  background-color: #ffdd57;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted:hover,
.button.is-warning.is-inverted.is-hovered {
  background-color: rgba(0, 0, 0, 0.7);
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted[disabled],
fieldset[disabled] .button.is-warning.is-inverted {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffdd57;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-loading::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #ffdd57;
  color: #ffdd57;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-outlined:hover,
.button.is-warning.is-outlined.is-hovered,
.button.is-warning.is-outlined:focus,
.button.is-warning.is-outlined.is-focused {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-outlined.is-loading::after {
  border-color: transparent transparent #ffdd57 #ffdd57 !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-outlined.is-loading:hover::after,
.button.is-warning.is-outlined.is-loading.is-hovered::after,
.button.is-warning.is-outlined.is-loading:focus::after,
.button.is-warning.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent rgba(0, 0, 0, 0.7) rgba(0, 0, 0, 0.7) !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-outlined[disabled],
fieldset[disabled] .button.is-warning.is-outlined {
  background-color: transparent;
  border-color: #ffdd57;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffdd57;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  color: rgba(0, 0, 0, 0.7);
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted.is-outlined:hover,
.button.is-warning.is-inverted.is-outlined.is-hovered,
.button.is-warning.is-inverted.is-outlined:focus,
.button.is-warning.is-inverted.is-outlined.is-focused {
  background-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted.is-outlined.is-loading:hover::after,
.button.is-warning.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-warning.is-inverted.is-outlined.is-loading:focus::after,
.button.is-warning.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #ffdd57 #ffdd57 !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-warning.is-inverted.is-outlined {
  background-color: transparent;
  border-color: rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: none;
          box-shadow: none;
  color: rgba(0, 0, 0, 0.7);
}

/* line 213, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-light {
  background-color: #fffbeb;
  color: #947600;
}

/* line 216, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-light:hover,
.button.is-warning.is-light.is-hovered {
  background-color: #fff8de;
  border-color: transparent;
  color: #947600;
}

/* line 221, node_modules/bulma/sass/elements/button.sass */

.button.is-warning.is-light:active,
.button.is-warning.is-light.is-active {
  background-color: #fff6d1;
  border-color: transparent;
  color: #947600;
}

/* line 120, node_modules/bulma/sass/elements/button.sass */

.button.is-danger {
  background-color: #f14668;
  border-color: transparent;
  color: #fff;
}

/* line 124, node_modules/bulma/sass/elements/button.sass */

.button.is-danger:hover,
.button.is-danger.is-hovered {
  background-color: #f03a5f;
  border-color: transparent;
  color: #fff;
}

/* line 129, node_modules/bulma/sass/elements/button.sass */

.button.is-danger:focus,
.button.is-danger.is-focused {
  border-color: transparent;
  color: #fff;
}

/* line 133, node_modules/bulma/sass/elements/button.sass */

.button.is-danger:focus:not(:active),
.button.is-danger.is-focused:not(:active) {
  -webkit-box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
          box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
}

/* line 135, node_modules/bulma/sass/elements/button.sass */

.button.is-danger:active,
.button.is-danger.is-active {
  background-color: #ef2e55;
  border-color: transparent;
  color: #fff;
}

/* line 140, node_modules/bulma/sass/elements/button.sass */

.button.is-danger[disabled],
fieldset[disabled] .button.is-danger {
  background-color: #f14668;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 145, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted {
  background-color: #fff;
  color: #f14668;
}

/* line 148, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted:hover,
.button.is-danger.is-inverted.is-hovered {
  background-color: #f2f2f2;
}

/* line 151, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted[disabled],
fieldset[disabled] .button.is-danger.is-inverted {
  background-color: #fff;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #f14668;
}

/* line 158, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-loading::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 160, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #f14668;
  color: #f14668;
}

/* line 164, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-outlined:hover,
.button.is-danger.is-outlined.is-hovered,
.button.is-danger.is-outlined:focus,
.button.is-danger.is-outlined.is-focused {
  background-color: #f14668;
  border-color: #f14668;
  color: #fff;
}

/* line 172, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-outlined.is-loading::after {
  border-color: transparent transparent #f14668 #f14668 !important;
}

/* line 178, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-outlined.is-loading:hover::after,
.button.is-danger.is-outlined.is-loading.is-hovered::after,
.button.is-danger.is-outlined.is-loading:focus::after,
.button.is-danger.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #fff #fff !important;
}

/* line 180, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-outlined[disabled],
fieldset[disabled] .button.is-danger.is-outlined {
  background-color: transparent;
  border-color: #f14668;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #f14668;
}

/* line 186, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}

/* line 190, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted.is-outlined:hover,
.button.is-danger.is-inverted.is-outlined.is-hovered,
.button.is-danger.is-inverted.is-outlined:focus,
.button.is-danger.is-inverted.is-outlined.is-focused {
  background-color: #fff;
  color: #f14668;
}

/* line 201, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted.is-outlined.is-loading:hover::after,
.button.is-danger.is-inverted.is-outlined.is-loading.is-hovered::after,
.button.is-danger.is-inverted.is-outlined.is-loading:focus::after,
.button.is-danger.is-inverted.is-outlined.is-loading.is-focused::after {
  border-color: transparent transparent #f14668 #f14668 !important;
}

/* line 203, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-inverted.is-outlined[disabled],
fieldset[disabled] .button.is-danger.is-inverted.is-outlined {
  background-color: transparent;
  border-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #fff;
}

/* line 213, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-light {
  background-color: #feecf0;
  color: #cc0f35;
}

/* line 216, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-light:hover,
.button.is-danger.is-light.is-hovered {
  background-color: #fde0e6;
  border-color: transparent;
  color: #cc0f35;
}

/* line 221, node_modules/bulma/sass/elements/button.sass */

.button.is-danger.is-light:active,
.button.is-danger.is-light.is-active {
  background-color: #fcd4dc;
  border-color: transparent;
  color: #cc0f35;
}

/* line 227, node_modules/bulma/sass/elements/button.sass */

.button.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

/* line 229, node_modules/bulma/sass/elements/button.sass */

.button.is-normal {
  font-size: 1rem;
}

/* line 231, node_modules/bulma/sass/elements/button.sass */

.button.is-medium {
  font-size: 1.25rem;
}

/* line 233, node_modules/bulma/sass/elements/button.sass */

.button.is-large {
  font-size: 1.5rem;
}

/* line 236, node_modules/bulma/sass/elements/button.sass */

.button[disabled],
fieldset[disabled] .button {
  background-color: white;
  border-color: #dbdbdb;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.5;
}

/* line 242, node_modules/bulma/sass/elements/button.sass */

.button.is-fullwidth {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

/* line 245, node_modules/bulma/sass/elements/button.sass */

.button.is-loading {
  color: transparent !important;
  pointer-events: none;
}

/* line 248, node_modules/bulma/sass/elements/button.sass */

.button.is-loading::after {
  position: absolute;
  left: calc(50% - (1em / 2));
  top: calc(50% - (1em / 2));
  position: absolute !important;
}

/* line 252, node_modules/bulma/sass/elements/button.sass */

.button.is-static {
  background-color: whitesmoke;
  border-color: #dbdbdb;
  color: #7a7a7a;
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}

/* line 258, node_modules/bulma/sass/elements/button.sass */

.button.is-rounded {
  border-radius: 290486px;
  padding-left: calc(1em + 0.25em);
  padding-right: calc(1em + 0.25em);
}

/* line 263, node_modules/bulma/sass/elements/button.sass */

.buttons {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 268, node_modules/bulma/sass/elements/button.sass */

.buttons .button {
  margin-bottom: 0.5rem;
}

/* line 270, node_modules/bulma/sass/elements/button.sass */

.buttons .button:not(:last-child):not(.is-fullwidth) {
  margin-right: 0.5rem;
}

/* line 272, node_modules/bulma/sass/elements/button.sass */

.buttons:last-child {
  margin-bottom: -0.5rem;
}

/* line 274, node_modules/bulma/sass/elements/button.sass */

.buttons:not(:last-child) {
  margin-bottom: 1rem;
}

/* line 278, node_modules/bulma/sass/elements/button.sass */

.buttons.are-small .button:not(.is-normal):not(.is-medium):not(.is-large) {
  border-radius: 2px;
  font-size: 0.75rem;
}

/* line 281, node_modules/bulma/sass/elements/button.sass */

.buttons.are-medium .button:not(.is-small):not(.is-normal):not(.is-large) {
  font-size: 1.25rem;
}

/* line 284, node_modules/bulma/sass/elements/button.sass */

.buttons.are-large .button:not(.is-small):not(.is-normal):not(.is-medium) {
  font-size: 1.5rem;
}

/* line 288, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 291, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  margin-right: -1px;
}

/* line 295, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button:last-child {
  margin-right: 0;
}

/* line 297, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button:hover,
.buttons.has-addons .button.is-hovered {
  z-index: 2;
}

/* line 300, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button:focus,
.buttons.has-addons .button.is-focused,
.buttons.has-addons .button:active,
.buttons.has-addons .button.is-active,
.buttons.has-addons .button.is-selected {
  z-index: 3;
}

/* line 306, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button:focus:hover,
.buttons.has-addons .button.is-focused:hover,
.buttons.has-addons .button:active:hover,
.buttons.has-addons .button.is-active:hover,
.buttons.has-addons .button.is-selected:hover {
  z-index: 4;
}

/* line 308, node_modules/bulma/sass/elements/button.sass */

.buttons.has-addons .button.is-expanded {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 311, node_modules/bulma/sass/elements/button.sass */

.buttons.is-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 314, node_modules/bulma/sass/elements/button.sass */

.buttons.is-centered:not(.has-addons) .button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

/* line 317, node_modules/bulma/sass/elements/button.sass */

.buttons.is-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 320, node_modules/bulma/sass/elements/button.sass */

.buttons.is-right:not(.has-addons) .button:not(.is-fullwidth) {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

/* line 3, node_modules/bulma/sass/elements/container.sass */

.container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0 auto;
  position: relative;
  width: auto;
}

/* line 8, node_modules/bulma/sass/elements/container.sass */

.container.is-fluid {
  max-width: none;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  /* line 3, node_modules/bulma/sass/elements/container.sass */

  .container {
    max-width: 960px;
  }
}

@media screen and (max-width: 1215px) {
  /* line 16, node_modules/bulma/sass/elements/container.sass */

  .container.is-widescreen {
    max-width: 1152px;
  }
}

@media screen and (max-width: 1407px) {
  /* line 19, node_modules/bulma/sass/elements/container.sass */

  .container.is-fullhd {
    max-width: 1344px;
  }
}

@media screen and (min-width: 1216px) {
  /* line 3, node_modules/bulma/sass/elements/container.sass */

  .container {
    max-width: 1152px;
  }
}

@media screen and (min-width: 1408px) {
  /* line 3, node_modules/bulma/sass/elements/container.sass */

  .container {
    max-width: 1344px;
  }
}

/* line 23, node_modules/bulma/sass/elements/content.sass */

.content li + li {
  margin-top: 0.25em;
}

/* line 33, node_modules/bulma/sass/elements/content.sass */

.content p:not(:last-child),
.content dl:not(:last-child),
.content ol:not(:last-child),
.content ul:not(:last-child),
.content blockquote:not(:last-child),
.content pre:not(:last-child),
.content table:not(:last-child) {
  margin-bottom: 1em;
}

/* line 35, node_modules/bulma/sass/elements/content.sass */

.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  color: #363636;
  font-weight: 600;
  line-height: 1.125;
}

/* line 44, node_modules/bulma/sass/elements/content.sass */

.content h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
}

/* line 47, node_modules/bulma/sass/elements/content.sass */

.content h1:not(:first-child) {
  margin-top: 1em;
}

/* line 49, node_modules/bulma/sass/elements/content.sass */

.content h2 {
  font-size: 1.75em;
  margin-bottom: 0.5714em;
}

/* line 52, node_modules/bulma/sass/elements/content.sass */

.content h2:not(:first-child) {
  margin-top: 1.1428em;
}

/* line 54, node_modules/bulma/sass/elements/content.sass */

.content h3 {
  font-size: 1.5em;
  margin-bottom: 0.6666em;
}

/* line 57, node_modules/bulma/sass/elements/content.sass */

.content h3:not(:first-child) {
  margin-top: 1.3333em;
}

/* line 59, node_modules/bulma/sass/elements/content.sass */

.content h4 {
  font-size: 1.25em;
  margin-bottom: 0.8em;
}

/* line 62, node_modules/bulma/sass/elements/content.sass */

.content h5 {
  font-size: 1.125em;
  margin-bottom: 0.8888em;
}

/* line 65, node_modules/bulma/sass/elements/content.sass */

.content h6 {
  font-size: 1em;
  margin-bottom: 1em;
}

/* line 68, node_modules/bulma/sass/elements/content.sass */

.content blockquote {
  background-color: whitesmoke;
  border-left: 5px solid #dbdbdb;
  padding: 1.25em 1.5em;
}

/* line 72, node_modules/bulma/sass/elements/content.sass */

.content ol {
  list-style-position: outside;
  margin-left: 2em;
  margin-top: 1em;
}

/* line 76, node_modules/bulma/sass/elements/content.sass */

.content ol:not([type]) {
  list-style-type: decimal;
}

/* line 78, node_modules/bulma/sass/elements/content.sass */

.content ol:not([type]).is-lower-alpha {
  list-style-type: lower-alpha;
}

/* line 80, node_modules/bulma/sass/elements/content.sass */

.content ol:not([type]).is-lower-roman {
  list-style-type: lower-roman;
}

/* line 82, node_modules/bulma/sass/elements/content.sass */

.content ol:not([type]).is-upper-alpha {
  list-style-type: upper-alpha;
}

/* line 84, node_modules/bulma/sass/elements/content.sass */

.content ol:not([type]).is-upper-roman {
  list-style-type: upper-roman;
}

/* line 86, node_modules/bulma/sass/elements/content.sass */

.content ul {
  list-style: disc outside;
  margin-left: 2em;
  margin-top: 1em;
}

/* line 90, node_modules/bulma/sass/elements/content.sass */

.content ul ul {
  list-style-type: circle;
  margin-top: 0.5em;
}

/* line 93, node_modules/bulma/sass/elements/content.sass */

.content ul ul ul {
  list-style-type: square;
}

/* line 95, node_modules/bulma/sass/elements/content.sass */

.content dd {
  margin-left: 2em;
}

/* line 97, node_modules/bulma/sass/elements/content.sass */

.content figure {
  margin-left: 2em;
  margin-right: 2em;
  text-align: center;
}

/* line 101, node_modules/bulma/sass/elements/content.sass */

.content figure:not(:first-child) {
  margin-top: 2em;
}

/* line 103, node_modules/bulma/sass/elements/content.sass */

.content figure:not(:last-child) {
  margin-bottom: 2em;
}

/* line 105, node_modules/bulma/sass/elements/content.sass */

.content figure img {
  display: inline-block;
}

/* line 107, node_modules/bulma/sass/elements/content.sass */

.content figure figcaption {
  font-style: italic;
}

/* line 109, node_modules/bulma/sass/elements/content.sass */

.content pre {
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  padding: 1.25em 1.5em;
  white-space: pre;
  word-wrap: normal;
}

/* line 115, node_modules/bulma/sass/elements/content.sass */

.content sup,
.content sub {
  font-size: 75%;
}

/* line 118, node_modules/bulma/sass/elements/content.sass */

.content table {
  width: 100%;
}

/* line 120, node_modules/bulma/sass/elements/content.sass */

.content table td,
.content table th {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

/* line 126, node_modules/bulma/sass/elements/content.sass */

.content table th {
  color: #363636;
}

/* line 128, node_modules/bulma/sass/elements/content.sass */

.content table th:not([align]) {
  text-align: left;
}

/* line 131, node_modules/bulma/sass/elements/content.sass */

.content table thead td,
.content table thead th {
  border-width: 0 0 2px;
  color: #363636;
}

/* line 136, node_modules/bulma/sass/elements/content.sass */

.content table tfoot td,
.content table tfoot th {
  border-width: 2px 0 0;
  color: #363636;
}

/* line 143, node_modules/bulma/sass/elements/content.sass */

.content table tbody tr:last-child td,
.content table tbody tr:last-child th {
  border-bottom-width: 0;
}

/* line 147, node_modules/bulma/sass/elements/content.sass */

.content .tabs li + li {
  margin-top: 0;
}

/* line 150, node_modules/bulma/sass/elements/content.sass */

.content.is-small {
  font-size: 0.75rem;
}

/* line 152, node_modules/bulma/sass/elements/content.sass */

.content.is-medium {
  font-size: 1.25rem;
}

/* line 154, node_modules/bulma/sass/elements/content.sass */

.content.is-large {
  font-size: 1.5rem;
}

/* line 6, node_modules/bulma/sass/elements/icon.sass */

.icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 1.5rem;
  width: 1.5rem;
}

/* line 13, node_modules/bulma/sass/elements/icon.sass */

.icon.is-small {
  height: 1rem;
  width: 1rem;
}

/* line 16, node_modules/bulma/sass/elements/icon.sass */

.icon.is-medium {
  height: 2rem;
  width: 2rem;
}

/* line 19, node_modules/bulma/sass/elements/icon.sass */

.icon.is-large {
  height: 3rem;
  width: 3rem;
}

/* line 3, node_modules/bulma/sass/elements/image.sass */

.image {
  display: block;
  position: relative;
}

/* line 6, node_modules/bulma/sass/elements/image.sass */

.image img {
  display: block;
  height: auto;
  width: 100%;
}

/* line 10, node_modules/bulma/sass/elements/image.sass */

.image img.is-rounded {
  border-radius: 290486px;
}

/* line 12, node_modules/bulma/sass/elements/image.sass */

.image.is-fullwidth {
  width: 100%;
}

/* line 31, node_modules/bulma/sass/elements/image.sass */

.image.is-square img,
.image.is-square .has-ratio,
.image.is-1by1 img,
.image.is-1by1 .has-ratio,
.image.is-5by4 img,
.image.is-5by4 .has-ratio,
.image.is-4by3 img,
.image.is-4by3 .has-ratio,
.image.is-3by2 img,
.image.is-3by2 .has-ratio,
.image.is-5by3 img,
.image.is-5by3 .has-ratio,
.image.is-16by9 img,
.image.is-16by9 .has-ratio,
.image.is-2by1 img,
.image.is-2by1 .has-ratio,
.image.is-3by1 img,
.image.is-3by1 .has-ratio,
.image.is-4by5 img,
.image.is-4by5 .has-ratio,
.image.is-3by4 img,
.image.is-3by4 .has-ratio,
.image.is-2by3 img,
.image.is-2by3 .has-ratio,
.image.is-3by5 img,
.image.is-3by5 .has-ratio,
.image.is-9by16 img,
.image.is-9by16 .has-ratio,
.image.is-1by2 img,
.image.is-1by2 .has-ratio,
.image.is-1by3 img,
.image.is-1by3 .has-ratio {
  height: 100%;
  width: 100%;
}

/* line 36, node_modules/bulma/sass/elements/image.sass */

.image.is-square,
.image.is-1by1 {
  padding-top: 100%;
}

/* line 39, node_modules/bulma/sass/elements/image.sass */

.image.is-5by4 {
  padding-top: 80%;
}

/* line 41, node_modules/bulma/sass/elements/image.sass */

.image.is-4by3 {
  padding-top: 75%;
}

/* line 43, node_modules/bulma/sass/elements/image.sass */

.image.is-3by2 {
  padding-top: 66.6666%;
}

/* line 45, node_modules/bulma/sass/elements/image.sass */

.image.is-5by3 {
  padding-top: 60%;
}

/* line 47, node_modules/bulma/sass/elements/image.sass */

.image.is-16by9 {
  padding-top: 56.25%;
}

/* line 49, node_modules/bulma/sass/elements/image.sass */

.image.is-2by1 {
  padding-top: 50%;
}

/* line 51, node_modules/bulma/sass/elements/image.sass */

.image.is-3by1 {
  padding-top: 33.3333%;
}

/* line 53, node_modules/bulma/sass/elements/image.sass */

.image.is-4by5 {
  padding-top: 125%;
}

/* line 55, node_modules/bulma/sass/elements/image.sass */

.image.is-3by4 {
  padding-top: 133.3333%;
}

/* line 57, node_modules/bulma/sass/elements/image.sass */

.image.is-2by3 {
  padding-top: 150%;
}

/* line 59, node_modules/bulma/sass/elements/image.sass */

.image.is-3by5 {
  padding-top: 166.6666%;
}

/* line 61, node_modules/bulma/sass/elements/image.sass */

.image.is-9by16 {
  padding-top: 177.7777%;
}

/* line 63, node_modules/bulma/sass/elements/image.sass */

.image.is-1by2 {
  padding-top: 200%;
}

/* line 65, node_modules/bulma/sass/elements/image.sass */

.image.is-1by3 {
  padding-top: 300%;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-16x16 {
  height: 16px;
  width: 16px;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-24x24 {
  height: 24px;
  width: 24px;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-32x32 {
  height: 32px;
  width: 32px;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-48x48 {
  height: 48px;
  width: 48px;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-64x64 {
  height: 64px;
  width: 64px;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-96x96 {
  height: 96px;
  width: 96px;
}

/* line 69, node_modules/bulma/sass/elements/image.sass */

.image.is-128x128 {
  height: 128px;
  width: 128px;
}

/* line 6, node_modules/bulma/sass/elements/notification.sass */

.notification {
  background-color: whitesmoke;
  border-radius: 4px;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
  position: relative;
}

/* line 12, node_modules/bulma/sass/elements/notification.sass */

.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}

/* line 15, node_modules/bulma/sass/elements/notification.sass */

.notification strong {
  color: currentColor;
}

/* line 17, node_modules/bulma/sass/elements/notification.sass */

.notification code,
.notification pre {
  background: white;
}

/* line 20, node_modules/bulma/sass/elements/notification.sass */

.notification pre code {
  background: transparent;
}

/* line 22, node_modules/bulma/sass/elements/notification.sass */

.notification > .delete {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
}

/* line 26, node_modules/bulma/sass/elements/notification.sass */

.notification .title,
.notification .subtitle,
.notification .content {
  color: currentColor;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-white {
  background-color: white;
  color: #0a0a0a;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-black {
  background-color: #0a0a0a;
  color: white;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-dark {
  background-color: #363636;
  color: #fff;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-primary {
  background-color: #00d1b2;
  color: #fff;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-link {
  background-color: #3273dc;
  color: #fff;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-info {
  background-color: #3298dc;
  color: #fff;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-success {
  background-color: #48c774;
  color: #fff;
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 34, node_modules/bulma/sass/elements/notification.sass */

.notification.is-danger {
  background-color: #f14668;
  color: #fff;
}

/* line 7, node_modules/bulma/sass/elements/progress.sass */

.progress {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 290486px;
  display: block;
  height: 1rem;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* line 18, node_modules/bulma/sass/elements/progress.sass */

.progress::-webkit-progress-bar {
  background-color: #ededed;
}

/* line 20, node_modules/bulma/sass/elements/progress.sass */

.progress::-webkit-progress-value {
  background-color: #4a4a4a;
}

/* line 22, node_modules/bulma/sass/elements/progress.sass */

.progress::-moz-progress-bar {
  background-color: #4a4a4a;
}

/* line 24, node_modules/bulma/sass/elements/progress.sass */

.progress::-ms-fill {
  background-color: #4a4a4a;
  border: none;
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-white::-webkit-progress-value {
  background-color: white;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-white::-moz-progress-bar {
  background-color: white;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-white::-ms-fill {
  background-color: white;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-white:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, white), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, white 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, white 30%, #ededed 30%);
  background-image: linear-gradient(to right, white 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-black::-webkit-progress-value {
  background-color: #0a0a0a;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-black::-moz-progress-bar {
  background-color: #0a0a0a;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-black::-ms-fill {
  background-color: #0a0a0a;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-black:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #0a0a0a), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #0a0a0a 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #0a0a0a 30%, #ededed 30%);
  background-image: linear-gradient(to right, #0a0a0a 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-light::-webkit-progress-value {
  background-color: whitesmoke;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-light::-moz-progress-bar {
  background-color: whitesmoke;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-light::-ms-fill {
  background-color: whitesmoke;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-light:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, whitesmoke), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, whitesmoke 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, whitesmoke 30%, #ededed 30%);
  background-image: linear-gradient(to right, whitesmoke 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-dark::-webkit-progress-value {
  background-color: #363636;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-dark::-moz-progress-bar {
  background-color: #363636;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-dark::-ms-fill {
  background-color: #363636;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-dark:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #363636), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #363636 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #363636 30%, #ededed 30%);
  background-image: linear-gradient(to right, #363636 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-primary::-webkit-progress-value {
  background-color: #00d1b2;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-primary::-moz-progress-bar {
  background-color: #00d1b2;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-primary::-ms-fill {
  background-color: #00d1b2;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-primary:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #00d1b2), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #00d1b2 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #00d1b2 30%, #ededed 30%);
  background-image: linear-gradient(to right, #00d1b2 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-link::-webkit-progress-value {
  background-color: #3273dc;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-link::-moz-progress-bar {
  background-color: #3273dc;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-link::-ms-fill {
  background-color: #3273dc;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-link:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #3273dc), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #3273dc 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #3273dc 30%, #ededed 30%);
  background-image: linear-gradient(to right, #3273dc 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-info::-webkit-progress-value {
  background-color: #3298dc;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-info::-moz-progress-bar {
  background-color: #3298dc;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-info::-ms-fill {
  background-color: #3298dc;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-info:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #3298dc), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #3298dc 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #3298dc 30%, #ededed 30%);
  background-image: linear-gradient(to right, #3298dc 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-success::-webkit-progress-value {
  background-color: #48c774;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-success::-moz-progress-bar {
  background-color: #48c774;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-success::-ms-fill {
  background-color: #48c774;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-success:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #48c774), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #48c774 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #48c774 30%, #ededed 30%);
  background-image: linear-gradient(to right, #48c774 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-warning::-webkit-progress-value {
  background-color: #ffdd57;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-warning::-moz-progress-bar {
  background-color: #ffdd57;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-warning::-ms-fill {
  background-color: #ffdd57;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-warning:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #ffdd57), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #ffdd57 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #ffdd57 30%, #ededed 30%);
  background-image: linear-gradient(to right, #ffdd57 30%, #ededed 30%);
}

/* line 31, node_modules/bulma/sass/elements/progress.sass */

.progress.is-danger::-webkit-progress-value {
  background-color: #f14668;
}

/* line 33, node_modules/bulma/sass/elements/progress.sass */

.progress.is-danger::-moz-progress-bar {
  background-color: #f14668;
}

/* line 35, node_modules/bulma/sass/elements/progress.sass */

.progress.is-danger::-ms-fill {
  background-color: #f14668;
}

/* line 37, node_modules/bulma/sass/elements/progress.sass */

.progress.is-danger:indeterminate {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #f14668), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #f14668 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #f14668 30%, #ededed 30%);
  background-image: linear-gradient(to right, #f14668 30%, #ededed 30%);
}

/* line 40, node_modules/bulma/sass/elements/progress.sass */

.progress:indeterminate {
  -webkit-animation-duration: 1.5s;
       -o-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
       -o-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: moveIndeterminate;
       -o-animation-name: moveIndeterminate;
          animation-name: moveIndeterminate;
  -webkit-animation-timing-function: linear;
       -o-animation-timing-function: linear;
          animation-timing-function: linear;
  background-color: #ededed;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(30%, #4a4a4a), color-stop(30%, #ededed));
  background-image: -webkit-linear-gradient(left, #4a4a4a 30%, #ededed 30%);
  background-image: -o-linear-gradient(left, #4a4a4a 30%, #ededed 30%);
  background-image: linear-gradient(to right, #4a4a4a 30%, #ededed 30%);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 150% 150%;
}

/* line 50, node_modules/bulma/sass/elements/progress.sass */

.progress:indeterminate::-webkit-progress-bar {
  background-color: transparent;
}

/* line 52, node_modules/bulma/sass/elements/progress.sass */

.progress:indeterminate::-moz-progress-bar {
  background-color: transparent;
}

/* line 56, node_modules/bulma/sass/elements/progress.sass */

.progress.is-small {
  height: 0.75rem;
}

/* line 58, node_modules/bulma/sass/elements/progress.sass */

.progress.is-medium {
  height: 1.25rem;
}

/* line 60, node_modules/bulma/sass/elements/progress.sass */

.progress.is-large {
  height: 1.5rem;
}

@-webkit-keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@-o-keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

@keyframes moveIndeterminate {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}

/* line 26, node_modules/bulma/sass/elements/table.sass */

.table {
  background-color: white;
  color: #363636;
}

/* line 30, node_modules/bulma/sass/elements/table.sass */

.table td,
.table th {
  border: 1px solid #dbdbdb;
  border-width: 0 0 1px;
  padding: 0.5em 0.75em;
  vertical-align: top;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-white,
.table th.is-white {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-black,
.table th.is-black {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-light,
.table th.is-light {
  background-color: whitesmoke;
  border-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-dark,
.table th.is-dark {
  background-color: #363636;
  border-color: #363636;
  color: #fff;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-primary,
.table th.is-primary {
  background-color: #00d1b2;
  border-color: #00d1b2;
  color: #fff;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-link,
.table th.is-link {
  background-color: #3273dc;
  border-color: #3273dc;
  color: #fff;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-info,
.table th.is-info {
  background-color: #3298dc;
  border-color: #3298dc;
  color: #fff;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-success,
.table th.is-success {
  background-color: #48c774;
  border-color: #48c774;
  color: #fff;
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-warning,
.table th.is-warning {
  background-color: #ffdd57;
  border-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 40, node_modules/bulma/sass/elements/table.sass */

.table td.is-danger,
.table th.is-danger {
  background-color: #f14668;
  border-color: #f14668;
  color: #fff;
}

/* line 45, node_modules/bulma/sass/elements/table.sass */

.table td.is-narrow,
.table th.is-narrow {
  white-space: nowrap;
  width: 1%;
}

/* line 48, node_modules/bulma/sass/elements/table.sass */

.table td.is-selected,
.table th.is-selected {
  background-color: #00d1b2;
  color: #fff;
}

/* line 51, node_modules/bulma/sass/elements/table.sass */

.table td.is-selected a,
.table td.is-selected strong,
.table th.is-selected a,
.table th.is-selected strong {
  color: currentColor;
}

/* line 54, node_modules/bulma/sass/elements/table.sass */

.table th {
  color: #363636;
}

/* line 56, node_modules/bulma/sass/elements/table.sass */

.table th:not([align]) {
  text-align: left;
}

/* line 59, node_modules/bulma/sass/elements/table.sass */

.table tr.is-selected {
  background-color: #00d1b2;
  color: #fff;
}

/* line 62, node_modules/bulma/sass/elements/table.sass */

.table tr.is-selected a,
.table tr.is-selected strong {
  color: currentColor;
}

/* line 65, node_modules/bulma/sass/elements/table.sass */

.table tr.is-selected td,
.table tr.is-selected th {
  border-color: #fff;
  color: currentColor;
}

/* line 69, node_modules/bulma/sass/elements/table.sass */

.table thead {
  background-color: transparent;
}

/* line 71, node_modules/bulma/sass/elements/table.sass */

.table thead td,
.table thead th {
  border-width: 0 0 2px;
  color: #363636;
}

/* line 75, node_modules/bulma/sass/elements/table.sass */

.table tfoot {
  background-color: transparent;
}

/* line 77, node_modules/bulma/sass/elements/table.sass */

.table tfoot td,
.table tfoot th {
  border-width: 2px 0 0;
  color: #363636;
}

/* line 81, node_modules/bulma/sass/elements/table.sass */

.table tbody {
  background-color: transparent;
}

/* line 85, node_modules/bulma/sass/elements/table.sass */

.table tbody tr:last-child td,
.table tbody tr:last-child th {
  border-bottom-width: 0;
}

/* line 90, node_modules/bulma/sass/elements/table.sass */

.table.is-bordered td,
.table.is-bordered th {
  border-width: 1px;
}

/* line 95, node_modules/bulma/sass/elements/table.sass */

.table.is-bordered tr:last-child td,
.table.is-bordered tr:last-child th {
  border-bottom-width: 1px;
}

/* line 98, node_modules/bulma/sass/elements/table.sass */

.table.is-fullwidth {
  width: 100%;
}

/* line 103, node_modules/bulma/sass/elements/table.sass */

.table.is-hoverable tbody tr:not(.is-selected):hover {
  background-color: #fafafa;
}

/* line 108, node_modules/bulma/sass/elements/table.sass */

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover {
  background-color: #fafafa;
}

/* line 110, node_modules/bulma/sass/elements/table.sass */

.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(even) {
  background-color: whitesmoke;
}

/* line 113, node_modules/bulma/sass/elements/table.sass */

.table.is-narrow td,
.table.is-narrow th {
  padding: 0.25em 0.5em;
}

/* line 119, node_modules/bulma/sass/elements/table.sass */

.table.is-striped tbody tr:not(.is-selected):nth-child(even) {
  background-color: #fafafa;
}

/* line 122, node_modules/bulma/sass/elements/table.sass */

.table-container {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  overflow-y: hidden;
  max-width: 100%;
}

/* line 6, node_modules/bulma/sass/elements/tag.sass */

.tags {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 11, node_modules/bulma/sass/elements/tag.sass */

.tags .tag {
  margin-bottom: 0.5rem;
}

/* line 13, node_modules/bulma/sass/elements/tag.sass */

.tags .tag:not(:last-child) {
  margin-right: 0.5rem;
}

/* line 15, node_modules/bulma/sass/elements/tag.sass */

.tags:last-child {
  margin-bottom: -0.5rem;
}

/* line 17, node_modules/bulma/sass/elements/tag.sass */

.tags:not(:last-child) {
  margin-bottom: 1rem;
}

/* line 21, node_modules/bulma/sass/elements/tag.sass */

.tags.are-medium .tag:not(.is-normal):not(.is-large) {
  font-size: 1rem;
}

/* line 24, node_modules/bulma/sass/elements/tag.sass */

.tags.are-large .tag:not(.is-normal):not(.is-medium) {
  font-size: 1.25rem;
}

/* line 26, node_modules/bulma/sass/elements/tag.sass */

.tags.is-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 28, node_modules/bulma/sass/elements/tag.sass */

.tags.is-centered .tag {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

/* line 31, node_modules/bulma/sass/elements/tag.sass */

.tags.is-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 34, node_modules/bulma/sass/elements/tag.sass */

.tags.is-right .tag:not(:first-child) {
  margin-left: 0.5rem;
}

/* line 36, node_modules/bulma/sass/elements/tag.sass */

.tags.is-right .tag:not(:last-child) {
  margin-right: 0;
}

/* line 39, node_modules/bulma/sass/elements/tag.sass */

.tags.has-addons .tag {
  margin-right: 0;
}

/* line 41, node_modules/bulma/sass/elements/tag.sass */

.tags.has-addons .tag:not(:first-child) {
  margin-left: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 45, node_modules/bulma/sass/elements/tag.sass */

.tags.has-addons .tag:not(:last-child) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 49, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body) {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: whitesmoke;
  border-radius: 4px;
  color: #4a4a4a;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 0.75rem;
  height: 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.5;
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

/* line 62, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body) .delete {
  margin-left: 0.25rem;
  margin-right: -0.375rem;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-white {
  background-color: white;
  color: #0a0a0a;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-black {
  background-color: #0a0a0a;
  color: white;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-dark {
  background-color: #363636;
  color: #fff;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-primary {
  background-color: #00d1b2;
  color: #fff;
}

/* line 76, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-primary.is-light {
  background-color: #ebfffc;
  color: #00947e;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-link {
  background-color: #3273dc;
  color: #fff;
}

/* line 76, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-link.is-light {
  background-color: #eef3fc;
  color: #2160c4;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-info {
  background-color: #3298dc;
  color: #fff;
}

/* line 76, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-info.is-light {
  background-color: #eef6fc;
  color: #1d72aa;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-success {
  background-color: #48c774;
  color: #fff;
}

/* line 76, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-success.is-light {
  background-color: #effaf3;
  color: #257942;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 76, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-warning.is-light {
  background-color: #fffbeb;
  color: #947600;
}

/* line 69, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-danger {
  background-color: #f14668;
  color: #fff;
}

/* line 76, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-danger.is-light {
  background-color: #feecf0;
  color: #cc0f35;
}

/* line 80, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-normal {
  font-size: 0.75rem;
}

/* line 82, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-medium {
  font-size: 1rem;
}

/* line 84, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-large {
  font-size: 1.25rem;
}

/* line 87, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body) .icon:first-child:not(:last-child) {
  margin-left: -0.375em;
  margin-right: 0.1875em;
}

/* line 90, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body) .icon:last-child:not(:first-child) {
  margin-left: 0.1875em;
  margin-right: -0.375em;
}

/* line 93, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body) .icon:first-child:last-child {
  margin-left: -0.375em;
  margin-right: -0.375em;
}

/* line 97, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-delete {
  margin-left: 1px;
  padding: 0;
  position: relative;
  width: 2em;
}

/* line 102, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-delete::before,
.tag:not(body).is-delete::after {
  background-color: currentColor;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
       -o-transform: translateX(-50%) translateY(-50%) rotate(45deg);
          transform: translateX(-50%) translateY(-50%) rotate(45deg);
  -webkit-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
}

/* line 112, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-delete::before {
  height: 1px;
  width: 50%;
}

/* line 115, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-delete::after {
  height: 50%;
  width: 1px;
}

/* line 118, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-delete:hover,
.tag:not(body).is-delete:focus {
  background-color: #e8e8e8;
}

/* line 121, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-delete:active {
  background-color: #dbdbdb;
}

/* line 123, node_modules/bulma/sass/elements/tag.sass */

.tag:not(body).is-rounded {
  border-radius: 290486px;
}

/* line 127, node_modules/bulma/sass/elements/tag.sass */

a.tag:hover {
  text-decoration: underline;
}

/* line 20, node_modules/bulma/sass/elements/title.sass */

.title,
.subtitle {
  word-break: break-word;
}

/* line 24, node_modules/bulma/sass/elements/title.sass */

.title em,
.title span,
.subtitle em,
.subtitle span {
  font-weight: inherit;
}

/* line 27, node_modules/bulma/sass/elements/title.sass */

.title sub,
.subtitle sub {
  font-size: 0.75em;
}

/* line 29, node_modules/bulma/sass/elements/title.sass */

.title sup,
.subtitle sup {
  font-size: 0.75em;
}

/* line 31, node_modules/bulma/sass/elements/title.sass */

.title .tag,
.subtitle .tag {
  vertical-align: middle;
}

/* line 34, node_modules/bulma/sass/elements/title.sass */

.title {
  color: #363636;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.125;
}

/* line 41, node_modules/bulma/sass/elements/title.sass */

.title strong {
  color: inherit;
  font-weight: inherit;
}

/* line 44, node_modules/bulma/sass/elements/title.sass */

.title + .highlight {
  margin-top: -0.75rem;
}

/* line 46, node_modules/bulma/sass/elements/title.sass */

.title:not(.is-spaced) + .subtitle {
  margin-top: -1.25rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-1 {
  font-size: 3rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-2 {
  font-size: 2.5rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-3 {
  font-size: 2rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-4 {
  font-size: 1.5rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-5 {
  font-size: 1.25rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-6 {
  font-size: 1rem;
}

/* line 51, node_modules/bulma/sass/elements/title.sass */

.title.is-7 {
  font-size: 0.75rem;
}

/* line 54, node_modules/bulma/sass/elements/title.sass */

.subtitle {
  color: #4a4a4a;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

/* line 61, node_modules/bulma/sass/elements/title.sass */

.subtitle strong {
  color: #363636;
  font-weight: 600;
}

/* line 64, node_modules/bulma/sass/elements/title.sass */

.subtitle:not(.is-spaced) + .title {
  margin-top: -1.25rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-1 {
  font-size: 3rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-2 {
  font-size: 2.5rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-3 {
  font-size: 2rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-4 {
  font-size: 1.5rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-5 {
  font-size: 1.25rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-6 {
  font-size: 1rem;
}

/* line 69, node_modules/bulma/sass/elements/title.sass */

.subtitle.is-7 {
  font-size: 0.75rem;
}

/* line 7, node_modules/bulma/sass/elements/other.sass */

.heading {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

/* line 14, node_modules/bulma/sass/elements/other.sass */

.highlight {
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
}

/* line 20, node_modules/bulma/sass/elements/other.sass */

.highlight pre {
  overflow: auto;
  max-width: 100%;
}

/* line 27, node_modules/bulma/sass/elements/other.sass */

.number {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: whitesmoke;
  border-radius: 290486px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 1.25rem;
  height: 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 1.5rem;
  min-width: 2.5em;
  padding: 0.25rem 0.5rem;
  text-align: center;
  vertical-align: top;
}

/* line 54, node_modules/bulma/sass/form/shared.sass */

.input,
.textarea,
.select select {
  background-color: white;
  border-color: #dbdbdb;
  border-radius: 4px;
  color: #363636;
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input::-moz-placeholder,
.textarea::-moz-placeholder,
.select select::-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input::-webkit-input-placeholder,
.textarea::-webkit-input-placeholder,
.select select::-webkit-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input:-moz-placeholder,
.textarea:-moz-placeholder,
.select select:-moz-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input:-ms-input-placeholder,
.textarea:-ms-input-placeholder,
.select select:-ms-input-placeholder {
  color: rgba(54, 54, 54, 0.3);
}

/* line 36, node_modules/bulma/sass/form/shared.sass */

.input:hover,
.textarea:hover,
.select select:hover,
.is-hovered.input,
.is-hovered.textarea,
.select select.is-hovered {
  border-color: #b5b5b5;
}

/* line 39, node_modules/bulma/sass/form/shared.sass */

.input:focus,
.textarea:focus,
.select select:focus,
.is-focused.input,
.is-focused.textarea,
.select select.is-focused,
.input:active,
.textarea:active,
.select select:active,
.is-active.input,
.is-active.textarea,
.select select.is-active {
  border-color: #3273dc;
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

/* line 45, node_modules/bulma/sass/form/shared.sass */

.input[disabled],
.textarea[disabled],
.select select[disabled],
fieldset[disabled] .input,
fieldset[disabled] .textarea,
fieldset[disabled] .select select,
.select fieldset[disabled] select {
  background-color: whitesmoke;
  border-color: whitesmoke;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #7a7a7a;
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input[disabled]::-moz-placeholder,
.textarea[disabled]::-moz-placeholder,
.select select[disabled]::-moz-placeholder,
fieldset[disabled] .input::-moz-placeholder,
fieldset[disabled] .textarea::-moz-placeholder,
fieldset[disabled] .select select::-moz-placeholder,
.select fieldset[disabled] select::-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input[disabled]::-webkit-input-placeholder,
.textarea[disabled]::-webkit-input-placeholder,
.select select[disabled]::-webkit-input-placeholder,
fieldset[disabled] .input::-webkit-input-placeholder,
fieldset[disabled] .textarea::-webkit-input-placeholder,
fieldset[disabled] .select select::-webkit-input-placeholder,
.select fieldset[disabled] select::-webkit-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input[disabled]:-moz-placeholder,
.textarea[disabled]:-moz-placeholder,
.select select[disabled]:-moz-placeholder,
fieldset[disabled] .input:-moz-placeholder,
fieldset[disabled] .textarea:-moz-placeholder,
fieldset[disabled] .select select:-moz-placeholder,
.select fieldset[disabled] select:-moz-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

/* line 68, node_modules/bulma/sass/utilities/mixins.sass */

.input[disabled]:-ms-input-placeholder,
.textarea[disabled]:-ms-input-placeholder,
.select select[disabled]:-ms-input-placeholder,
fieldset[disabled] .input:-ms-input-placeholder,
fieldset[disabled] .textarea:-ms-input-placeholder,
fieldset[disabled] .select select:-ms-input-placeholder,
.select fieldset[disabled] select:-ms-input-placeholder {
  color: rgba(122, 122, 122, 0.3);
}

/* line 5, node_modules/bulma/sass/form/input-textarea.sass */

.input,
.textarea {
  -webkit-box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05);
          box-shadow: inset 0 0.0625em 0.125em rgba(10, 10, 10, 0.05);
  max-width: 100%;
  width: 100%;
}

/* line 10, node_modules/bulma/sass/form/input-textarea.sass */

.input[readonly],
.textarea[readonly] {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-white.input,
.is-white.textarea {
  border-color: white;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-white.input:focus,
.is-white.textarea:focus,
.is-white.is-focused.input,
.is-white.is-focused.textarea,
.is-white.input:active,
.is-white.textarea:active,
.is-white.is-active.input,
.is-white.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-black.input,
.is-black.textarea {
  border-color: #0a0a0a;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-black.input:focus,
.is-black.textarea:focus,
.is-black.is-focused.input,
.is-black.is-focused.textarea,
.is-black.input:active,
.is-black.textarea:active,
.is-black.is-active.input,
.is-black.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
          box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-light.input,
.is-light.textarea {
  border-color: whitesmoke;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-light.input:focus,
.is-light.textarea:focus,
.is-light.is-focused.input,
.is-light.is-focused.textarea,
.is-light.input:active,
.is-light.textarea:active,
.is-light.is-active.input,
.is-light.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
          box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-dark.input,
.is-dark.textarea {
  border-color: #363636;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-dark.input:focus,
.is-dark.textarea:focus,
.is-dark.is-focused.input,
.is-dark.is-focused.textarea,
.is-dark.input:active,
.is-dark.textarea:active,
.is-dark.is-active.input,
.is-dark.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
          box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-primary.input,
.is-primary.textarea {
  border-color: #00d1b2;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-primary.input:focus,
.is-primary.textarea:focus,
.is-primary.is-focused.input,
.is-primary.is-focused.textarea,
.is-primary.input:active,
.is-primary.textarea:active,
.is-primary.is-active.input,
.is-primary.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
          box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-link.input,
.is-link.textarea {
  border-color: #3273dc;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-link.input:focus,
.is-link.textarea:focus,
.is-link.is-focused.input,
.is-link.is-focused.textarea,
.is-link.input:active,
.is-link.textarea:active,
.is-link.is-active.input,
.is-link.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-info.input,
.is-info.textarea {
  border-color: #3298dc;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-info.input:focus,
.is-info.textarea:focus,
.is-info.is-focused.input,
.is-info.is-focused.textarea,
.is-info.input:active,
.is-info.textarea:active,
.is-info.is-active.input,
.is-info.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-success.input,
.is-success.textarea {
  border-color: #48c774;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-success.input:focus,
.is-success.textarea:focus,
.is-success.is-focused.input,
.is-success.is-focused.textarea,
.is-success.input:active,
.is-success.textarea:active,
.is-success.is-active.input,
.is-success.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
          box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-warning.input,
.is-warning.textarea {
  border-color: #ffdd57;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-warning.input:focus,
.is-warning.textarea:focus,
.is-warning.is-focused.input,
.is-warning.is-focused.textarea,
.is-warning.input:active,
.is-warning.textarea:active,
.is-warning.is-active.input,
.is-warning.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

/* line 15, node_modules/bulma/sass/form/input-textarea.sass */

.is-danger.input,
.is-danger.textarea {
  border-color: #f14668;
}

/* line 17, node_modules/bulma/sass/form/input-textarea.sass */

.is-danger.input:focus,
.is-danger.textarea:focus,
.is-danger.is-focused.input,
.is-danger.is-focused.textarea,
.is-danger.input:active,
.is-danger.textarea:active,
.is-danger.is-active.input,
.is-danger.is-active.textarea {
  -webkit-box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
          box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
}

/* line 23, node_modules/bulma/sass/form/input-textarea.sass */

.is-small.input,
.is-small.textarea {
  border-radius: 2px;
  font-size: 0.75rem;
}

/* line 25, node_modules/bulma/sass/form/input-textarea.sass */

.is-medium.input,
.is-medium.textarea {
  font-size: 1.25rem;
}

/* line 27, node_modules/bulma/sass/form/input-textarea.sass */

.is-large.input,
.is-large.textarea {
  font-size: 1.5rem;
}

/* line 30, node_modules/bulma/sass/form/input-textarea.sass */

.is-fullwidth.input,
.is-fullwidth.textarea {
  display: block;
  width: 100%;
}

/* line 33, node_modules/bulma/sass/form/input-textarea.sass */

.is-inline.input,
.is-inline.textarea {
  display: inline;
  width: auto;
}

/* line 39, node_modules/bulma/sass/form/input-textarea.sass */

.input.is-rounded {
  border-radius: 290486px;
  padding-left: calc(calc(0.75em - 1px) + 0.375em);
  padding-right: calc(calc(0.75em - 1px) + 0.375em);
}

/* line 43, node_modules/bulma/sass/form/input-textarea.sass */

.input.is-static {
  background-color: transparent;
  border-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

/* line 50, node_modules/bulma/sass/form/input-textarea.sass */

.textarea {
  display: block;
  max-width: 100%;
  min-width: 100%;
  padding: calc(0.75em - 1px);
  resize: vertical;
}

/* line 57, node_modules/bulma/sass/form/input-textarea.sass */

.textarea:not([rows]) {
  max-height: 40em;
  min-height: 8em;
}

/* line 60, node_modules/bulma/sass/form/input-textarea.sass */

.textarea[rows] {
  height: initial;
}

/* line 63, node_modules/bulma/sass/form/input-textarea.sass */

.textarea.has-fixed-size {
  resize: none;
}

/* line 1, node_modules/bulma/sass/form/checkbox-radio.sass */

.checkbox,
.radio {
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  position: relative;
}

/* line 6, node_modules/bulma/sass/form/checkbox-radio.sass */

.checkbox input,
.radio input {
  cursor: pointer;
}

/* line 8, node_modules/bulma/sass/form/checkbox-radio.sass */

.checkbox:hover,
.radio:hover {
  color: #363636;
}

/* line 10, node_modules/bulma/sass/form/checkbox-radio.sass */

.checkbox[disabled],
.radio[disabled],
fieldset[disabled] .checkbox,
fieldset[disabled] .radio {
  color: #7a7a7a;
  cursor: not-allowed;
}

/* line 20, node_modules/bulma/sass/form/checkbox-radio.sass */

.radio + .radio {
  margin-left: 0.5em;
}

/* line 1, node_modules/bulma/sass/form/select.sass */

.select {
  display: inline-block;
  max-width: 100%;
  position: relative;
  vertical-align: top;
}

/* line 6, node_modules/bulma/sass/form/select.sass */

.select:not(.is-multiple) {
  height: 2.5em;
}

/* line 9, node_modules/bulma/sass/form/select.sass */

.select:not(.is-multiple):not(.is-loading)::after {
  border-color: #3273dc;
  right: 1.125em;
  z-index: 4;
}

/* line 15, node_modules/bulma/sass/form/select.sass */

.select.is-rounded select {
  border-radius: 290486px;
  padding-left: 1em;
}

/* line 18, node_modules/bulma/sass/form/select.sass */

.select select {
  cursor: pointer;
  display: block;
  font-size: 1em;
  max-width: 100%;
  outline: none;
}

/* line 25, node_modules/bulma/sass/form/select.sass */

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

/* line 27, node_modules/bulma/sass/form/select.sass */

.select select[disabled]:hover,
fieldset[disabled] .select select:hover {
  border-color: whitesmoke;
}

/* line 30, node_modules/bulma/sass/form/select.sass */

.select select:not([multiple]) {
  padding-right: 2.5em;
}

/* line 32, node_modules/bulma/sass/form/select.sass */

.select select[multiple] {
  height: auto;
  padding: 0;
}

/* line 35, node_modules/bulma/sass/form/select.sass */

.select select[multiple] option {
  padding: 0.5em 1em;
}

/* line 39, node_modules/bulma/sass/form/select.sass */

.select:not(.is-multiple):not(.is-loading):hover::after {
  border-color: #363636;
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-white:not(:hover)::after {
  border-color: white;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-white select {
  border-color: white;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-white select:hover,
.select.is-white select.is-hovered {
  border-color: #f2f2f2;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-white select:focus,
.select.is-white select.is-focused,
.select.is-white select:active,
.select.is-white select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-black:not(:hover)::after {
  border-color: #0a0a0a;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-black select {
  border-color: #0a0a0a;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-black select:hover,
.select.is-black select.is-hovered {
  border-color: black;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-black select:focus,
.select.is-black select.is-focused,
.select.is-black select:active,
.select.is-black select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
          box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-light:not(:hover)::after {
  border-color: whitesmoke;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-light select {
  border-color: whitesmoke;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-light select:hover,
.select.is-light select.is-hovered {
  border-color: #e8e8e8;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-light select:focus,
.select.is-light select.is-focused,
.select.is-light select:active,
.select.is-light select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
          box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-dark:not(:hover)::after {
  border-color: #363636;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-dark select {
  border-color: #363636;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-dark select:hover,
.select.is-dark select.is-hovered {
  border-color: #292929;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-dark select:focus,
.select.is-dark select.is-focused,
.select.is-dark select:active,
.select.is-dark select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
          box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-primary:not(:hover)::after {
  border-color: #00d1b2;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-primary select {
  border-color: #00d1b2;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-primary select:hover,
.select.is-primary select.is-hovered {
  border-color: #00b89c;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-primary select:focus,
.select.is-primary select.is-focused,
.select.is-primary select:active,
.select.is-primary select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
          box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-link:not(:hover)::after {
  border-color: #3273dc;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-link select {
  border-color: #3273dc;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-link select:hover,
.select.is-link select.is-hovered {
  border-color: #2366d1;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-link select:focus,
.select.is-link select.is-focused,
.select.is-link select:active,
.select.is-link select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-info:not(:hover)::after {
  border-color: #3298dc;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-info select {
  border-color: #3298dc;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-info select:hover,
.select.is-info select.is-hovered {
  border-color: #238cd1;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-info select:focus,
.select.is-info select.is-focused,
.select.is-info select:active,
.select.is-info select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25);
          box-shadow: 0 0 0 0.125em rgba(50, 152, 220, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-success:not(:hover)::after {
  border-color: #48c774;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-success select {
  border-color: #48c774;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-success select:hover,
.select.is-success select.is-hovered {
  border-color: #3abb67;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-success select:focus,
.select.is-success select.is-focused,
.select.is-success select:active,
.select.is-success select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
          box-shadow: 0 0 0 0.125em rgba(72, 199, 116, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-warning:not(:hover)::after {
  border-color: #ffdd57;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-warning select {
  border-color: #ffdd57;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-warning select:hover,
.select.is-warning select.is-hovered {
  border-color: #ffd83d;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-warning select:focus,
.select.is-warning select.is-focused,
.select.is-warning select:active,
.select.is-warning select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
          box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}

/* line 45, node_modules/bulma/sass/form/select.sass */

.select.is-danger:not(:hover)::after {
  border-color: #f14668;
}

/* line 47, node_modules/bulma/sass/form/select.sass */

.select.is-danger select {
  border-color: #f14668;
}

/* line 49, node_modules/bulma/sass/form/select.sass */

.select.is-danger select:hover,
.select.is-danger select.is-hovered {
  border-color: #ef2e55;
}

/* line 52, node_modules/bulma/sass/form/select.sass */

.select.is-danger select:focus,
.select.is-danger select.is-focused,
.select.is-danger select:active,
.select.is-danger select.is-active {
  -webkit-box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
          box-shadow: 0 0 0 0.125em rgba(241, 70, 104, 0.25);
}

/* line 58, node_modules/bulma/sass/form/select.sass */

.select.is-small {
  border-radius: 2px;
  font-size: 0.75rem;
}

/* line 60, node_modules/bulma/sass/form/select.sass */

.select.is-medium {
  font-size: 1.25rem;
}

/* line 62, node_modules/bulma/sass/form/select.sass */

.select.is-large {
  font-size: 1.5rem;
}

/* line 66, node_modules/bulma/sass/form/select.sass */

.select.is-disabled::after {
  border-color: #7a7a7a;
}

/* line 68, node_modules/bulma/sass/form/select.sass */

.select.is-fullwidth {
  width: 100%;
}

/* line 70, node_modules/bulma/sass/form/select.sass */

.select.is-fullwidth select {
  width: 100%;
}

/* line 73, node_modules/bulma/sass/form/select.sass */

.select.is-loading::after {
  margin-top: 0;
  position: absolute;
  right: 0.625em;
  top: 0.625em;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

/* line 80, node_modules/bulma/sass/form/select.sass */

.select.is-loading.is-small:after {
  font-size: 0.75rem;
}

/* line 82, node_modules/bulma/sass/form/select.sass */

.select.is-loading.is-medium:after {
  font-size: 1.25rem;
}

/* line 84, node_modules/bulma/sass/form/select.sass */

.select.is-loading.is-large:after {
  font-size: 1.5rem;
}

/* line 14, node_modules/bulma/sass/form/file.sass */

.file {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-white .file-cta {
  background-color: white;
  border-color: transparent;
  color: #0a0a0a;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-white:hover .file-cta,
.file.is-white.is-hovered .file-cta {
  background-color: #f9f9f9;
  border-color: transparent;
  color: #0a0a0a;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-white:focus .file-cta,
.file.is-white.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
          box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
  color: #0a0a0a;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-white:active .file-cta,
.file.is-white.is-active .file-cta {
  background-color: #f2f2f2;
  border-color: transparent;
  color: #0a0a0a;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-black .file-cta {
  background-color: #0a0a0a;
  border-color: transparent;
  color: white;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-black:hover .file-cta,
.file.is-black.is-hovered .file-cta {
  background-color: #040404;
  border-color: transparent;
  color: white;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-black:focus .file-cta,
.file.is-black.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
          box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
  color: white;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-black:active .file-cta,
.file.is-black.is-active .file-cta {
  background-color: black;
  border-color: transparent;
  color: white;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-light .file-cta {
  background-color: whitesmoke;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-light:hover .file-cta,
.file.is-light.is-hovered .file-cta {
  background-color: #eeeeee;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-light:focus .file-cta,
.file.is-light.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
          box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
  color: rgba(0, 0, 0, 0.7);
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-light:active .file-cta,
.file.is-light.is-active .file-cta {
  background-color: #e8e8e8;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-dark .file-cta {
  background-color: #363636;
  border-color: transparent;
  color: #fff;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-dark:hover .file-cta,
.file.is-dark.is-hovered .file-cta {
  background-color: #2f2f2f;
  border-color: transparent;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-dark:focus .file-cta,
.file.is-dark.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
          box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
  color: #fff;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-dark:active .file-cta,
.file.is-dark.is-active .file-cta {
  background-color: #292929;
  border-color: transparent;
  color: #fff;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-primary .file-cta {
  background-color: #00d1b2;
  border-color: transparent;
  color: #fff;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-primary:hover .file-cta,
.file.is-primary.is-hovered .file-cta {
  background-color: #00c4a7;
  border-color: transparent;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-primary:focus .file-cta,
.file.is-primary.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
          box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
  color: #fff;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-primary:active .file-cta,
.file.is-primary.is-active .file-cta {
  background-color: #00b89c;
  border-color: transparent;
  color: #fff;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-link .file-cta {
  background-color: #3273dc;
  border-color: transparent;
  color: #fff;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-link:hover .file-cta,
.file.is-link.is-hovered .file-cta {
  background-color: #276cda;
  border-color: transparent;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-link:focus .file-cta,
.file.is-link.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
          box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
  color: #fff;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-link:active .file-cta,
.file.is-link.is-active .file-cta {
  background-color: #2366d1;
  border-color: transparent;
  color: #fff;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-info .file-cta {
  background-color: #3298dc;
  border-color: transparent;
  color: #fff;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-info:hover .file-cta,
.file.is-info.is-hovered .file-cta {
  background-color: #2793da;
  border-color: transparent;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-info:focus .file-cta,
.file.is-info.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(50, 152, 220, 0.25);
          box-shadow: 0 0 0.5em rgba(50, 152, 220, 0.25);
  color: #fff;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-info:active .file-cta,
.file.is-info.is-active .file-cta {
  background-color: #238cd1;
  border-color: transparent;
  color: #fff;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-success .file-cta {
  background-color: #48c774;
  border-color: transparent;
  color: #fff;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-success:hover .file-cta,
.file.is-success.is-hovered .file-cta {
  background-color: #3ec46d;
  border-color: transparent;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-success:focus .file-cta,
.file.is-success.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(72, 199, 116, 0.25);
          box-shadow: 0 0 0.5em rgba(72, 199, 116, 0.25);
  color: #fff;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-success:active .file-cta,
.file.is-success.is-active .file-cta {
  background-color: #3abb67;
  border-color: transparent;
  color: #fff;
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-warning .file-cta {
  background-color: #ffdd57;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-warning:hover .file-cta,
.file.is-warning.is-hovered .file-cta {
  background-color: #ffdb4a;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-warning:focus .file-cta,
.file.is-warning.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
          box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
  color: rgba(0, 0, 0, 0.7);
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-warning:active .file-cta,
.file.is-warning.is-active .file-cta {
  background-color: #ffd83d;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

/* line 25, node_modules/bulma/sass/form/file.sass */

.file.is-danger .file-cta {
  background-color: #f14668;
  border-color: transparent;
  color: #fff;
}

/* line 31, node_modules/bulma/sass/form/file.sass */

.file.is-danger:hover .file-cta,
.file.is-danger.is-hovered .file-cta {
  background-color: #f03a5f;
  border-color: transparent;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/form/file.sass */

.file.is-danger:focus .file-cta,
.file.is-danger.is-focused .file-cta {
  border-color: transparent;
  -webkit-box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25);
          box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25);
  color: #fff;
}

/* line 43, node_modules/bulma/sass/form/file.sass */

.file.is-danger:active .file-cta,
.file.is-danger.is-active .file-cta {
  background-color: #ef2e55;
  border-color: transparent;
  color: #fff;
}

/* line 48, node_modules/bulma/sass/form/file.sass */

.file.is-small {
  font-size: 0.75rem;
}

/* line 50, node_modules/bulma/sass/form/file.sass */

.file.is-medium {
  font-size: 1.25rem;
}

/* line 53, node_modules/bulma/sass/form/file.sass */

.file.is-medium .file-icon .fa {
  font-size: 21px;
}

/* line 55, node_modules/bulma/sass/form/file.sass */

.file.is-large {
  font-size: 1.5rem;
}

/* line 58, node_modules/bulma/sass/form/file.sass */

.file.is-large .file-icon .fa {
  font-size: 28px;
}

/* line 62, node_modules/bulma/sass/form/file.sass */

.file.has-name .file-cta {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 65, node_modules/bulma/sass/form/file.sass */

.file.has-name .file-name {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 69, node_modules/bulma/sass/form/file.sass */

.file.has-name.is-empty .file-cta {
  border-radius: 4px;
}

/* line 71, node_modules/bulma/sass/form/file.sass */

.file.has-name.is-empty .file-name {
  display: none;
}

/* line 74, node_modules/bulma/sass/form/file.sass */

.file.is-boxed .file-label {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 76, node_modules/bulma/sass/form/file.sass */

.file.is-boxed .file-cta {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  padding: 1em 3em;
}

/* line 80, node_modules/bulma/sass/form/file.sass */

.file.is-boxed .file-name {
  border-width: 0 1px 1px;
}

/* line 82, node_modules/bulma/sass/form/file.sass */

.file.is-boxed .file-icon {
  height: 1.5em;
  width: 1.5em;
}

/* line 85, node_modules/bulma/sass/form/file.sass */

.file.is-boxed .file-icon .fa {
  font-size: 21px;
}

/* line 88, node_modules/bulma/sass/form/file.sass */

.file.is-boxed.is-small .file-icon .fa {
  font-size: 14px;
}

/* line 91, node_modules/bulma/sass/form/file.sass */

.file.is-boxed.is-medium .file-icon .fa {
  font-size: 28px;
}

/* line 94, node_modules/bulma/sass/form/file.sass */

.file.is-boxed.is-large .file-icon .fa {
  font-size: 35px;
}

/* line 97, node_modules/bulma/sass/form/file.sass */

.file.is-boxed.has-name .file-cta {
  border-radius: 4px 4px 0 0;
}

/* line 99, node_modules/bulma/sass/form/file.sass */

.file.is-boxed.has-name .file-name {
  border-radius: 0 0 4px 4px;
  border-width: 0 1px 1px;
}

/* line 102, node_modules/bulma/sass/form/file.sass */

.file.is-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 105, node_modules/bulma/sass/form/file.sass */

.file.is-fullwidth .file-label {
  width: 100%;
}

/* line 107, node_modules/bulma/sass/form/file.sass */

.file.is-fullwidth .file-name {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: none;
}

/* line 110, node_modules/bulma/sass/form/file.sass */

.file.is-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 112, node_modules/bulma/sass/form/file.sass */

.file.is-right .file-cta {
  border-radius: 0 4px 4px 0;
}

/* line 114, node_modules/bulma/sass/form/file.sass */

.file.is-right .file-name {
  border-radius: 4px 0 0 4px;
  border-width: 1px 0 1px 1px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

/* line 119, node_modules/bulma/sass/form/file.sass */

.file-label {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

/* line 127, node_modules/bulma/sass/form/file.sass */

.file-label:hover .file-cta {
  background-color: #eeeeee;
  color: #363636;
}

/* line 130, node_modules/bulma/sass/form/file.sass */

.file-label:hover .file-name {
  border-color: #d5d5d5;
}

/* line 133, node_modules/bulma/sass/form/file.sass */

.file-label:active .file-cta {
  background-color: #e8e8e8;
  color: #363636;
}

/* line 136, node_modules/bulma/sass/form/file.sass */

.file-label:active .file-name {
  border-color: #cfcfcf;
}

/* line 139, node_modules/bulma/sass/form/file.sass */

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

/* line 148, node_modules/bulma/sass/form/file.sass */

.file-cta,
.file-name {
  border-color: #dbdbdb;
  border-radius: 4px;
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  white-space: nowrap;
}

/* line 158, node_modules/bulma/sass/form/file.sass */

.file-cta {
  background-color: whitesmoke;
  color: #4a4a4a;
}

/* line 162, node_modules/bulma/sass/form/file.sass */

.file-name {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  display: block;
  max-width: 16em;
  overflow: hidden;
  text-align: left;
  text-overflow: ellipsis;
}

/* line 172, node_modules/bulma/sass/form/file.sass */

.file-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 0.5em;
  width: 1em;
}

/* line 179, node_modules/bulma/sass/form/file.sass */

.file-icon .fa {
  font-size: 14px;
}

/* line 6, node_modules/bulma/sass/form/tools.sass */

.label {
  color: #363636;
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* line 11, node_modules/bulma/sass/form/tools.sass */

.label:not(:last-child) {
  margin-bottom: 0.5em;
}

/* line 14, node_modules/bulma/sass/form/tools.sass */

.label.is-small {
  font-size: 0.75rem;
}

/* line 16, node_modules/bulma/sass/form/tools.sass */

.label.is-medium {
  font-size: 1.25rem;
}

/* line 18, node_modules/bulma/sass/form/tools.sass */

.label.is-large {
  font-size: 1.5rem;
}

/* line 21, node_modules/bulma/sass/form/tools.sass */

.help {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.25rem;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-white {
  color: white;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-black {
  color: #0a0a0a;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-light {
  color: whitesmoke;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-dark {
  color: #363636;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-primary {
  color: #00d1b2;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-link {
  color: #3273dc;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-info {
  color: #3298dc;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-success {
  color: #48c774;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-warning {
  color: #ffdd57;
}

/* line 27, node_modules/bulma/sass/form/tools.sass */

.help.is-danger {
  color: #f14668;
}

/* line 33, node_modules/bulma/sass/form/tools.sass */

.field:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 36, node_modules/bulma/sass/form/tools.sass */

.field.has-addons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 40, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control:not(:last-child) {
  margin-right: -1px;
}

/* line 43, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control:not(:first-child):not(:last-child) .button,
.field.has-addons .control:not(:first-child):not(:last-child) .input,
.field.has-addons .control:not(:first-child):not(:last-child) .select select {
  border-radius: 0;
}

/* line 48, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control:first-child:not(:only-child) .button,
.field.has-addons .control:first-child:not(:only-child) .input,
.field.has-addons .control:first-child:not(:only-child) .select select {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/* line 54, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control:last-child:not(:only-child) .button,
.field.has-addons .control:last-child:not(:only-child) .input,
.field.has-addons .control:last-child:not(:only-child) .select select {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

/* line 63, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control .button:not([disabled]):hover,
.field.has-addons .control .button:not([disabled]).is-hovered,
.field.has-addons .control .input:not([disabled]):hover,
.field.has-addons .control .input:not([disabled]).is-hovered,
.field.has-addons .control .select select:not([disabled]):hover,
.field.has-addons .control .select select:not([disabled]).is-hovered {
  z-index: 2;
}

/* line 66, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control .button:not([disabled]):focus,
.field.has-addons .control .button:not([disabled]).is-focused,
.field.has-addons .control .button:not([disabled]):active,
.field.has-addons .control .button:not([disabled]).is-active,
.field.has-addons .control .input:not([disabled]):focus,
.field.has-addons .control .input:not([disabled]).is-focused,
.field.has-addons .control .input:not([disabled]):active,
.field.has-addons .control .input:not([disabled]).is-active,
.field.has-addons .control .select select:not([disabled]):focus,
.field.has-addons .control .select select:not([disabled]).is-focused,
.field.has-addons .control .select select:not([disabled]):active,
.field.has-addons .control .select select:not([disabled]).is-active {
  z-index: 3;
}

/* line 71, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control .button:not([disabled]):focus:hover,
.field.has-addons .control .button:not([disabled]).is-focused:hover,
.field.has-addons .control .button:not([disabled]):active:hover,
.field.has-addons .control .button:not([disabled]).is-active:hover,
.field.has-addons .control .input:not([disabled]):focus:hover,
.field.has-addons .control .input:not([disabled]).is-focused:hover,
.field.has-addons .control .input:not([disabled]):active:hover,
.field.has-addons .control .input:not([disabled]).is-active:hover,
.field.has-addons .control .select select:not([disabled]):focus:hover,
.field.has-addons .control .select select:not([disabled]).is-focused:hover,
.field.has-addons .control .select select:not([disabled]):active:hover,
.field.has-addons .control .select select:not([disabled]).is-active:hover {
  z-index: 4;
}

/* line 73, node_modules/bulma/sass/form/tools.sass */

.field.has-addons .control.is-expanded {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 76, node_modules/bulma/sass/form/tools.sass */

.field.has-addons.has-addons-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 78, node_modules/bulma/sass/form/tools.sass */

.field.has-addons.has-addons-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 81, node_modules/bulma/sass/form/tools.sass */

.field.has-addons.has-addons-fullwidth .control {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 84, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 87, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped > .control {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 89, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped > .control:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}

/* line 92, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped > .control.is-expanded {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 95, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped.is-grouped-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 97, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped.is-grouped-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 99, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped.is-grouped-multiline {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 102, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped.is-grouped-multiline > .control:last-child,
.field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 105, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped.is-grouped-multiline:last-child {
  margin-bottom: -0.75rem;
}

/* line 107, node_modules/bulma/sass/form/tools.sass */

.field.is-grouped.is-grouped-multiline:not(:last-child) {
  margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
  /* line 109, node_modules/bulma/sass/form/tools.sass */

  .field.is-horizontal {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 114, node_modules/bulma/sass/form/tools.sass */

.field-label .label {
  font-size: inherit;
}

@media screen and (max-width: 768px) {
  /* line 113, node_modules/bulma/sass/form/tools.sass */

  .field-label {
    margin-bottom: 0.5rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 113, node_modules/bulma/sass/form/tools.sass */

  .field-label {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 1.5rem;
    text-align: right;
  }

  /* line 124, node_modules/bulma/sass/form/tools.sass */

  .field-label.is-small {
    font-size: 0.75rem;
    padding-top: 0.375em;
  }

  /* line 127, node_modules/bulma/sass/form/tools.sass */

  .field-label.is-normal {
    padding-top: 0.375em;
  }

  /* line 129, node_modules/bulma/sass/form/tools.sass */

  .field-label.is-medium {
    font-size: 1.25rem;
    padding-top: 0.375em;
  }

  /* line 132, node_modules/bulma/sass/form/tools.sass */

  .field-label.is-large {
    font-size: 1.5rem;
    padding-top: 0.375em;
  }
}

/* line 137, node_modules/bulma/sass/form/tools.sass */

.field-body .field .field {
  margin-bottom: 0;
}

@media screen and (min-width: 769px), print {
  /* line 136, node_modules/bulma/sass/form/tools.sass */

  .field-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 5;
        -ms-flex-positive: 5;
            flex-grow: 5;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  /* line 144, node_modules/bulma/sass/form/tools.sass */

  .field-body .field {
    margin-bottom: 0;
  }

  /* line 146, node_modules/bulma/sass/form/tools.sass */

  .field-body > .field {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  /* line 148, node_modules/bulma/sass/form/tools.sass */

  .field-body > .field:not(.is-narrow) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }

  /* line 150, node_modules/bulma/sass/form/tools.sass */

  .field-body > .field:not(:last-child) {
    margin-right: 0.75rem;
  }
}

/* line 153, node_modules/bulma/sass/form/tools.sass */

.control {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  clear: both;
  font-size: 1rem;
  position: relative;
  text-align: left;
}

/* line 165, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .input:focus ~ .icon,
.control.has-icons-left .select:focus ~ .icon,
.control.has-icons-right .input:focus ~ .icon,
.control.has-icons-right .select:focus ~ .icon {
  color: #4a4a4a;
}

/* line 167, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .input.is-small ~ .icon,
.control.has-icons-left .select.is-small ~ .icon,
.control.has-icons-right .input.is-small ~ .icon,
.control.has-icons-right .select.is-small ~ .icon {
  font-size: 0.75rem;
}

/* line 169, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .input.is-medium ~ .icon,
.control.has-icons-left .select.is-medium ~ .icon,
.control.has-icons-right .input.is-medium ~ .icon,
.control.has-icons-right .select.is-medium ~ .icon {
  font-size: 1.25rem;
}

/* line 171, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .input.is-large ~ .icon,
.control.has-icons-left .select.is-large ~ .icon,
.control.has-icons-right .input.is-large ~ .icon,
.control.has-icons-right .select.is-large ~ .icon {
  font-size: 1.5rem;
}

/* line 173, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .icon,
.control.has-icons-right .icon {
  color: #dbdbdb;
  height: 2.5em;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 2.5em;
  z-index: 4;
}

/* line 182, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .input,
.control.has-icons-left .select select {
  padding-left: 2.5em;
}

/* line 185, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-left .icon.is-left {
  left: 0;
}

/* line 188, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-right .input,
.control.has-icons-right .select select {
  padding-right: 2.5em;
}

/* line 191, node_modules/bulma/sass/form/tools.sass */

.control.has-icons-right .icon.is-right {
  right: 0;
}

/* line 194, node_modules/bulma/sass/form/tools.sass */

.control.is-loading::after {
  position: absolute !important;
  right: 0.625em;
  top: 0.625em;
  z-index: 4;
}

/* line 200, node_modules/bulma/sass/form/tools.sass */

.control.is-loading.is-small:after {
  font-size: 0.75rem;
}

/* line 202, node_modules/bulma/sass/form/tools.sass */

.control.is-loading.is-medium:after {
  font-size: 1.25rem;
}

/* line 204, node_modules/bulma/sass/form/tools.sass */

.control.is-loading.is-large:after {
  font-size: 1.5rem;
}

/* line 10, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb {
  font-size: 1rem;
  white-space: nowrap;
}

/* line 15, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #3273dc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0.75em;
}

/* line 21, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb a:hover {
  color: #363636;
}

/* line 23, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb li {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 26, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb li:first-child a {
  padding-left: 0;
}

/* line 29, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb li.is-active a {
  color: #363636;
  cursor: default;
  pointer-events: none;
}

/* line 33, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb li + li::before {
  color: #b5b5b5;
  content: "/";
}

/* line 36, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb ul,
.breadcrumb ol {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 43, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb .icon:first-child {
  margin-right: 0.5em;
}

/* line 45, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb .icon:last-child {
  margin-left: 0.5em;
}

/* line 49, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.is-centered ol,
.breadcrumb.is-centered ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 53, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.is-right ol,
.breadcrumb.is-right ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 57, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.is-small {
  font-size: 0.75rem;
}

/* line 59, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.is-medium {
  font-size: 1.25rem;
}

/* line 61, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.is-large {
  font-size: 1.5rem;
}

/* line 65, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.has-arrow-separator li + li::before {
  content: "\2192";
}

/* line 68, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.has-bullet-separator li + li::before {
  content: "\2022";
}

/* line 71, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.has-dot-separator li + li::before {
  content: "\B7";
}

/* line 74, node_modules/bulma/sass/components/breadcrumb.sass */

.breadcrumb.has-succeeds-separator li + li::before {
  content: "\227B";
}

/* line 20, node_modules/bulma/sass/components/card.sass */

.card {
  background-color: white;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  color: #4a4a4a;
  max-width: 100%;
  position: relative;
}

/* line 27, node_modules/bulma/sass/components/card.sass */

.card-header {
  background-color: transparent;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-shadow: 0 0.125em 0.25em rgba(10, 10, 10, 0.1);
          box-shadow: 0 0.125em 0.25em rgba(10, 10, 10, 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 33, node_modules/bulma/sass/components/card.sass */

.card-header-title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-weight: 700;
  padding: 0.75rem 1rem;
}

/* line 40, node_modules/bulma/sass/components/card.sass */

.card-header-title.is-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 43, node_modules/bulma/sass/components/card.sass */

.card-header-icon {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem 1rem;
}

/* line 50, node_modules/bulma/sass/components/card.sass */

.card-image {
  display: block;
  position: relative;
}

/* line 54, node_modules/bulma/sass/components/card.sass */

.card-content {
  background-color: transparent;
  padding: 1.5rem;
}

/* line 58, node_modules/bulma/sass/components/card.sass */

.card-footer {
  background-color: transparent;
  border-top: 1px solid #ededed;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 64, node_modules/bulma/sass/components/card.sass */

.card-footer-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75rem;
}

/* line 72, node_modules/bulma/sass/components/card.sass */

.card-footer-item:not(:last-child) {
  border-right: 1px solid #ededed;
}

/* line 78, node_modules/bulma/sass/components/card.sass */

.card .media:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* line 20, node_modules/bulma/sass/components/dropdown.sass */

.dropdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  vertical-align: top;
}

/* line 26, node_modules/bulma/sass/components/dropdown.sass */

.dropdown.is-active .dropdown-menu,
.dropdown.is-hoverable:hover .dropdown-menu {
  display: block;
}

/* line 29, node_modules/bulma/sass/components/dropdown.sass */

.dropdown.is-right .dropdown-menu {
  left: auto;
  right: 0;
}

/* line 33, node_modules/bulma/sass/components/dropdown.sass */

.dropdown.is-up .dropdown-menu {
  bottom: 100%;
  padding-bottom: 4px;
  padding-top: initial;
  top: auto;
}

/* line 39, node_modules/bulma/sass/components/dropdown.sass */

.dropdown-menu {
  display: none;
  left: 0;
  min-width: 12rem;
  padding-top: 4px;
  position: absolute;
  top: 100%;
  z-index: 20;
}

/* line 48, node_modules/bulma/sass/components/dropdown.sass */

.dropdown-content {
  background-color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

/* line 55, node_modules/bulma/sass/components/dropdown.sass */

.dropdown-item {
  color: #4a4a4a;
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.375rem 1rem;
  position: relative;
}

/* line 63, node_modules/bulma/sass/components/dropdown.sass */

a.dropdown-item,
button.dropdown-item {
  padding-right: 3rem;
  text-align: left;
  white-space: nowrap;
  width: 100%;
}

/* line 69, node_modules/bulma/sass/components/dropdown.sass */

a.dropdown-item:hover,
button.dropdown-item:hover {
  background-color: whitesmoke;
  color: #0a0a0a;
}

/* line 72, node_modules/bulma/sass/components/dropdown.sass */

a.dropdown-item.is-active,
button.dropdown-item.is-active {
  background-color: #3273dc;
  color: #fff;
}

/* line 76, node_modules/bulma/sass/components/dropdown.sass */

.dropdown-divider {
  background-color: #ededed;
  border: none;
  display: block;
  height: 1px;
  margin: 0.5rem 0;
}

/* line 3, node_modules/bulma/sass/components/level.sass */

.level {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 7, node_modules/bulma/sass/components/level.sass */

.level code {
  border-radius: 4px;
}

/* line 9, node_modules/bulma/sass/components/level.sass */

.level img {
  display: inline-block;
  vertical-align: top;
}

/* line 13, node_modules/bulma/sass/components/level.sass */

.level.is-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 15, node_modules/bulma/sass/components/level.sass */

.level.is-mobile .level-left,
.level.is-mobile .level-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 18, node_modules/bulma/sass/components/level.sass */

.level.is-mobile .level-left + .level-right {
  margin-top: 0;
}

/* line 21, node_modules/bulma/sass/components/level.sass */

.level.is-mobile .level-item:not(:last-child) {
  margin-bottom: 0;
  margin-right: 0.75rem;
}

/* line 24, node_modules/bulma/sass/components/level.sass */

.level.is-mobile .level-item:not(.is-narrow) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (min-width: 769px), print {
  /* line 3, node_modules/bulma/sass/components/level.sass */

  .level {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 30, node_modules/bulma/sass/components/level.sass */

  .level > .level-item:not(.is-narrow) {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

/* line 33, node_modules/bulma/sass/components/level.sass */

.level-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 40, node_modules/bulma/sass/components/level.sass */

.level-item .title,
.level-item .subtitle {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  /* line 45, node_modules/bulma/sass/components/level.sass */

  .level-item:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}

/* line 48, node_modules/bulma/sass/components/level.sass */

.level-left,
.level-right {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 55, node_modules/bulma/sass/components/level.sass */

.level-left .level-item.is-flexible,
.level-right .level-item.is-flexible {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (min-width: 769px), print {
  /* line 59, node_modules/bulma/sass/components/level.sass */

  .level-left .level-item:not(:last-child),
  .level-right .level-item:not(:last-child) {
    margin-right: 0.75rem;
  }
}

/* line 62, node_modules/bulma/sass/components/level.sass */

.level-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media screen and (max-width: 768px) {
  /* line 67, node_modules/bulma/sass/components/level.sass */

  .level-left + .level-right {
    margin-top: 1.5rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 62, node_modules/bulma/sass/components/level.sass */

  .level-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 72, node_modules/bulma/sass/components/level.sass */

.level-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (min-width: 769px), print {
  /* line 72, node_modules/bulma/sass/components/level.sass */

  .level-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 11, node_modules/bulma/sass/components/list.sass */

.list {
  background-color: white;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
          box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

/* line 20, node_modules/bulma/sass/components/list.sass */

.list-item {
  display: block;
  padding: 0.5em 1em;
}

/* line 23, node_modules/bulma/sass/components/list.sass */

.list-item:not(a) {
  color: #4a4a4a;
}

/* line 25, node_modules/bulma/sass/components/list.sass */

.list-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 28, node_modules/bulma/sass/components/list.sass */

.list-item:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* line 31, node_modules/bulma/sass/components/list.sass */

.list-item:not(:last-child) {
  border-bottom: 1px solid #dbdbdb;
}

/* line 33, node_modules/bulma/sass/components/list.sass */

.list-item.is-active {
  background-color: #3273dc;
  color: #fff;
}

/* line 37, node_modules/bulma/sass/components/list.sass */

a.list-item {
  background-color: whitesmoke;
  cursor: pointer;
}

/* line 3, node_modules/bulma/sass/components/media.sass */

.media {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
}

/* line 7, node_modules/bulma/sass/components/media.sass */

.media .content:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 9, node_modules/bulma/sass/components/media.sass */

.media .media {
  border-top: 1px solid rgba(219, 219, 219, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 0.75rem;
}

/* line 13, node_modules/bulma/sass/components/media.sass */

.media .media .content:not(:last-child),
.media .media .control:not(:last-child) {
  margin-bottom: 0.5rem;
}

/* line 16, node_modules/bulma/sass/components/media.sass */

.media .media .media {
  padding-top: 0.5rem;
}

/* line 18, node_modules/bulma/sass/components/media.sass */

.media .media .media + .media {
  margin-top: 0.5rem;
}

/* line 20, node_modules/bulma/sass/components/media.sass */

.media + .media {
  border-top: 1px solid rgba(219, 219, 219, 0.5);
  margin-top: 1rem;
  padding-top: 1rem;
}

/* line 26, node_modules/bulma/sass/components/media.sass */

.media.is-large + .media {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
}

/* line 30, node_modules/bulma/sass/components/media.sass */

.media-left,
.media-right {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 36, node_modules/bulma/sass/components/media.sass */

.media-left {
  margin-right: 1rem;
}

/* line 39, node_modules/bulma/sass/components/media.sass */

.media-right {
  margin-left: 1rem;
}

/* line 42, node_modules/bulma/sass/components/media.sass */

.media-content {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  text-align: left;
}

@media screen and (max-width: 768px) {
  /* line 49, node_modules/bulma/sass/components/media.sass */

  .media-content {
    overflow-x: auto;
  }
}

/* line 19, node_modules/bulma/sass/components/menu.sass */

.menu {
  font-size: 1rem;
}

/* line 22, node_modules/bulma/sass/components/menu.sass */

.menu.is-small {
  font-size: 0.75rem;
}

/* line 24, node_modules/bulma/sass/components/menu.sass */

.menu.is-medium {
  font-size: 1.25rem;
}

/* line 26, node_modules/bulma/sass/components/menu.sass */

.menu.is-large {
  font-size: 1.5rem;
}

/* line 29, node_modules/bulma/sass/components/menu.sass */

.menu-list {
  line-height: 1.25;
}

/* line 31, node_modules/bulma/sass/components/menu.sass */

.menu-list a {
  border-radius: 2px;
  color: #4a4a4a;
  display: block;
  padding: 0.5em 0.75em;
}

/* line 36, node_modules/bulma/sass/components/menu.sass */

.menu-list a:hover {
  background-color: whitesmoke;
  color: #363636;
}

/* line 40, node_modules/bulma/sass/components/menu.sass */

.menu-list a.is-active {
  background-color: #3273dc;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/menu.sass */

.menu-list li ul {
  border-left: 1px solid #dbdbdb;
  margin: 0.75em;
  padding-left: 0.75em;
}

/* line 49, node_modules/bulma/sass/components/menu.sass */

.menu-label {
  color: #7a7a7a;
  font-size: 0.75em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* line 54, node_modules/bulma/sass/components/menu.sass */

.menu-label:not(:first-child) {
  margin-top: 1em;
}

/* line 56, node_modules/bulma/sass/components/menu.sass */

.menu-label:not(:last-child) {
  margin-bottom: 1em;
}

/* line 22, node_modules/bulma/sass/components/message.sass */

.message {
  background-color: whitesmoke;
  border-radius: 4px;
  font-size: 1rem;
}

/* line 27, node_modules/bulma/sass/components/message.sass */

.message strong {
  color: currentColor;
}

/* line 29, node_modules/bulma/sass/components/message.sass */

.message a:not(.button):not(.tag):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}

/* line 33, node_modules/bulma/sass/components/message.sass */

.message.is-small {
  font-size: 0.75rem;
}

/* line 35, node_modules/bulma/sass/components/message.sass */

.message.is-medium {
  font-size: 1.25rem;
}

/* line 37, node_modules/bulma/sass/components/message.sass */

.message.is-large {
  font-size: 1.5rem;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-white {
  background-color: white;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-white .message-header {
  background-color: white;
  color: #0a0a0a;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-white .message-body {
  border-color: white;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-black {
  background-color: #fafafa;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-black .message-header {
  background-color: #0a0a0a;
  color: white;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-black .message-body {
  border-color: #0a0a0a;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-light {
  background-color: #fafafa;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-light .message-header {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-light .message-body {
  border-color: whitesmoke;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-dark {
  background-color: #fafafa;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-dark .message-header {
  background-color: #363636;
  color: #fff;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-dark .message-body {
  border-color: #363636;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-primary {
  background-color: #ebfffc;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-primary .message-header {
  background-color: #00d1b2;
  color: #fff;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-primary .message-body {
  border-color: #00d1b2;
  color: #00947e;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-link {
  background-color: #eef3fc;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-link .message-header {
  background-color: #3273dc;
  color: #fff;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-link .message-body {
  border-color: #3273dc;
  color: #2160c4;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-info {
  background-color: #eef6fc;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-info .message-header {
  background-color: #3298dc;
  color: #fff;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-info .message-body {
  border-color: #3298dc;
  color: #1d72aa;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-success {
  background-color: #effaf3;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-success .message-header {
  background-color: #48c774;
  color: #fff;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-success .message-body {
  border-color: #48c774;
  color: #257942;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-warning {
  background-color: #fffbeb;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-warning .message-header {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-warning .message-body {
  border-color: #ffdd57;
  color: #947600;
}

/* line 59, node_modules/bulma/sass/components/message.sass */

.message.is-danger {
  background-color: #feecf0;
}

/* line 61, node_modules/bulma/sass/components/message.sass */

.message.is-danger .message-header {
  background-color: #f14668;
  color: #fff;
}

/* line 64, node_modules/bulma/sass/components/message.sass */

.message.is-danger .message-body {
  border-color: #f14668;
  color: #cc0f35;
}

/* line 68, node_modules/bulma/sass/components/message.sass */

.message-header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #4a4a4a;
  border-radius: 4px 4px 0 0;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.25;
  padding: 0.75em 1em;
  position: relative;
}

/* line 79, node_modules/bulma/sass/components/message.sass */

.message-header .delete {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 0.75em;
}

/* line 83, node_modules/bulma/sass/components/message.sass */

.message-header + .message-body {
  border-width: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

/* line 88, node_modules/bulma/sass/components/message.sass */

.message-body {
  border-color: #dbdbdb;
  border-radius: 4px;
  border-style: solid;
  border-width: 0 0 0 4px;
  color: #4a4a4a;
  padding: 1.25em 1.5em;
}

/* line 95, node_modules/bulma/sass/components/message.sass */

.message-body code,
.message-body pre {
  background-color: white;
}

/* line 98, node_modules/bulma/sass/components/message.sass */

.message-body pre code {
  background-color: transparent;
}

/* line 31, node_modules/bulma/sass/components/modal.sass */

.modal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  position: fixed;
  z-index: 40;
}

/* line 41, node_modules/bulma/sass/components/modal.sass */

.modal.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 44, node_modules/bulma/sass/components/modal.sass */

.modal-background {
  background-color: rgba(10, 10, 10, 0.86);
}

/* line 48, node_modules/bulma/sass/components/modal.sass */

.modal-content,
.modal-card {
  margin: 0 20px;
  max-height: calc(100vh - 160px);
  overflow: auto;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px), print {
  /* line 48, node_modules/bulma/sass/components/modal.sass */

  .modal-content,
  .modal-card {
    margin: 0 auto;
    max-height: calc(100vh - 40px);
    width: 640px;
  }
}

/* line 61, node_modules/bulma/sass/components/modal.sass */

.modal-close {
  background: none;
  height: 40px;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 40px;
}

/* line 70, node_modules/bulma/sass/components/modal.sass */

.modal-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100vh - 40px);
  overflow: hidden;
  -ms-overflow-y: visible;
}

/* line 77, node_modules/bulma/sass/components/modal.sass */

.modal-card-head,
.modal-card-foot {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: whitesmoke;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 20px;
  position: relative;
}

/* line 87, node_modules/bulma/sass/components/modal.sass */

.modal-card-head {
  border-bottom: 1px solid #dbdbdb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

/* line 92, node_modules/bulma/sass/components/modal.sass */

.modal-card-title {
  color: #363636;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1;
}

/* line 99, node_modules/bulma/sass/components/modal.sass */

.modal-card-foot {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top: 1px solid #dbdbdb;
}

/* line 104, node_modules/bulma/sass/components/modal.sass */

.modal-card-foot .button:not(:last-child) {
  margin-right: 0.5em;
}

/* line 107, node_modules/bulma/sass/components/modal.sass */

.modal-card-body {
  -webkit-overflow-scrolling: touch;
  background-color: white;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  overflow: auto;
  padding: 20px;
}

/* line 55, node_modules/bulma/sass/components/navbar.sass */

.navbar {
  background-color: white;
  min-height: 3.25rem;
  position: relative;
  z-index: 30;
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-white {
  background-color: white;
  color: #0a0a0a;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-white .navbar-brand > .navbar-item,
.navbar.is-white .navbar-brand .navbar-link {
  color: #0a0a0a;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-white .navbar-brand > a.navbar-item:focus,
.navbar.is-white .navbar-brand > a.navbar-item:hover,
.navbar.is-white .navbar-brand > a.navbar-item.is-active,
.navbar.is-white .navbar-brand .navbar-link:focus,
.navbar.is-white .navbar-brand .navbar-link:hover,
.navbar.is-white .navbar-brand .navbar-link.is-active {
  background-color: #f2f2f2;
  color: #0a0a0a;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-white .navbar-brand .navbar-link::after {
  border-color: #0a0a0a;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-white .navbar-burger {
  color: #0a0a0a;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-white .navbar-start > .navbar-item,
  .navbar.is-white .navbar-start .navbar-link,
  .navbar.is-white .navbar-end > .navbar-item,
  .navbar.is-white .navbar-end .navbar-link {
    color: #0a0a0a;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-white .navbar-start > a.navbar-item:focus,
  .navbar.is-white .navbar-start > a.navbar-item:hover,
  .navbar.is-white .navbar-start > a.navbar-item.is-active,
  .navbar.is-white .navbar-start .navbar-link:focus,
  .navbar.is-white .navbar-start .navbar-link:hover,
  .navbar.is-white .navbar-start .navbar-link.is-active,
  .navbar.is-white .navbar-end > a.navbar-item:focus,
  .navbar.is-white .navbar-end > a.navbar-item:hover,
  .navbar.is-white .navbar-end > a.navbar-item.is-active,
  .navbar.is-white .navbar-end .navbar-link:focus,
  .navbar.is-white .navbar-end .navbar-link:hover,
  .navbar.is-white .navbar-end .navbar-link.is-active {
    background-color: #f2f2f2;
    color: #0a0a0a;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-white .navbar-start .navbar-link::after,
  .navbar.is-white .navbar-end .navbar-link::after {
    border-color: #0a0a0a;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-white .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-white .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-white .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #f2f2f2;
    color: #0a0a0a;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-white .navbar-dropdown a.navbar-item.is-active {
    background-color: white;
    color: #0a0a0a;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-black {
  background-color: #0a0a0a;
  color: white;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-black .navbar-brand > .navbar-item,
.navbar.is-black .navbar-brand .navbar-link {
  color: white;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-black .navbar-brand > a.navbar-item:focus,
.navbar.is-black .navbar-brand > a.navbar-item:hover,
.navbar.is-black .navbar-brand > a.navbar-item.is-active,
.navbar.is-black .navbar-brand .navbar-link:focus,
.navbar.is-black .navbar-brand .navbar-link:hover,
.navbar.is-black .navbar-brand .navbar-link.is-active {
  background-color: black;
  color: white;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-black .navbar-brand .navbar-link::after {
  border-color: white;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-black .navbar-burger {
  color: white;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-black .navbar-start > .navbar-item,
  .navbar.is-black .navbar-start .navbar-link,
  .navbar.is-black .navbar-end > .navbar-item,
  .navbar.is-black .navbar-end .navbar-link {
    color: white;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-black .navbar-start > a.navbar-item:focus,
  .navbar.is-black .navbar-start > a.navbar-item:hover,
  .navbar.is-black .navbar-start > a.navbar-item.is-active,
  .navbar.is-black .navbar-start .navbar-link:focus,
  .navbar.is-black .navbar-start .navbar-link:hover,
  .navbar.is-black .navbar-start .navbar-link.is-active,
  .navbar.is-black .navbar-end > a.navbar-item:focus,
  .navbar.is-black .navbar-end > a.navbar-item:hover,
  .navbar.is-black .navbar-end > a.navbar-item.is-active,
  .navbar.is-black .navbar-end .navbar-link:focus,
  .navbar.is-black .navbar-end .navbar-link:hover,
  .navbar.is-black .navbar-end .navbar-link.is-active {
    background-color: black;
    color: white;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-black .navbar-start .navbar-link::after,
  .navbar.is-black .navbar-end .navbar-link::after {
    border-color: white;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-black .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-black .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-black .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: black;
    color: white;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-black .navbar-dropdown a.navbar-item.is-active {
    background-color: #0a0a0a;
    color: white;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-light .navbar-brand > .navbar-item,
.navbar.is-light .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-light .navbar-brand > a.navbar-item:focus,
.navbar.is-light .navbar-brand > a.navbar-item:hover,
.navbar.is-light .navbar-brand > a.navbar-item.is-active,
.navbar.is-light .navbar-brand .navbar-link:focus,
.navbar.is-light .navbar-brand .navbar-link:hover,
.navbar.is-light .navbar-brand .navbar-link.is-active {
  background-color: #e8e8e8;
  color: rgba(0, 0, 0, 0.7);
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-light .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-light .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-light .navbar-start > .navbar-item,
  .navbar.is-light .navbar-start .navbar-link,
  .navbar.is-light .navbar-end > .navbar-item,
  .navbar.is-light .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-light .navbar-start > a.navbar-item:focus,
  .navbar.is-light .navbar-start > a.navbar-item:hover,
  .navbar.is-light .navbar-start > a.navbar-item.is-active,
  .navbar.is-light .navbar-start .navbar-link:focus,
  .navbar.is-light .navbar-start .navbar-link:hover,
  .navbar.is-light .navbar-start .navbar-link.is-active,
  .navbar.is-light .navbar-end > a.navbar-item:focus,
  .navbar.is-light .navbar-end > a.navbar-item:hover,
  .navbar.is-light .navbar-end > a.navbar-item.is-active,
  .navbar.is-light .navbar-end .navbar-link:focus,
  .navbar.is-light .navbar-end .navbar-link:hover,
  .navbar.is-light .navbar-end .navbar-link.is-active {
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.7);
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-light .navbar-start .navbar-link::after,
  .navbar.is-light .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-light .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-light .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-light .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #e8e8e8;
    color: rgba(0, 0, 0, 0.7);
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-light .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: rgba(0, 0, 0, 0.7);
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-dark {
  background-color: #363636;
  color: #fff;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-dark .navbar-brand > .navbar-item,
.navbar.is-dark .navbar-brand .navbar-link {
  color: #fff;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-dark .navbar-brand > a.navbar-item:focus,
.navbar.is-dark .navbar-brand > a.navbar-item:hover,
.navbar.is-dark .navbar-brand > a.navbar-item.is-active,
.navbar.is-dark .navbar-brand .navbar-link:focus,
.navbar.is-dark .navbar-brand .navbar-link:hover,
.navbar.is-dark .navbar-brand .navbar-link.is-active {
  background-color: #292929;
  color: #fff;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-dark .navbar-brand .navbar-link::after {
  border-color: #fff;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-dark .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-dark .navbar-start > .navbar-item,
  .navbar.is-dark .navbar-start .navbar-link,
  .navbar.is-dark .navbar-end > .navbar-item,
  .navbar.is-dark .navbar-end .navbar-link {
    color: #fff;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-dark .navbar-start > a.navbar-item:focus,
  .navbar.is-dark .navbar-start > a.navbar-item:hover,
  .navbar.is-dark .navbar-start > a.navbar-item.is-active,
  .navbar.is-dark .navbar-start .navbar-link:focus,
  .navbar.is-dark .navbar-start .navbar-link:hover,
  .navbar.is-dark .navbar-start .navbar-link.is-active,
  .navbar.is-dark .navbar-end > a.navbar-item:focus,
  .navbar.is-dark .navbar-end > a.navbar-item:hover,
  .navbar.is-dark .navbar-end > a.navbar-item.is-active,
  .navbar.is-dark .navbar-end .navbar-link:focus,
  .navbar.is-dark .navbar-end .navbar-link:hover,
  .navbar.is-dark .navbar-end .navbar-link.is-active {
    background-color: #292929;
    color: #fff;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-dark .navbar-start .navbar-link::after,
  .navbar.is-dark .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-dark .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-dark .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-dark .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #292929;
    color: #fff;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-dark .navbar-dropdown a.navbar-item.is-active {
    background-color: #363636;
    color: #fff;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-primary {
  background-color: #00d1b2;
  color: #fff;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-primary .navbar-brand > .navbar-item,
.navbar.is-primary .navbar-brand .navbar-link {
  color: #fff;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-primary .navbar-brand > a.navbar-item:focus,
.navbar.is-primary .navbar-brand > a.navbar-item:hover,
.navbar.is-primary .navbar-brand > a.navbar-item.is-active,
.navbar.is-primary .navbar-brand .navbar-link:focus,
.navbar.is-primary .navbar-brand .navbar-link:hover,
.navbar.is-primary .navbar-brand .navbar-link.is-active {
  background-color: #00b89c;
  color: #fff;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-primary .navbar-brand .navbar-link::after {
  border-color: #fff;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-primary .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-primary .navbar-start > .navbar-item,
  .navbar.is-primary .navbar-start .navbar-link,
  .navbar.is-primary .navbar-end > .navbar-item,
  .navbar.is-primary .navbar-end .navbar-link {
    color: #fff;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-primary .navbar-start > a.navbar-item:focus,
  .navbar.is-primary .navbar-start > a.navbar-item:hover,
  .navbar.is-primary .navbar-start > a.navbar-item.is-active,
  .navbar.is-primary .navbar-start .navbar-link:focus,
  .navbar.is-primary .navbar-start .navbar-link:hover,
  .navbar.is-primary .navbar-start .navbar-link.is-active,
  .navbar.is-primary .navbar-end > a.navbar-item:focus,
  .navbar.is-primary .navbar-end > a.navbar-item:hover,
  .navbar.is-primary .navbar-end > a.navbar-item.is-active,
  .navbar.is-primary .navbar-end .navbar-link:focus,
  .navbar.is-primary .navbar-end .navbar-link:hover,
  .navbar.is-primary .navbar-end .navbar-link.is-active {
    background-color: #00b89c;
    color: #fff;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-primary .navbar-start .navbar-link::after,
  .navbar.is-primary .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-primary .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-primary .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #00b89c;
    color: #fff;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-primary .navbar-dropdown a.navbar-item.is-active {
    background-color: #00d1b2;
    color: #fff;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-link {
  background-color: #3273dc;
  color: #fff;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-link .navbar-brand > .navbar-item,
.navbar.is-link .navbar-brand .navbar-link {
  color: #fff;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-link .navbar-brand > a.navbar-item:focus,
.navbar.is-link .navbar-brand > a.navbar-item:hover,
.navbar.is-link .navbar-brand > a.navbar-item.is-active,
.navbar.is-link .navbar-brand .navbar-link:focus,
.navbar.is-link .navbar-brand .navbar-link:hover,
.navbar.is-link .navbar-brand .navbar-link.is-active {
  background-color: #2366d1;
  color: #fff;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-link .navbar-brand .navbar-link::after {
  border-color: #fff;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-link .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-link .navbar-start > .navbar-item,
  .navbar.is-link .navbar-start .navbar-link,
  .navbar.is-link .navbar-end > .navbar-item,
  .navbar.is-link .navbar-end .navbar-link {
    color: #fff;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-link .navbar-start > a.navbar-item:focus,
  .navbar.is-link .navbar-start > a.navbar-item:hover,
  .navbar.is-link .navbar-start > a.navbar-item.is-active,
  .navbar.is-link .navbar-start .navbar-link:focus,
  .navbar.is-link .navbar-start .navbar-link:hover,
  .navbar.is-link .navbar-start .navbar-link.is-active,
  .navbar.is-link .navbar-end > a.navbar-item:focus,
  .navbar.is-link .navbar-end > a.navbar-item:hover,
  .navbar.is-link .navbar-end > a.navbar-item.is-active,
  .navbar.is-link .navbar-end .navbar-link:focus,
  .navbar.is-link .navbar-end .navbar-link:hover,
  .navbar.is-link .navbar-end .navbar-link.is-active {
    background-color: #2366d1;
    color: #fff;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-link .navbar-start .navbar-link::after,
  .navbar.is-link .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-link .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-link .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-link .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #2366d1;
    color: #fff;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-link .navbar-dropdown a.navbar-item.is-active {
    background-color: #3273dc;
    color: #fff;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-info {
  background-color: #3298dc;
  color: #fff;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-info .navbar-brand > .navbar-item,
.navbar.is-info .navbar-brand .navbar-link {
  color: #fff;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-info .navbar-brand > a.navbar-item:focus,
.navbar.is-info .navbar-brand > a.navbar-item:hover,
.navbar.is-info .navbar-brand > a.navbar-item.is-active,
.navbar.is-info .navbar-brand .navbar-link:focus,
.navbar.is-info .navbar-brand .navbar-link:hover,
.navbar.is-info .navbar-brand .navbar-link.is-active {
  background-color: #238cd1;
  color: #fff;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-info .navbar-brand .navbar-link::after {
  border-color: #fff;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-info .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-info .navbar-start > .navbar-item,
  .navbar.is-info .navbar-start .navbar-link,
  .navbar.is-info .navbar-end > .navbar-item,
  .navbar.is-info .navbar-end .navbar-link {
    color: #fff;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-info .navbar-start > a.navbar-item:focus,
  .navbar.is-info .navbar-start > a.navbar-item:hover,
  .navbar.is-info .navbar-start > a.navbar-item.is-active,
  .navbar.is-info .navbar-start .navbar-link:focus,
  .navbar.is-info .navbar-start .navbar-link:hover,
  .navbar.is-info .navbar-start .navbar-link.is-active,
  .navbar.is-info .navbar-end > a.navbar-item:focus,
  .navbar.is-info .navbar-end > a.navbar-item:hover,
  .navbar.is-info .navbar-end > a.navbar-item.is-active,
  .navbar.is-info .navbar-end .navbar-link:focus,
  .navbar.is-info .navbar-end .navbar-link:hover,
  .navbar.is-info .navbar-end .navbar-link.is-active {
    background-color: #238cd1;
    color: #fff;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-info .navbar-start .navbar-link::after,
  .navbar.is-info .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-info .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-info .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-info .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #238cd1;
    color: #fff;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-info .navbar-dropdown a.navbar-item.is-active {
    background-color: #3298dc;
    color: #fff;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-success {
  background-color: #48c774;
  color: #fff;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-success .navbar-brand > .navbar-item,
.navbar.is-success .navbar-brand .navbar-link {
  color: #fff;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-success .navbar-brand > a.navbar-item:focus,
.navbar.is-success .navbar-brand > a.navbar-item:hover,
.navbar.is-success .navbar-brand > a.navbar-item.is-active,
.navbar.is-success .navbar-brand .navbar-link:focus,
.navbar.is-success .navbar-brand .navbar-link:hover,
.navbar.is-success .navbar-brand .navbar-link.is-active {
  background-color: #3abb67;
  color: #fff;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-success .navbar-brand .navbar-link::after {
  border-color: #fff;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-success .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-success .navbar-start > .navbar-item,
  .navbar.is-success .navbar-start .navbar-link,
  .navbar.is-success .navbar-end > .navbar-item,
  .navbar.is-success .navbar-end .navbar-link {
    color: #fff;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-success .navbar-start > a.navbar-item:focus,
  .navbar.is-success .navbar-start > a.navbar-item:hover,
  .navbar.is-success .navbar-start > a.navbar-item.is-active,
  .navbar.is-success .navbar-start .navbar-link:focus,
  .navbar.is-success .navbar-start .navbar-link:hover,
  .navbar.is-success .navbar-start .navbar-link.is-active,
  .navbar.is-success .navbar-end > a.navbar-item:focus,
  .navbar.is-success .navbar-end > a.navbar-item:hover,
  .navbar.is-success .navbar-end > a.navbar-item.is-active,
  .navbar.is-success .navbar-end .navbar-link:focus,
  .navbar.is-success .navbar-end .navbar-link:hover,
  .navbar.is-success .navbar-end .navbar-link.is-active {
    background-color: #3abb67;
    color: #fff;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-success .navbar-start .navbar-link::after,
  .navbar.is-success .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-success .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-success .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-success .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #3abb67;
    color: #fff;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-success .navbar-dropdown a.navbar-item.is-active {
    background-color: #48c774;
    color: #fff;
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-warning .navbar-brand > .navbar-item,
.navbar.is-warning .navbar-brand .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-warning .navbar-brand > a.navbar-item:focus,
.navbar.is-warning .navbar-brand > a.navbar-item:hover,
.navbar.is-warning .navbar-brand > a.navbar-item.is-active,
.navbar.is-warning .navbar-brand .navbar-link:focus,
.navbar.is-warning .navbar-brand .navbar-link:hover,
.navbar.is-warning .navbar-brand .navbar-link.is-active {
  background-color: #ffd83d;
  color: rgba(0, 0, 0, 0.7);
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-warning .navbar-brand .navbar-link::after {
  border-color: rgba(0, 0, 0, 0.7);
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-warning .navbar-burger {
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-warning .navbar-start > .navbar-item,
  .navbar.is-warning .navbar-start .navbar-link,
  .navbar.is-warning .navbar-end > .navbar-item,
  .navbar.is-warning .navbar-end .navbar-link {
    color: rgba(0, 0, 0, 0.7);
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-warning .navbar-start > a.navbar-item:focus,
  .navbar.is-warning .navbar-start > a.navbar-item:hover,
  .navbar.is-warning .navbar-start > a.navbar-item.is-active,
  .navbar.is-warning .navbar-start .navbar-link:focus,
  .navbar.is-warning .navbar-start .navbar-link:hover,
  .navbar.is-warning .navbar-start .navbar-link.is-active,
  .navbar.is-warning .navbar-end > a.navbar-item:focus,
  .navbar.is-warning .navbar-end > a.navbar-item:hover,
  .navbar.is-warning .navbar-end > a.navbar-item.is-active,
  .navbar.is-warning .navbar-end .navbar-link:focus,
  .navbar.is-warning .navbar-end .navbar-link:hover,
  .navbar.is-warning .navbar-end .navbar-link.is-active {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-warning .navbar-start .navbar-link::after,
  .navbar.is-warning .navbar-end .navbar-link::after {
    border-color: rgba(0, 0, 0, 0.7);
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-warning .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-warning .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-warning .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #ffd83d;
    color: rgba(0, 0, 0, 0.7);
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-warning .navbar-dropdown a.navbar-item.is-active {
    background-color: #ffdd57;
    color: rgba(0, 0, 0, 0.7);
  }
}

/* line 63, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-danger {
  background-color: #f14668;
  color: #fff;
}

/* line 67, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-danger .navbar-brand > .navbar-item,
.navbar.is-danger .navbar-brand .navbar-link {
  color: #fff;
}

/* line 72, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-danger .navbar-brand > a.navbar-item:focus,
.navbar.is-danger .navbar-brand > a.navbar-item:hover,
.navbar.is-danger .navbar-brand > a.navbar-item.is-active,
.navbar.is-danger .navbar-brand .navbar-link:focus,
.navbar.is-danger .navbar-brand .navbar-link:hover,
.navbar.is-danger .navbar-brand .navbar-link.is-active {
  background-color: #ef2e55;
  color: #fff;
}

/* line 78, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-danger .navbar-brand .navbar-link::after {
  border-color: #fff;
}

/* line 80, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-danger .navbar-burger {
  color: #fff;
}

@media screen and (min-width: 1024px) {
  /* line 85, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-danger .navbar-start > .navbar-item,
  .navbar.is-danger .navbar-start .navbar-link,
  .navbar.is-danger .navbar-end > .navbar-item,
  .navbar.is-danger .navbar-end .navbar-link {
    color: #fff;
  }

  /* line 90, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-danger .navbar-start > a.navbar-item:focus,
  .navbar.is-danger .navbar-start > a.navbar-item:hover,
  .navbar.is-danger .navbar-start > a.navbar-item.is-active,
  .navbar.is-danger .navbar-start .navbar-link:focus,
  .navbar.is-danger .navbar-start .navbar-link:hover,
  .navbar.is-danger .navbar-start .navbar-link.is-active,
  .navbar.is-danger .navbar-end > a.navbar-item:focus,
  .navbar.is-danger .navbar-end > a.navbar-item:hover,
  .navbar.is-danger .navbar-end > a.navbar-item.is-active,
  .navbar.is-danger .navbar-end .navbar-link:focus,
  .navbar.is-danger .navbar-end .navbar-link:hover,
  .navbar.is-danger .navbar-end .navbar-link.is-active {
    background-color: #ef2e55;
    color: #fff;
  }

  /* line 96, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-danger .navbar-start .navbar-link::after,
  .navbar.is-danger .navbar-end .navbar-link::after {
    border-color: #fff;
  }

  /* line 98, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-danger .navbar-item.has-dropdown:focus .navbar-link,
  .navbar.is-danger .navbar-item.has-dropdown:hover .navbar-link,
  .navbar.is-danger .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #ef2e55;
    color: #fff;
  }

  /* line 105, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-danger .navbar-dropdown a.navbar-item.is-active {
    background-color: #f14668;
    color: #fff;
  }
}

/* line 108, node_modules/bulma/sass/components/navbar.sass */

.navbar > .container {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 3.25rem;
  width: 100%;
}

/* line 113, node_modules/bulma/sass/components/navbar.sass */

.navbar.has-shadow {
  -webkit-box-shadow: 0 2px 0 0 whitesmoke;
          box-shadow: 0 2px 0 0 whitesmoke;
}

/* line 115, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-fixed-bottom,
.navbar.is-fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 30;
}

/* line 118, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-fixed-bottom {
  bottom: 0;
}

/* line 120, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-fixed-bottom.has-shadow {
  -webkit-box-shadow: 0 -2px 0 0 whitesmoke;
          box-shadow: 0 -2px 0 0 whitesmoke;
}

/* line 122, node_modules/bulma/sass/components/navbar.sass */

.navbar.is-fixed-top {
  top: 0;
}

/* line 127, node_modules/bulma/sass/components/navbar.sass */

html.has-navbar-fixed-top,
body.has-navbar-fixed-top {
  padding-top: 3.25rem;
}

/* line 129, node_modules/bulma/sass/components/navbar.sass */

html.has-navbar-fixed-bottom,
body.has-navbar-fixed-bottom {
  padding-bottom: 3.25rem;
}

/* line 132, node_modules/bulma/sass/components/navbar.sass */

.navbar-brand,
.navbar-tabs {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  min-height: 3.25rem;
}

/* line 141, node_modules/bulma/sass/components/navbar.sass */

.navbar-brand a.navbar-item:focus,
.navbar-brand a.navbar-item:hover {
  background-color: transparent;
}

/* line 145, node_modules/bulma/sass/components/navbar.sass */

.navbar-tabs {
  -webkit-overflow-scrolling: touch;
  max-width: 100vw;
  overflow-x: auto;
  overflow-y: hidden;
}

/* line 151, node_modules/bulma/sass/components/navbar.sass */

.navbar-burger {
  color: #4a4a4a;
  cursor: pointer;
  display: block;
  height: 3.25rem;
  position: relative;
  width: 3.25rem;
  margin-left: auto;
}

/* line 33, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger span {
  background-color: currentColor;
  display: block;
  height: 1px;
  left: calc(50% - 8px);
  position: absolute;
  -webkit-transform-origin: center;
       -o-transform-origin: center;
          transform-origin: center;
  -webkit-transition-duration: 86ms;
       -o-transition-duration: 86ms;
          transition-duration: 86ms;
  -webkit-transition-property: background-color, opacity, -webkit-transform;
  transition-property: background-color, opacity, -webkit-transform;
  -o-transition-property: background-color, opacity, -o-transform;
  transition-property: background-color, opacity, transform;
  transition-property: background-color, opacity, transform, -webkit-transform, -o-transform;
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  width: 16px;
}

/* line 44, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger span:nth-child(1) {
  top: calc(50% - 6px);
}

/* line 46, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger span:nth-child(2) {
  top: calc(50% - 1px);
}

/* line 48, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger span:nth-child(3) {
  top: calc(50% + 4px);
}

/* line 50, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* line 55, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger.is-active span:nth-child(1) {
  -webkit-transform: translateY(5px) rotate(45deg);
       -o-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}

/* line 57, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger.is-active span:nth-child(2) {
  opacity: 0;
}

/* line 59, node_modules/bulma/sass/utilities/mixins.sass */

.navbar-burger.is-active span:nth-child(3) {
  -webkit-transform: translateY(-5px) rotate(-45deg);
       -o-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}

/* line 156, node_modules/bulma/sass/components/navbar.sass */

.navbar-menu {
  display: none;
}

/* line 159, node_modules/bulma/sass/components/navbar.sass */

.navbar-item,
.navbar-link {
  color: #4a4a4a;
  display: block;
  line-height: 1.5;
  padding: 0.5rem 0.75rem;
  position: relative;
}

/* line 167, node_modules/bulma/sass/components/navbar.sass */

.navbar-item .icon:only-child,
.navbar-link .icon:only-child {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}

/* line 171, node_modules/bulma/sass/components/navbar.sass */

a.navbar-item,
.navbar-link {
  cursor: pointer;
}

/* line 174, node_modules/bulma/sass/components/navbar.sass */

a.navbar-item:focus,
a.navbar-item:focus-within,
a.navbar-item:hover,
a.navbar-item.is-active,
.navbar-link:focus,
.navbar-link:focus-within,
.navbar-link:hover,
.navbar-link.is-active {
  background-color: #fafafa;
  color: #3273dc;
}

/* line 181, node_modules/bulma/sass/components/navbar.sass */

.navbar-item {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 185, node_modules/bulma/sass/components/navbar.sass */

.navbar-item img {
  max-height: 1.75rem;
}

/* line 187, node_modules/bulma/sass/components/navbar.sass */

.navbar-item.has-dropdown {
  padding: 0;
}

/* line 189, node_modules/bulma/sass/components/navbar.sass */

.navbar-item.is-expanded {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 192, node_modules/bulma/sass/components/navbar.sass */

.navbar-item.is-tab {
  border-bottom: 1px solid transparent;
  min-height: 3.25rem;
  padding-bottom: calc(0.5rem - 1px);
}

/* line 196, node_modules/bulma/sass/components/navbar.sass */

.navbar-item.is-tab:focus,
.navbar-item.is-tab:hover {
  background-color: transparent;
  border-bottom-color: #3273dc;
}

/* line 200, node_modules/bulma/sass/components/navbar.sass */

.navbar-item.is-tab.is-active {
  background-color: transparent;
  border-bottom-color: #3273dc;
  border-bottom-style: solid;
  border-bottom-width: 3px;
  color: #3273dc;
  padding-bottom: calc(0.5rem - 3px);
}

/* line 208, node_modules/bulma/sass/components/navbar.sass */

.navbar-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 212, node_modules/bulma/sass/components/navbar.sass */

.navbar-link:not(.is-arrowless) {
  padding-right: 2.5em;
}

/* line 214, node_modules/bulma/sass/components/navbar.sass */

.navbar-link:not(.is-arrowless)::after {
  border-color: #3273dc;
  margin-top: -0.375em;
  right: 1.125em;
}

/* line 220, node_modules/bulma/sass/components/navbar.sass */

.navbar-dropdown {
  font-size: 0.875rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}

/* line 224, node_modules/bulma/sass/components/navbar.sass */

.navbar-dropdown .navbar-item {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* line 228, node_modules/bulma/sass/components/navbar.sass */

.navbar-divider {
  background-color: whitesmoke;
  border: none;
  display: none;
  height: 2px;
  margin: 0.5rem 0;
}

@media screen and (max-width: 1023px) {
  /* line 236, node_modules/bulma/sass/components/navbar.sass */

  .navbar > .container {
    display: block;
  }

  /* line 240, node_modules/bulma/sass/components/navbar.sass */

  .navbar-brand .navbar-item,
  .navbar-tabs .navbar-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 244, node_modules/bulma/sass/components/navbar.sass */

  .navbar-link::after {
    display: none;
  }

  /* line 246, node_modules/bulma/sass/components/navbar.sass */

  .navbar-menu {
    background-color: white;
    -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
            box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
    padding: 0.5rem 0;
  }

  /* line 250, node_modules/bulma/sass/components/navbar.sass */

  .navbar-menu.is-active {
    display: block;
  }

  /* line 254, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-bottom-touch,
  .navbar.is-fixed-top-touch {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  /* line 257, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-bottom-touch {
    bottom: 0;
  }

  /* line 259, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-bottom-touch.has-shadow {
    -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
            box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }

  /* line 261, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-top-touch {
    top: 0;
  }

  /* line 265, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-top .navbar-menu,
  .navbar.is-fixed-top-touch .navbar-menu {
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 3.25rem);
    overflow: auto;
  }

  /* line 271, node_modules/bulma/sass/components/navbar.sass */

  html.has-navbar-fixed-top-touch,
  body.has-navbar-fixed-top-touch {
    padding-top: 3.25rem;
  }

  /* line 273, node_modules/bulma/sass/components/navbar.sass */

  html.has-navbar-fixed-bottom-touch,
  body.has-navbar-fixed-bottom-touch {
    padding-bottom: 3.25rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 277, node_modules/bulma/sass/components/navbar.sass */

  .navbar,
  .navbar-menu,
  .navbar-start,
  .navbar-end {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 283, node_modules/bulma/sass/components/navbar.sass */

  .navbar {
    min-height: 3.25rem;
  }

  /* line 285, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-spaced {
    padding: 1rem 2rem;
  }

  /* line 287, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-spaced .navbar-start,
  .navbar.is-spaced .navbar-end {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  /* line 290, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-spaced a.navbar-item,
  .navbar.is-spaced .navbar-link {
    border-radius: 4px;
  }

  /* line 296, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-transparent a.navbar-item:focus,
  .navbar.is-transparent a.navbar-item:hover,
  .navbar.is-transparent a.navbar-item.is-active,
  .navbar.is-transparent .navbar-link:focus,
  .navbar.is-transparent .navbar-link:hover,
  .navbar.is-transparent .navbar-link.is-active {
    background-color: transparent !important;
  }

  /* line 305, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link,
  .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus .navbar-link,
  .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:focus-within .navbar-link,
  .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
    background-color: transparent !important;
  }

  /* line 309, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-transparent .navbar-dropdown a.navbar-item:focus,
  .navbar.is-transparent .navbar-dropdown a.navbar-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
  }

  /* line 313, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-transparent .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #3273dc;
  }

  /* line 316, node_modules/bulma/sass/components/navbar.sass */

  .navbar-burger {
    display: none;
  }

  /* line 318, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item,
  .navbar-link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 322, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 324, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item.has-dropdown {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }

  /* line 327, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item.has-dropdown-up .navbar-link::after {
    -webkit-transform: rotate(135deg) translate(0.25em, -0.25em);
         -o-transform: rotate(135deg) translate(0.25em, -0.25em);
            transform: rotate(135deg) translate(0.25em, -0.25em);
  }

  /* line 329, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item.has-dropdown-up .navbar-dropdown {
    border-bottom: 2px solid #dbdbdb;
    border-radius: 6px 6px 0 0;
    border-top: none;
    bottom: 100%;
    -webkit-box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
            box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
    top: auto;
  }

  /* line 340, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item.is-active .navbar-dropdown,
  .navbar-item.is-hoverable:focus .navbar-dropdown,
  .navbar-item.is-hoverable:focus-within .navbar-dropdown,
  .navbar-item.is-hoverable:hover .navbar-dropdown {
    display: block;
  }

  /* line 342, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-spaced .navbar-item.is-active .navbar-dropdown,
  .navbar-item.is-active .navbar-dropdown.is-boxed,
  .navbar.is-spaced .navbar-item.is-hoverable:focus .navbar-dropdown,
  .navbar-item.is-hoverable:focus .navbar-dropdown.is-boxed,
  .navbar.is-spaced .navbar-item.is-hoverable:focus-within .navbar-dropdown,
  .navbar-item.is-hoverable:focus-within .navbar-dropdown.is-boxed,
  .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown,
  .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }

  /* line 347, node_modules/bulma/sass/components/navbar.sass */

  .navbar-menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  /* line 350, node_modules/bulma/sass/components/navbar.sass */

  .navbar-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-right: auto;
  }

  /* line 353, node_modules/bulma/sass/components/navbar.sass */

  .navbar-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-left: auto;
  }

  /* line 356, node_modules/bulma/sass/components/navbar.sass */

  .navbar-dropdown {
    background-color: white;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    border-top: 2px solid #dbdbdb;
    -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
            box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
    display: none;
    font-size: 0.875rem;
    left: 0;
    min-width: 100%;
    position: absolute;
    top: 100%;
    z-index: 20;
  }

  /* line 369, node_modules/bulma/sass/components/navbar.sass */

  .navbar-dropdown .navbar-item {
    padding: 0.375rem 1rem;
    white-space: nowrap;
  }

  /* line 372, node_modules/bulma/sass/components/navbar.sass */

  .navbar-dropdown a.navbar-item {
    padding-right: 3rem;
  }

  /* line 374, node_modules/bulma/sass/components/navbar.sass */

  .navbar-dropdown a.navbar-item:focus,
  .navbar-dropdown a.navbar-item:hover {
    background-color: whitesmoke;
    color: #0a0a0a;
  }

  /* line 378, node_modules/bulma/sass/components/navbar.sass */

  .navbar-dropdown a.navbar-item.is-active {
    background-color: whitesmoke;
    color: #3273dc;
  }

  /* line 381, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-spaced .navbar-dropdown,
  .navbar-dropdown.is-boxed {
    border-radius: 6px;
    border-top: none;
    -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
            box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
    display: block;
    opacity: 0;
    pointer-events: none;
    top: calc(100% + (-4px));
    -webkit-transform: translateY(-5px);
         -o-transform: translateY(-5px);
            transform: translateY(-5px);
    -webkit-transition-duration: 86ms;
         -o-transition-duration: 86ms;
            transition-duration: 86ms;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    transition-property: opacity, transform;
    transition-property: opacity, transform, -webkit-transform, -o-transform;
  }

  /* line 393, node_modules/bulma/sass/components/navbar.sass */

  .navbar-dropdown.is-right {
    left: auto;
    right: 0;
  }

  /* line 396, node_modules/bulma/sass/components/navbar.sass */

  .navbar-divider {
    display: block;
  }

  /* line 400, node_modules/bulma/sass/components/navbar.sass */

  .navbar > .container .navbar-brand,
  .container > .navbar .navbar-brand {
    margin-left: -.75rem;
  }

  /* line 402, node_modules/bulma/sass/components/navbar.sass */

  .navbar > .container .navbar-menu,
  .container > .navbar .navbar-menu {
    margin-right: -.75rem;
  }

  /* line 406, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-bottom-desktop,
  .navbar.is-fixed-top-desktop {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 30;
  }

  /* line 409, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-bottom-desktop {
    bottom: 0;
  }

  /* line 411, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-bottom-desktop.has-shadow {
    -webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
            box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
  }

  /* line 413, node_modules/bulma/sass/components/navbar.sass */

  .navbar.is-fixed-top-desktop {
    top: 0;
  }

  /* line 417, node_modules/bulma/sass/components/navbar.sass */

  html.has-navbar-fixed-top-desktop,
  body.has-navbar-fixed-top-desktop {
    padding-top: 3.25rem;
  }

  /* line 419, node_modules/bulma/sass/components/navbar.sass */

  html.has-navbar-fixed-bottom-desktop,
  body.has-navbar-fixed-bottom-desktop {
    padding-bottom: 3.25rem;
  }

  /* line 421, node_modules/bulma/sass/components/navbar.sass */

  html.has-spaced-navbar-fixed-top,
  body.has-spaced-navbar-fixed-top {
    padding-top: 5.25rem;
  }

  /* line 423, node_modules/bulma/sass/components/navbar.sass */

  html.has-spaced-navbar-fixed-bottom,
  body.has-spaced-navbar-fixed-bottom {
    padding-bottom: 5.25rem;
  }

  /* line 428, node_modules/bulma/sass/components/navbar.sass */

  a.navbar-item.is-active,
  .navbar-link.is-active {
    color: #0a0a0a;
  }

  /* line 430, node_modules/bulma/sass/components/navbar.sass */

  a.navbar-item.is-active:not(:focus):not(:hover),
  .navbar-link.is-active:not(:focus):not(:hover) {
    background-color: transparent;
  }

  /* line 436, node_modules/bulma/sass/components/navbar.sass */

  .navbar-item.has-dropdown:focus .navbar-link,
  .navbar-item.has-dropdown:hover .navbar-link,
  .navbar-item.has-dropdown.is-active .navbar-link {
    background-color: #fafafa;
  }
}

/* line 442, node_modules/bulma/sass/components/navbar.sass */

.hero.is-fullheight-with-navbar {
  min-height: calc(100vh - 3.25rem);
}

/* line 32, node_modules/bulma/sass/components/pagination.sass */

.pagination {
  font-size: 1rem;
  margin: -0.25rem;
}

/* line 37, node_modules/bulma/sass/components/pagination.sass */

.pagination.is-small {
  font-size: 0.75rem;
}

/* line 39, node_modules/bulma/sass/components/pagination.sass */

.pagination.is-medium {
  font-size: 1.25rem;
}

/* line 41, node_modules/bulma/sass/components/pagination.sass */

.pagination.is-large {
  font-size: 1.5rem;
}

/* line 44, node_modules/bulma/sass/components/pagination.sass */

.pagination.is-rounded .pagination-previous,
.pagination.is-rounded .pagination-next {
  padding-left: 1em;
  padding-right: 1em;
  border-radius: 290486px;
}

/* line 49, node_modules/bulma/sass/components/pagination.sass */

.pagination.is-rounded .pagination-link {
  border-radius: 290486px;
}

/* line 52, node_modules/bulma/sass/components/pagination.sass */

.pagination,
.pagination-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

/* line 59, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous,
.pagination-next,
.pagination-link,
.pagination-ellipsis {
  font-size: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0.25rem;
  padding-left: 0.5em;
  padding-right: 0.5em;
  text-align: center;
}

/* line 72, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous,
.pagination-next,
.pagination-link {
  border-color: #dbdbdb;
  color: #363636;
  min-width: 2.5em;
}

/* line 78, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous:hover,
.pagination-next:hover,
.pagination-link:hover {
  border-color: #b5b5b5;
  color: #363636;
}

/* line 81, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous:focus,
.pagination-next:focus,
.pagination-link:focus {
  border-color: #3273dc;
}

/* line 83, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous:active,
.pagination-next:active,
.pagination-link:active {
  -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
          box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
}

/* line 85, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous[disabled],
.pagination-next[disabled],
.pagination-link[disabled] {
  background-color: #dbdbdb;
  border-color: #dbdbdb;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #7a7a7a;
  opacity: 0.5;
}

/* line 92, node_modules/bulma/sass/components/pagination.sass */

.pagination-previous,
.pagination-next {
  padding-left: 0.75em;
  padding-right: 0.75em;
  white-space: nowrap;
}

/* line 99, node_modules/bulma/sass/components/pagination.sass */

.pagination-link.is-current {
  background-color: #3273dc;
  border-color: #3273dc;
  color: #fff;
}

/* line 104, node_modules/bulma/sass/components/pagination.sass */

.pagination-ellipsis {
  color: #b5b5b5;
  pointer-events: none;
}

/* line 108, node_modules/bulma/sass/components/pagination.sass */

.pagination-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  /* line 112, node_modules/bulma/sass/components/pagination.sass */

  .pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  /* line 114, node_modules/bulma/sass/components/pagination.sass */

  .pagination-previous,
  .pagination-next {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }

  /* line 119, node_modules/bulma/sass/components/pagination.sass */

  .pagination-list li {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
}

@media screen and (min-width: 769px), print {
  /* line 124, node_modules/bulma/sass/components/pagination.sass */

  .pagination-list {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 129, node_modules/bulma/sass/components/pagination.sass */

  .pagination-previous {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 131, node_modules/bulma/sass/components/pagination.sass */

  .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 133, node_modules/bulma/sass/components/pagination.sass */

  .pagination {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  /* line 136, node_modules/bulma/sass/components/pagination.sass */

  .pagination.is-centered .pagination-previous {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 138, node_modules/bulma/sass/components/pagination.sass */

  .pagination.is-centered .pagination-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 141, node_modules/bulma/sass/components/pagination.sass */

  .pagination.is-centered .pagination-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  /* line 144, node_modules/bulma/sass/components/pagination.sass */

  .pagination.is-right .pagination-previous {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  /* line 146, node_modules/bulma/sass/components/pagination.sass */

  .pagination.is-right .pagination-next {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  /* line 148, node_modules/bulma/sass/components/pagination.sass */

  .pagination.is-right .pagination-list {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

/* line 30, node_modules/bulma/sass/components/panel.sass */

.panel {
  border-radius: 6px;
  -webkit-box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
          box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0px 0 1px rgba(10, 10, 10, 0.02);
  font-size: 1rem;
}

/* line 34, node_modules/bulma/sass/components/panel.sass */

.panel:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-white .panel-heading {
  background-color: white;
  color: #0a0a0a;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-white .panel-tabs a.is-active {
  border-bottom-color: white;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-white .panel-block.is-active .panel-icon {
  color: white;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-black .panel-heading {
  background-color: #0a0a0a;
  color: white;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-black .panel-tabs a.is-active {
  border-bottom-color: #0a0a0a;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-black .panel-block.is-active .panel-icon {
  color: #0a0a0a;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-light .panel-heading {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-light .panel-tabs a.is-active {
  border-bottom-color: whitesmoke;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-light .panel-block.is-active .panel-icon {
  color: whitesmoke;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-dark .panel-heading {
  background-color: #363636;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-dark .panel-tabs a.is-active {
  border-bottom-color: #363636;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-dark .panel-block.is-active .panel-icon {
  color: #363636;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-primary .panel-heading {
  background-color: #00d1b2;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-primary .panel-tabs a.is-active {
  border-bottom-color: #00d1b2;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-primary .panel-block.is-active .panel-icon {
  color: #00d1b2;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-link .panel-heading {
  background-color: #3273dc;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-link .panel-tabs a.is-active {
  border-bottom-color: #3273dc;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-link .panel-block.is-active .panel-icon {
  color: #3273dc;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-info .panel-heading {
  background-color: #3298dc;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-info .panel-tabs a.is-active {
  border-bottom-color: #3298dc;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-info .panel-block.is-active .panel-icon {
  color: #3298dc;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-success .panel-heading {
  background-color: #48c774;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-success .panel-tabs a.is-active {
  border-bottom-color: #48c774;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-success .panel-block.is-active .panel-icon {
  color: #48c774;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-warning .panel-heading {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-warning .panel-tabs a.is-active {
  border-bottom-color: #ffdd57;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-warning .panel-block.is-active .panel-icon {
  color: #ffdd57;
}

/* line 41, node_modules/bulma/sass/components/panel.sass */

.panel.is-danger .panel-heading {
  background-color: #f14668;
  color: #fff;
}

/* line 44, node_modules/bulma/sass/components/panel.sass */

.panel.is-danger .panel-tabs a.is-active {
  border-bottom-color: #f14668;
}

/* line 46, node_modules/bulma/sass/components/panel.sass */

.panel.is-danger .panel-block.is-active .panel-icon {
  color: #f14668;
}

/* line 51, node_modules/bulma/sass/components/panel.sass */

.panel-tabs:not(:last-child),
.panel-block:not(:last-child) {
  border-bottom: 1px solid #ededed;
}

/* line 54, node_modules/bulma/sass/components/panel.sass */

.panel-heading {
  background-color: #ededed;
  border-radius: 6px 6px 0 0;
  color: #363636;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.25;
  padding: 0.75em 1em;
}

/* line 63, node_modules/bulma/sass/components/panel.sass */

.panel-tabs {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 68, node_modules/bulma/sass/components/panel.sass */

.panel-tabs a {
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: -1px;
  padding: 0.5em;
}

/* line 73, node_modules/bulma/sass/components/panel.sass */

.panel-tabs a.is-active {
  border-bottom-color: #4a4a4a;
  color: #363636;
}

/* line 78, node_modules/bulma/sass/components/panel.sass */

.panel-list a {
  color: #4a4a4a;
}

/* line 80, node_modules/bulma/sass/components/panel.sass */

.panel-list a:hover {
  color: #3273dc;
}

/* line 83, node_modules/bulma/sass/components/panel.sass */

.panel-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #363636;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 0.5em 0.75em;
}

/* line 89, node_modules/bulma/sass/components/panel.sass */

.panel-block input[type="checkbox"] {
  margin-right: 0.75em;
}

/* line 91, node_modules/bulma/sass/components/panel.sass */

.panel-block > .control {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  width: 100%;
}

/* line 95, node_modules/bulma/sass/components/panel.sass */

.panel-block.is-wrapped {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 97, node_modules/bulma/sass/components/panel.sass */

.panel-block.is-active {
  border-left-color: #3273dc;
  color: #363636;
}

/* line 100, node_modules/bulma/sass/components/panel.sass */

.panel-block.is-active .panel-icon {
  color: #3273dc;
}

/* line 102, node_modules/bulma/sass/components/panel.sass */

.panel-block:last-child {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

/* line 106, node_modules/bulma/sass/components/panel.sass */

a.panel-block,
label.panel-block {
  cursor: pointer;
}

/* line 109, node_modules/bulma/sass/components/panel.sass */

a.panel-block:hover,
label.panel-block:hover {
  background-color: whitesmoke;
}

/* line 112, node_modules/bulma/sass/components/panel.sass */

.panel-icon {
  display: inline-block;
  font-size: 14px;
  height: 1em;
  line-height: 1em;
  text-align: center;
  vertical-align: top;
  width: 1em;
  color: #7a7a7a;
  margin-right: 0.75em;
}

/* line 116, node_modules/bulma/sass/components/panel.sass */

.panel-icon .fa {
  font-size: inherit;
  line-height: inherit;
}

/* line 29, node_modules/bulma/sass/components/tabs.sass */

.tabs {
  -webkit-overflow-scrolling: touch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

/* line 40, node_modules/bulma/sass/components/tabs.sass */

.tabs a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
}

/* line 51, node_modules/bulma/sass/components/tabs.sass */

.tabs a:hover {
  border-bottom-color: #363636;
  color: #363636;
}

/* line 54, node_modules/bulma/sass/components/tabs.sass */

.tabs li {
  display: block;
}

/* line 57, node_modules/bulma/sass/components/tabs.sass */

.tabs li.is-active a {
  border-bottom-color: #3273dc;
  color: #3273dc;
}

/* line 60, node_modules/bulma/sass/components/tabs.sass */

.tabs ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

/* line 69, node_modules/bulma/sass/components/tabs.sass */

.tabs ul.is-left {
  padding-right: 0.75em;
}

/* line 71, node_modules/bulma/sass/components/tabs.sass */

.tabs ul.is-center {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

/* line 76, node_modules/bulma/sass/components/tabs.sass */

.tabs ul.is-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-left: 0.75em;
}

/* line 80, node_modules/bulma/sass/components/tabs.sass */

.tabs .icon:first-child {
  margin-right: 0.5em;
}

/* line 82, node_modules/bulma/sass/components/tabs.sass */

.tabs .icon:last-child {
  margin-left: 0.5em;
}

/* line 86, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-centered ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 89, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-right ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* line 93, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-boxed a {
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

/* line 96, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-boxed a:hover {
  background-color: whitesmoke;
  border-bottom-color: #dbdbdb;
}

/* line 101, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-boxed li.is-active a {
  background-color: white;
  border-color: #dbdbdb;
  border-bottom-color: transparent !important;
}

/* line 106, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-fullwidth li {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 110, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle a {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 0;
  position: relative;
}

/* line 116, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle a:hover {
  background-color: whitesmoke;
  border-color: #b5b5b5;
  z-index: 2;
}

/* line 121, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle li + li {
  margin-left: -1px;
}

/* line 123, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle li:first-child a {
  border-radius: 4px 0 0 4px;
}

/* line 125, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle li:last-child a {
  border-radius: 0 4px 4px 0;
}

/* line 128, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle li.is-active a {
  background-color: #3273dc;
  border-color: #3273dc;
  color: #fff;
  z-index: 1;
}

/* line 133, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle ul {
  border-bottom: none;
}

/* line 137, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle.is-toggle-rounded li:first-child a {
  border-bottom-left-radius: 290486px;
  border-top-left-radius: 290486px;
  padding-left: 1.25em;
}

/* line 141, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-toggle.is-toggle-rounded li:last-child a {
  border-bottom-right-radius: 290486px;
  border-top-right-radius: 290486px;
  padding-right: 1.25em;
}

/* line 146, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-small {
  font-size: 0.75rem;
}

/* line 148, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-medium {
  font-size: 1.25rem;
}

/* line 150, node_modules/bulma/sass/components/tabs.sass */

.tabs.is-large {
  font-size: 1.5rem;
}

/* line 3, node_modules/bulma/sass/grid/columns.sass */

.column {
  display: block;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  padding: 0.75rem;
}

/* line 9, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-narrow {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
}

/* line 11, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-full {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

/* line 14, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-three-quarters {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 75%;
}

/* line 17, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-two-thirds {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 66.6666%;
}

/* line 20, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-half {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50%;
}

/* line 23, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-one-third {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 33.3333%;
}

/* line 26, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-one-quarter {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
}

/* line 29, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-one-fifth {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 20%;
}

/* line 32, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-two-fifths {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 40%;
}

/* line 35, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-three-fifths {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 60%;
}

/* line 38, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-four-fifths {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 80%;
}

/* line 41, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-three-quarters {
  margin-left: 75%;
}

/* line 43, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-two-thirds {
  margin-left: 66.6666%;
}

/* line 45, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-half {
  margin-left: 50%;
}

/* line 47, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-one-third {
  margin-left: 33.3333%;
}

/* line 49, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-one-quarter {
  margin-left: 25%;
}

/* line 51, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-one-fifth {
  margin-left: 20%;
}

/* line 53, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-two-fifths {
  margin-left: 40%;
}

/* line 55, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-three-fifths {
  margin-left: 60%;
}

/* line 57, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-four-fifths {
  margin-left: 80%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-0 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 0%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-0 {
  margin-left: 0%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-1 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 8.33333%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-1 {
  margin-left: 8.33333%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-2 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 16.66667%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-2 {
  margin-left: 16.66667%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-3 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 25%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-3 {
  margin-left: 25%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-4 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 33.33333%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-4 {
  margin-left: 33.33333%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-5 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 41.66667%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-5 {
  margin-left: 41.66667%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-6 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 50%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-6 {
  margin-left: 50%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-7 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 58.33333%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-7 {
  margin-left: 58.33333%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-8 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 66.66667%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-8 {
  margin-left: 66.66667%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-9 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 75%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-9 {
  margin-left: 75%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-10 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 83.33333%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-10 {
  margin-left: 83.33333%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-11 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 91.66667%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-11 {
  margin-left: 91.66667%;
}

/* line 60, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-12 {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 100%;
}

/* line 63, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile > .column.is-offset-12 {
  margin-left: 100%;
}

@media screen and (max-width: 768px) {
  /* line 66, node_modules/bulma/sass/grid/columns.sass */

  .column.is-narrow-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  /* line 68, node_modules/bulma/sass/grid/columns.sass */

  .column.is-full-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 71, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-quarters-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 74, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-thirds-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.6666%;
  }

  /* line 77, node_modules/bulma/sass/grid/columns.sass */

  .column.is-half-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 80, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-third-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.3333%;
  }

  /* line 83, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-quarter-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 86, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-fifth-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20%;
  }

  /* line 89, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-fifths-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 40%;
  }

  /* line 92, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-fifths-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 60%;
  }

  /* line 95, node_modules/bulma/sass/grid/columns.sass */

  .column.is-four-fifths-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 80%;
  }

  /* line 98, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-quarters-mobile {
    margin-left: 75%;
  }

  /* line 100, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-thirds-mobile {
    margin-left: 66.6666%;
  }

  /* line 102, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-half-mobile {
    margin-left: 50%;
  }

  /* line 104, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-third-mobile {
    margin-left: 33.3333%;
  }

  /* line 106, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-quarter-mobile {
    margin-left: 25%;
  }

  /* line 108, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-fifth-mobile {
    margin-left: 20%;
  }

  /* line 110, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-fifths-mobile {
    margin-left: 40%;
  }

  /* line 112, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-fifths-mobile {
    margin-left: 60%;
  }

  /* line 114, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-four-fifths-mobile {
    margin-left: 80%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-0-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 0%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-0-mobile {
    margin-left: 0%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-1-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-1-mobile {
    margin-left: 8.33333%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-2-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-2-mobile {
    margin-left: 16.66667%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-3-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-4-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-4-mobile {
    margin-left: 33.33333%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-5-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-5-mobile {
    margin-left: 41.66667%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-6-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-7-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-7-mobile {
    margin-left: 58.33333%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-8-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-8-mobile {
    margin-left: 66.66667%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-9-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-10-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-10-mobile {
    margin-left: 83.33333%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-11-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-11-mobile {
    margin-left: 91.66667%;
  }

  /* line 117, node_modules/bulma/sass/grid/columns.sass */

  .column.is-12-mobile {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 120, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-12-mobile {
    margin-left: 100%;
  }
}

@media screen and (min-width: 769px), print {
  /* line 123, node_modules/bulma/sass/grid/columns.sass */

  .column.is-narrow,
  .column.is-narrow-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  /* line 126, node_modules/bulma/sass/grid/columns.sass */

  .column.is-full,
  .column.is-full-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 130, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-quarters,
  .column.is-three-quarters-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 134, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-thirds,
  .column.is-two-thirds-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.6666%;
  }

  /* line 138, node_modules/bulma/sass/grid/columns.sass */

  .column.is-half,
  .column.is-half-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 142, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-third,
  .column.is-one-third-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.3333%;
  }

  /* line 146, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-quarter,
  .column.is-one-quarter-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 150, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-fifth,
  .column.is-one-fifth-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20%;
  }

  /* line 154, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-fifths,
  .column.is-two-fifths-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 40%;
  }

  /* line 158, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-fifths,
  .column.is-three-fifths-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 60%;
  }

  /* line 162, node_modules/bulma/sass/grid/columns.sass */

  .column.is-four-fifths,
  .column.is-four-fifths-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 80%;
  }

  /* line 166, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-quarters,
  .column.is-offset-three-quarters-tablet {
    margin-left: 75%;
  }

  /* line 169, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-thirds,
  .column.is-offset-two-thirds-tablet {
    margin-left: 66.6666%;
  }

  /* line 172, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-half,
  .column.is-offset-half-tablet {
    margin-left: 50%;
  }

  /* line 175, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-third,
  .column.is-offset-one-third-tablet {
    margin-left: 33.3333%;
  }

  /* line 178, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-quarter,
  .column.is-offset-one-quarter-tablet {
    margin-left: 25%;
  }

  /* line 181, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-fifth,
  .column.is-offset-one-fifth-tablet {
    margin-left: 20%;
  }

  /* line 184, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-fifths,
  .column.is-offset-two-fifths-tablet {
    margin-left: 40%;
  }

  /* line 187, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-fifths,
  .column.is-offset-three-fifths-tablet {
    margin-left: 60%;
  }

  /* line 190, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-four-fifths,
  .column.is-offset-four-fifths-tablet {
    margin-left: 80%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-0,
  .column.is-0-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 0%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-0,
  .column.is-offset-0-tablet {
    margin-left: 0%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-1,
  .column.is-1-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-1,
  .column.is-offset-1-tablet {
    margin-left: 8.33333%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-2,
  .column.is-2-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-2,
  .column.is-offset-2-tablet {
    margin-left: 16.66667%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-3,
  .column.is-3-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-3,
  .column.is-offset-3-tablet {
    margin-left: 25%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-4,
  .column.is-4-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-4,
  .column.is-offset-4-tablet {
    margin-left: 33.33333%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-5,
  .column.is-5-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-5,
  .column.is-offset-5-tablet {
    margin-left: 41.66667%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-6,
  .column.is-6-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-6,
  .column.is-offset-6-tablet {
    margin-left: 50%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-7,
  .column.is-7-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-7,
  .column.is-offset-7-tablet {
    margin-left: 58.33333%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-8,
  .column.is-8-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-8,
  .column.is-offset-8-tablet {
    margin-left: 66.66667%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-9,
  .column.is-9-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-9,
  .column.is-offset-9-tablet {
    margin-left: 75%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-10,
  .column.is-10-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-10,
  .column.is-offset-10-tablet {
    margin-left: 83.33333%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-11,
  .column.is-11-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-11,
  .column.is-offset-11-tablet {
    margin-left: 91.66667%;
  }

  /* line 194, node_modules/bulma/sass/grid/columns.sass */

  .column.is-12,
  .column.is-12-tablet {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 198, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-12,
  .column.is-offset-12-tablet {
    margin-left: 100%;
  }
}

@media screen and (max-width: 1023px) {
  /* line 202, node_modules/bulma/sass/grid/columns.sass */

  .column.is-narrow-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  /* line 204, node_modules/bulma/sass/grid/columns.sass */

  .column.is-full-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 207, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-quarters-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 210, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-thirds-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.6666%;
  }

  /* line 213, node_modules/bulma/sass/grid/columns.sass */

  .column.is-half-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 216, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-third-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.3333%;
  }

  /* line 219, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-quarter-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 222, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-fifth-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20%;
  }

  /* line 225, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-fifths-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 40%;
  }

  /* line 228, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-fifths-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 60%;
  }

  /* line 231, node_modules/bulma/sass/grid/columns.sass */

  .column.is-four-fifths-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 80%;
  }

  /* line 234, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-quarters-touch {
    margin-left: 75%;
  }

  /* line 236, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-thirds-touch {
    margin-left: 66.6666%;
  }

  /* line 238, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-half-touch {
    margin-left: 50%;
  }

  /* line 240, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-third-touch {
    margin-left: 33.3333%;
  }

  /* line 242, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-quarter-touch {
    margin-left: 25%;
  }

  /* line 244, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-fifth-touch {
    margin-left: 20%;
  }

  /* line 246, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-fifths-touch {
    margin-left: 40%;
  }

  /* line 248, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-fifths-touch {
    margin-left: 60%;
  }

  /* line 250, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-four-fifths-touch {
    margin-left: 80%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-0-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 0%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-0-touch {
    margin-left: 0%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-1-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-1-touch {
    margin-left: 8.33333%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-2-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-2-touch {
    margin-left: 16.66667%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-3-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-4-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-4-touch {
    margin-left: 33.33333%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-5-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-5-touch {
    margin-left: 41.66667%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-6-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-7-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-7-touch {
    margin-left: 58.33333%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-8-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-8-touch {
    margin-left: 66.66667%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-9-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-10-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-10-touch {
    margin-left: 83.33333%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-11-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-11-touch {
    margin-left: 91.66667%;
  }

  /* line 253, node_modules/bulma/sass/grid/columns.sass */

  .column.is-12-touch {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 256, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-12-touch {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1024px) {
  /* line 259, node_modules/bulma/sass/grid/columns.sass */

  .column.is-narrow-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  /* line 261, node_modules/bulma/sass/grid/columns.sass */

  .column.is-full-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 264, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-quarters-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 267, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-thirds-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.6666%;
  }

  /* line 270, node_modules/bulma/sass/grid/columns.sass */

  .column.is-half-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 273, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-third-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.3333%;
  }

  /* line 276, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-quarter-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 279, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-fifth-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20%;
  }

  /* line 282, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-fifths-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 40%;
  }

  /* line 285, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-fifths-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 60%;
  }

  /* line 288, node_modules/bulma/sass/grid/columns.sass */

  .column.is-four-fifths-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 80%;
  }

  /* line 291, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-quarters-desktop {
    margin-left: 75%;
  }

  /* line 293, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-thirds-desktop {
    margin-left: 66.6666%;
  }

  /* line 295, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-half-desktop {
    margin-left: 50%;
  }

  /* line 297, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-third-desktop {
    margin-left: 33.3333%;
  }

  /* line 299, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-quarter-desktop {
    margin-left: 25%;
  }

  /* line 301, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-fifth-desktop {
    margin-left: 20%;
  }

  /* line 303, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-fifths-desktop {
    margin-left: 40%;
  }

  /* line 305, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-fifths-desktop {
    margin-left: 60%;
  }

  /* line 307, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-four-fifths-desktop {
    margin-left: 80%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-0-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 0%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-0-desktop {
    margin-left: 0%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-1-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-1-desktop {
    margin-left: 8.33333%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-2-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-2-desktop {
    margin-left: 16.66667%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-3-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-4-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-4-desktop {
    margin-left: 33.33333%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-5-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-5-desktop {
    margin-left: 41.66667%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-6-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-7-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-7-desktop {
    margin-left: 58.33333%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-8-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-8-desktop {
    margin-left: 66.66667%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-9-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-10-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-10-desktop {
    margin-left: 83.33333%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-11-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-11-desktop {
    margin-left: 91.66667%;
  }

  /* line 310, node_modules/bulma/sass/grid/columns.sass */

  .column.is-12-desktop {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 313, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-12-desktop {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1216px) {
  /* line 316, node_modules/bulma/sass/grid/columns.sass */

  .column.is-narrow-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  /* line 318, node_modules/bulma/sass/grid/columns.sass */

  .column.is-full-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 321, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-quarters-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 324, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-thirds-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.6666%;
  }

  /* line 327, node_modules/bulma/sass/grid/columns.sass */

  .column.is-half-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 330, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-third-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.3333%;
  }

  /* line 333, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-quarter-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 336, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-fifth-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20%;
  }

  /* line 339, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-fifths-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 40%;
  }

  /* line 342, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-fifths-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 60%;
  }

  /* line 345, node_modules/bulma/sass/grid/columns.sass */

  .column.is-four-fifths-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 80%;
  }

  /* line 348, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-quarters-widescreen {
    margin-left: 75%;
  }

  /* line 350, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-thirds-widescreen {
    margin-left: 66.6666%;
  }

  /* line 352, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-half-widescreen {
    margin-left: 50%;
  }

  /* line 354, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-third-widescreen {
    margin-left: 33.3333%;
  }

  /* line 356, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-quarter-widescreen {
    margin-left: 25%;
  }

  /* line 358, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-fifth-widescreen {
    margin-left: 20%;
  }

  /* line 360, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-fifths-widescreen {
    margin-left: 40%;
  }

  /* line 362, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-fifths-widescreen {
    margin-left: 60%;
  }

  /* line 364, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-four-fifths-widescreen {
    margin-left: 80%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-0-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 0%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-0-widescreen {
    margin-left: 0%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-1-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-1-widescreen {
    margin-left: 8.33333%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-2-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-2-widescreen {
    margin-left: 16.66667%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-3-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-4-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-4-widescreen {
    margin-left: 33.33333%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-5-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-5-widescreen {
    margin-left: 41.66667%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-6-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-7-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-7-widescreen {
    margin-left: 58.33333%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-8-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-8-widescreen {
    margin-left: 66.66667%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-9-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-10-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-10-widescreen {
    margin-left: 83.33333%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-11-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-11-widescreen {
    margin-left: 91.66667%;
  }

  /* line 367, node_modules/bulma/sass/grid/columns.sass */

  .column.is-12-widescreen {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 370, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-12-widescreen {
    margin-left: 100%;
  }
}

@media screen and (min-width: 1408px) {
  /* line 373, node_modules/bulma/sass/grid/columns.sass */

  .column.is-narrow-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }

  /* line 375, node_modules/bulma/sass/grid/columns.sass */

  .column.is-full-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 378, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-quarters-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 381, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-thirds-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.6666%;
  }

  /* line 384, node_modules/bulma/sass/grid/columns.sass */

  .column.is-half-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 387, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-third-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.3333%;
  }

  /* line 390, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-quarter-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 393, node_modules/bulma/sass/grid/columns.sass */

  .column.is-one-fifth-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 20%;
  }

  /* line 396, node_modules/bulma/sass/grid/columns.sass */

  .column.is-two-fifths-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 40%;
  }

  /* line 399, node_modules/bulma/sass/grid/columns.sass */

  .column.is-three-fifths-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 60%;
  }

  /* line 402, node_modules/bulma/sass/grid/columns.sass */

  .column.is-four-fifths-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 80%;
  }

  /* line 405, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-quarters-fullhd {
    margin-left: 75%;
  }

  /* line 407, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-thirds-fullhd {
    margin-left: 66.6666%;
  }

  /* line 409, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-half-fullhd {
    margin-left: 50%;
  }

  /* line 411, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-third-fullhd {
    margin-left: 33.3333%;
  }

  /* line 413, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-quarter-fullhd {
    margin-left: 25%;
  }

  /* line 415, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-one-fifth-fullhd {
    margin-left: 20%;
  }

  /* line 417, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-two-fifths-fullhd {
    margin-left: 40%;
  }

  /* line 419, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-three-fifths-fullhd {
    margin-left: 60%;
  }

  /* line 421, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-four-fifths-fullhd {
    margin-left: 80%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-0-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 0%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-0-fullhd {
    margin-left: 0%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-1-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-1-fullhd {
    margin-left: 8.33333%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-2-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-2-fullhd {
    margin-left: 16.66667%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-3-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-4-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-4-fullhd {
    margin-left: 33.33333%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-5-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-5-fullhd {
    margin-left: 41.66667%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-6-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-7-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-7-fullhd {
    margin-left: 58.33333%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-8-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-8-fullhd {
    margin-left: 66.66667%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-9-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

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

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-10-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-10-fullhd {
    margin-left: 83.33333%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-11-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-11-fullhd {
    margin-left: 91.66667%;
  }

  /* line 424, node_modules/bulma/sass/grid/columns.sass */

  .column.is-12-fullhd {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }

  /* line 427, node_modules/bulma/sass/grid/columns.sass */

  .column.is-offset-12-fullhd {
    margin-left: 100%;
  }
}

/* line 430, node_modules/bulma/sass/grid/columns.sass */

.columns {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

/* line 434, node_modules/bulma/sass/grid/columns.sass */

.columns:last-child {
  margin-bottom: -0.75rem;
}

/* line 436, node_modules/bulma/sass/grid/columns.sass */

.columns:not(:last-child) {
  margin-bottom: calc(1.5rem - 0.75rem);
}

/* line 439, node_modules/bulma/sass/grid/columns.sass */

.columns.is-centered {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* line 441, node_modules/bulma/sass/grid/columns.sass */

.columns.is-gapless {
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
}

/* line 445, node_modules/bulma/sass/grid/columns.sass */

.columns.is-gapless > .column {
  margin: 0;
  padding: 0 !important;
}

/* line 448, node_modules/bulma/sass/grid/columns.sass */

.columns.is-gapless:not(:last-child) {
  margin-bottom: 1.5rem;
}

/* line 450, node_modules/bulma/sass/grid/columns.sass */

.columns.is-gapless:last-child {
  margin-bottom: 0;
}

/* line 452, node_modules/bulma/sass/grid/columns.sass */

.columns.is-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 454, node_modules/bulma/sass/grid/columns.sass */

.columns.is-multiline {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* line 456, node_modules/bulma/sass/grid/columns.sass */

.columns.is-vcentered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 769px), print {
  /* line 460, node_modules/bulma/sass/grid/columns.sass */

  .columns:not(.is-desktop) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1024px) {
  /* line 464, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* line 468, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable {
  --columnGap: 0.75rem;
  margin-left: calc(-1 * var(--columnGap));
  margin-right: calc(-1 * var(--columnGap));
}

/* line 472, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable .column {
  padding-left: var(--columnGap);
  padding-right: var(--columnGap);
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-0 {
  --columnGap: 0rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-mobile {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-tablet {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-tablet-only {
    --columnGap: 0rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-touch {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-desktop {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-desktop-only {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-widescreen {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-widescreen-only {
    --columnGap: 0rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-0-fullhd {
    --columnGap: 0rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-1 {
  --columnGap: 0.25rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-mobile {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-tablet {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-tablet-only {
    --columnGap: 0.25rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-touch {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-desktop {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-desktop-only {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-widescreen {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-widescreen-only {
    --columnGap: 0.25rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-1-fullhd {
    --columnGap: 0.25rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-2 {
  --columnGap: 0.5rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-mobile {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-tablet {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-tablet-only {
    --columnGap: 0.5rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-touch {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-desktop {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-desktop-only {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-widescreen {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-widescreen-only {
    --columnGap: 0.5rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-2-fullhd {
    --columnGap: 0.5rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-3 {
  --columnGap: 0.75rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-mobile {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-tablet {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-tablet-only {
    --columnGap: 0.75rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-touch {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-desktop {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-desktop-only {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-widescreen {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-widescreen-only {
    --columnGap: 0.75rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-3-fullhd {
    --columnGap: 0.75rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-4 {
  --columnGap: 1rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-mobile {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-tablet {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-tablet-only {
    --columnGap: 1rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-touch {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-desktop {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-desktop-only {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-widescreen {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-widescreen-only {
    --columnGap: 1rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-4-fullhd {
    --columnGap: 1rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-5 {
  --columnGap: 1.25rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-mobile {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-tablet {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-tablet-only {
    --columnGap: 1.25rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-touch {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-desktop {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-desktop-only {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-widescreen {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-widescreen-only {
    --columnGap: 1.25rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-5-fullhd {
    --columnGap: 1.25rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-6 {
  --columnGap: 1.5rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-mobile {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-tablet {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-tablet-only {
    --columnGap: 1.5rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-touch {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-desktop {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-desktop-only {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-widescreen {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-widescreen-only {
    --columnGap: 1.5rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-6-fullhd {
    --columnGap: 1.5rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-7 {
  --columnGap: 1.75rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-mobile {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-tablet {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-tablet-only {
    --columnGap: 1.75rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-touch {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-desktop {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-desktop-only {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-widescreen {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-widescreen-only {
    --columnGap: 1.75rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-7-fullhd {
    --columnGap: 1.75rem;
  }
}

/* line 476, node_modules/bulma/sass/grid/columns.sass */

.columns.is-variable.is-8 {
  --columnGap: 2rem;
}

@media screen and (max-width: 768px) {
  /* line 479, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-mobile {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 482, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-tablet {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  /* line 485, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-tablet-only {
    --columnGap: 2rem;
  }
}

@media screen and (max-width: 1023px) {
  /* line 488, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-touch {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 1024px) {
  /* line 491, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-desktop {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1215px) {
  /* line 494, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-desktop-only {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 1216px) {
  /* line 497, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-widescreen {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 1216px) and (max-width: 1407px) {
  /* line 500, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-widescreen-only {
    --columnGap: 2rem;
  }
}

@media screen and (min-width: 1408px) {
  /* line 503, node_modules/bulma/sass/grid/columns.sass */

  .columns.is-variable.is-8-fullhd {
    --columnGap: 2rem;
  }
}

/* line 3, node_modules/bulma/sass/grid/tiles.sass */

.tile {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: block;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
}

/* line 11, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-ancestor {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
  margin-top: -0.75rem;
}

/* line 15, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-ancestor:last-child {
  margin-bottom: -0.75rem;
}

/* line 17, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-ancestor:not(:last-child) {
  margin-bottom: 0.75rem;
}

/* line 19, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-child {
  margin: 0 !important;
}

/* line 21, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-parent {
  padding: 0.75rem;
}

/* line 23, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 25, node_modules/bulma/sass/grid/tiles.sass */

.tile.is-vertical > .tile.is-child:not(:last-child) {
  margin-bottom: 1.5rem !important;
}

@media screen and (min-width: 769px), print {
  /* line 29, node_modules/bulma/sass/grid/tiles.sass */

  .tile:not(.is-child) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-1 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 8.33333%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-2 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 16.66667%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-3 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 25%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-4 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 33.33333%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-5 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 41.66667%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-6 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 50%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-7 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 58.33333%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-8 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 66.66667%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-9 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 75%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-10 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 83.33333%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-11 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 91.66667%;
  }

  /* line 32, node_modules/bulma/sass/grid/tiles.sass */

  .tile.is-12 {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

/* line 3, node_modules/bulma/sass/layout/hero.sass */

.hero {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* line 8, node_modules/bulma/sass/layout/hero.sass */

.hero .navbar {
  background: none;
}

/* line 11, node_modules/bulma/sass/layout/hero.sass */

.hero .tabs ul {
  border-bottom: none;
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white {
  background-color: white;
  color: #0a0a0a;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-white strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .title {
  color: #0a0a0a;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .subtitle {
  color: rgba(10, 10, 10, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .subtitle a:not(.button),
.hero.is-white .subtitle strong {
  color: #0a0a0a;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-white .navbar-menu {
    background-color: white;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .navbar-item,
.hero.is-white .navbar-link {
  color: rgba(10, 10, 10, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white a.navbar-item:hover,
.hero.is-white a.navbar-item.is-active,
.hero.is-white .navbar-link:hover,
.hero.is-white .navbar-link.is-active {
  background-color: #f2f2f2;
  color: #0a0a0a;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .tabs a {
  color: #0a0a0a;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .tabs.is-boxed a,
.hero.is-white .tabs.is-toggle a {
  color: #0a0a0a;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .tabs.is-boxed a:hover,
.hero.is-white .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white .tabs.is-boxed li.is-active a,
.hero.is-white .tabs.is-boxed li.is-active a:hover,
.hero.is-white .tabs.is-toggle li.is-active a,
.hero.is-white .tabs.is-toggle li.is-active a:hover {
  background-color: #0a0a0a;
  border-color: #0a0a0a;
  color: white;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-white.is-bold {
  background-image: -webkit-linear-gradient(309deg, #e6e6e6 0%, white 71%, white 100%);
  background-image: -o-linear-gradient(309deg, #e6e6e6 0%, white 71%, white 100%);
  background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-white.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #e6e6e6 0%, white 71%, white 100%);
    background-image: -o-linear-gradient(309deg, #e6e6e6 0%, white 71%, white 100%);
    background-image: linear-gradient(141deg, #e6e6e6 0%, white 71%, white 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black {
  background-color: #0a0a0a;
  color: white;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-black strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .title {
  color: white;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .subtitle a:not(.button),
.hero.is-black .subtitle strong {
  color: white;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-black .navbar-menu {
    background-color: #0a0a0a;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .navbar-item,
.hero.is-black .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black a.navbar-item:hover,
.hero.is-black a.navbar-item.is-active,
.hero.is-black .navbar-link:hover,
.hero.is-black .navbar-link.is-active {
  background-color: black;
  color: white;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .tabs a {
  color: white;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .tabs.is-boxed a,
.hero.is-black .tabs.is-toggle a {
  color: white;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .tabs.is-boxed a:hover,
.hero.is-black .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black .tabs.is-boxed li.is-active a,
.hero.is-black .tabs.is-boxed li.is-active a:hover,
.hero.is-black .tabs.is-toggle li.is-active a,
.hero.is-black .tabs.is-toggle li.is-active a:hover {
  background-color: white;
  border-color: white;
  color: #0a0a0a;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-black.is-bold {
  background-image: -webkit-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%);
  background-image: -o-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%);
  background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-black.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%);
    background-image: -o-linear-gradient(309deg, black 0%, #0a0a0a 71%, #181616 100%);
    background-image: linear-gradient(141deg, black 0%, #0a0a0a 71%, #181616 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-light strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .title {
  color: rgba(0, 0, 0, 0.7);
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .subtitle {
  color: rgba(0, 0, 0, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .subtitle a:not(.button),
.hero.is-light .subtitle strong {
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-light .navbar-menu {
    background-color: whitesmoke;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .navbar-item,
.hero.is-light .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light a.navbar-item:hover,
.hero.is-light a.navbar-item.is-active,
.hero.is-light .navbar-link:hover,
.hero.is-light .navbar-link.is-active {
  background-color: #e8e8e8;
  color: rgba(0, 0, 0, 0.7);
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .tabs a {
  color: rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .tabs.is-boxed a,
.hero.is-light .tabs.is-toggle a {
  color: rgba(0, 0, 0, 0.7);
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .tabs.is-boxed a:hover,
.hero.is-light .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light .tabs.is-boxed li.is-active a,
.hero.is-light .tabs.is-boxed li.is-active a:hover,
.hero.is-light .tabs.is-toggle li.is-active a,
.hero.is-light .tabs.is-toggle li.is-active a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
  color: whitesmoke;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-light.is-bold {
  background-image: -webkit-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
  background-image: -o-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
  background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-light.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
    background-image: -o-linear-gradient(309deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
    background-image: linear-gradient(141deg, #dfd8d9 0%, whitesmoke 71%, white 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark {
  background-color: #363636;
  color: #fff;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-dark strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .title {
  color: #fff;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .subtitle a:not(.button),
.hero.is-dark .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-dark .navbar-menu {
    background-color: #363636;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .navbar-item,
.hero.is-dark .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark a.navbar-item:hover,
.hero.is-dark a.navbar-item.is-active,
.hero.is-dark .navbar-link:hover,
.hero.is-dark .navbar-link.is-active {
  background-color: #292929;
  color: #fff;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .tabs a {
  color: #fff;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .tabs.is-boxed a,
.hero.is-dark .tabs.is-toggle a {
  color: #fff;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .tabs.is-boxed a:hover,
.hero.is-dark .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark .tabs.is-boxed li.is-active a,
.hero.is-dark .tabs.is-boxed li.is-active a:hover,
.hero.is-dark .tabs.is-toggle li.is-active a,
.hero.is-dark .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #363636;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-dark.is-bold {
  background-image: -webkit-linear-gradient(309deg, #1f191a 0%, #363636 71%, #46403f 100%);
  background-image: -o-linear-gradient(309deg, #1f191a 0%, #363636 71%, #46403f 100%);
  background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-dark.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #1f191a 0%, #363636 71%, #46403f 100%);
    background-image: -o-linear-gradient(309deg, #1f191a 0%, #363636 71%, #46403f 100%);
    background-image: linear-gradient(141deg, #1f191a 0%, #363636 71%, #46403f 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary {
  background-color: #00d1b2;
  color: #fff;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-primary strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .title {
  color: #fff;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .subtitle a:not(.button),
.hero.is-primary .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-primary .navbar-menu {
    background-color: #00d1b2;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .navbar-item,
.hero.is-primary .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary a.navbar-item:hover,
.hero.is-primary a.navbar-item.is-active,
.hero.is-primary .navbar-link:hover,
.hero.is-primary .navbar-link.is-active {
  background-color: #00b89c;
  color: #fff;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .tabs a {
  color: #fff;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .tabs.is-boxed a,
.hero.is-primary .tabs.is-toggle a {
  color: #fff;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .tabs.is-boxed a:hover,
.hero.is-primary .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary .tabs.is-boxed li.is-active a,
.hero.is-primary .tabs.is-boxed li.is-active a:hover,
.hero.is-primary .tabs.is-toggle li.is-active a,
.hero.is-primary .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #00d1b2;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-primary.is-bold {
  background-image: -webkit-linear-gradient(309deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
  background-image: -o-linear-gradient(309deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
  background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-primary.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
    background-image: -o-linear-gradient(309deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
    background-image: linear-gradient(141deg, #009e6c 0%, #00d1b2 71%, #00e7eb 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link {
  background-color: #3273dc;
  color: #fff;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-link strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .title {
  color: #fff;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .subtitle a:not(.button),
.hero.is-link .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-link .navbar-menu {
    background-color: #3273dc;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .navbar-item,
.hero.is-link .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link a.navbar-item:hover,
.hero.is-link a.navbar-item.is-active,
.hero.is-link .navbar-link:hover,
.hero.is-link .navbar-link.is-active {
  background-color: #2366d1;
  color: #fff;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .tabs a {
  color: #fff;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .tabs.is-boxed a,
.hero.is-link .tabs.is-toggle a {
  color: #fff;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .tabs.is-boxed a:hover,
.hero.is-link .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link .tabs.is-boxed li.is-active a,
.hero.is-link .tabs.is-boxed li.is-active a:hover,
.hero.is-link .tabs.is-toggle li.is-active a,
.hero.is-link .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #3273dc;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-link.is-bold {
  background-image: -webkit-linear-gradient(309deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
  background-image: -o-linear-gradient(309deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
  background-image: linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-link.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
    background-image: -o-linear-gradient(309deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
    background-image: linear-gradient(141deg, #1577c6 0%, #3273dc 71%, #4366e5 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info {
  background-color: #3298dc;
  color: #fff;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-info strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .title {
  color: #fff;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .subtitle a:not(.button),
.hero.is-info .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-info .navbar-menu {
    background-color: #3298dc;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .navbar-item,
.hero.is-info .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info a.navbar-item:hover,
.hero.is-info a.navbar-item.is-active,
.hero.is-info .navbar-link:hover,
.hero.is-info .navbar-link.is-active {
  background-color: #238cd1;
  color: #fff;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .tabs a {
  color: #fff;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .tabs.is-boxed a,
.hero.is-info .tabs.is-toggle a {
  color: #fff;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .tabs.is-boxed a:hover,
.hero.is-info .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info .tabs.is-boxed li.is-active a,
.hero.is-info .tabs.is-boxed li.is-active a:hover,
.hero.is-info .tabs.is-toggle li.is-active a,
.hero.is-info .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #3298dc;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-info.is-bold {
  background-image: -webkit-linear-gradient(309deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
  background-image: -o-linear-gradient(309deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
  background-image: linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-info.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
    background-image: -o-linear-gradient(309deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
    background-image: linear-gradient(141deg, #159dc6 0%, #3298dc 71%, #4389e5 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success {
  background-color: #48c774;
  color: #fff;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-success strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .title {
  color: #fff;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .subtitle a:not(.button),
.hero.is-success .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-success .navbar-menu {
    background-color: #48c774;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .navbar-item,
.hero.is-success .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success a.navbar-item:hover,
.hero.is-success a.navbar-item.is-active,
.hero.is-success .navbar-link:hover,
.hero.is-success .navbar-link.is-active {
  background-color: #3abb67;
  color: #fff;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .tabs a {
  color: #fff;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .tabs.is-boxed a,
.hero.is-success .tabs.is-toggle a {
  color: #fff;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .tabs.is-boxed a:hover,
.hero.is-success .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success .tabs.is-boxed li.is-active a,
.hero.is-success .tabs.is-boxed li.is-active a:hover,
.hero.is-success .tabs.is-toggle li.is-active a,
.hero.is-success .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #48c774;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-success.is-bold {
  background-image: -webkit-linear-gradient(309deg, #29b342 0%, #48c774 71%, #56d296 100%);
  background-image: -o-linear-gradient(309deg, #29b342 0%, #48c774 71%, #56d296 100%);
  background-image: linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-success.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #29b342 0%, #48c774 71%, #56d296 100%);
    background-image: -o-linear-gradient(309deg, #29b342 0%, #48c774 71%, #56d296 100%);
    background-image: linear-gradient(141deg, #29b342 0%, #48c774 71%, #56d296 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning {
  background-color: #ffdd57;
  color: rgba(0, 0, 0, 0.7);
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-warning strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .title {
  color: rgba(0, 0, 0, 0.7);
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .subtitle {
  color: rgba(0, 0, 0, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .subtitle a:not(.button),
.hero.is-warning .subtitle strong {
  color: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-warning .navbar-menu {
    background-color: #ffdd57;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .navbar-item,
.hero.is-warning .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning a.navbar-item:hover,
.hero.is-warning a.navbar-item.is-active,
.hero.is-warning .navbar-link:hover,
.hero.is-warning .navbar-link.is-active {
  background-color: #ffd83d;
  color: rgba(0, 0, 0, 0.7);
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .tabs a {
  color: rgba(0, 0, 0, 0.7);
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .tabs.is-boxed a,
.hero.is-warning .tabs.is-toggle a {
  color: rgba(0, 0, 0, 0.7);
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .tabs.is-boxed a:hover,
.hero.is-warning .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning .tabs.is-boxed li.is-active a,
.hero.is-warning .tabs.is-boxed li.is-active a:hover,
.hero.is-warning .tabs.is-toggle li.is-active a,
.hero.is-warning .tabs.is-toggle li.is-active a:hover {
  background-color: rgba(0, 0, 0, 0.7);
  border-color: rgba(0, 0, 0, 0.7);
  color: #ffdd57;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-warning.is-bold {
  background-image: -webkit-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
  background-image: -o-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
  background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-warning.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
    background-image: -o-linear-gradient(309deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
    background-image: linear-gradient(141deg, #ffaf24 0%, #ffdd57 71%, #fffa70 100%);
  }
}

/* line 17, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger {
  background-color: #f14668;
  color: #fff;
}

/* line 20, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger a:not(.button):not(.dropdown-item):not(.tag):not(.pagination-link.is-current),
.hero.is-danger strong {
  color: inherit;
}

/* line 23, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .title {
  color: #fff;
}

/* line 25, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* line 27, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .subtitle a:not(.button),
.hero.is-danger .subtitle strong {
  color: #fff;
}

@media screen and (max-width: 1023px) {
  /* line 30, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-danger .navbar-menu {
    background-color: #f14668;
  }
}

/* line 33, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .navbar-item,
.hero.is-danger .navbar-link {
  color: rgba(255, 255, 255, 0.7);
}

/* line 38, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger a.navbar-item:hover,
.hero.is-danger a.navbar-item.is-active,
.hero.is-danger .navbar-link:hover,
.hero.is-danger .navbar-link.is-active {
  background-color: #ef2e55;
  color: #fff;
}

/* line 43, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .tabs a {
  color: #fff;
  opacity: 0.9;
}

/* line 46, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .tabs a:hover {
  opacity: 1;
}

/* line 49, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .tabs li.is-active a {
  opacity: 1;
}

/* line 53, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .tabs.is-boxed a,
.hero.is-danger .tabs.is-toggle a {
  color: #fff;
}

/* line 55, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .tabs.is-boxed a:hover,
.hero.is-danger .tabs.is-toggle a:hover {
  background-color: rgba(10, 10, 10, 0.1);
}

/* line 58, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger .tabs.is-boxed li.is-active a,
.hero.is-danger .tabs.is-boxed li.is-active a:hover,
.hero.is-danger .tabs.is-toggle li.is-active a,
.hero.is-danger .tabs.is-toggle li.is-active a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #f14668;
}

/* line 64, node_modules/bulma/sass/layout/hero.sass */

.hero.is-danger.is-bold {
  background-image: -webkit-linear-gradient(309deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
  background-image: -o-linear-gradient(309deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
  background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
}

@media screen and (max-width: 768px) {
  /* line 69, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-danger.is-bold .navbar-menu {
    background-image: -webkit-linear-gradient(309deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
    background-image: -o-linear-gradient(309deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
    background-image: linear-gradient(141deg, #fa0a62 0%, #f14668 71%, #f7595f 100%);
  }
}

/* line 73, node_modules/bulma/sass/layout/hero.sass */

.hero.is-small .hero-body {
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
}

@media screen and (min-width: 769px), print {
  /* line 78, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-medium .hero-body {
    padding-bottom: 9rem;
    padding-top: 9rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 83, node_modules/bulma/sass/layout/hero.sass */

  .hero.is-large .hero-body {
    padding-bottom: 18rem;
    padding-top: 18rem;
  }
}

/* line 89, node_modules/bulma/sass/layout/hero.sass */

.hero.is-halfheight .hero-body,
.hero.is-fullheight .hero-body,
.hero.is-fullheight-with-navbar .hero-body {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* line 92, node_modules/bulma/sass/layout/hero.sass */

.hero.is-halfheight .hero-body > .container,
.hero.is-fullheight .hero-body > .container,
.hero.is-fullheight-with-navbar .hero-body > .container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* line 95, node_modules/bulma/sass/layout/hero.sass */

.hero.is-halfheight {
  min-height: 50vh;
}

/* line 97, node_modules/bulma/sass/layout/hero.sass */

.hero.is-fullheight {
  min-height: 100vh;
}

/* line 102, node_modules/bulma/sass/layout/hero.sass */

.hero-video {
  overflow: hidden;
}

/* line 105, node_modules/bulma/sass/layout/hero.sass */

.hero-video video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

/* line 113, node_modules/bulma/sass/layout/hero.sass */

.hero-video.is-transparent {
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  /* line 102, node_modules/bulma/sass/layout/hero.sass */

  .hero-video {
    display: none;
  }
}

/* line 119, node_modules/bulma/sass/layout/hero.sass */

.hero-buttons {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  /* line 123, node_modules/bulma/sass/layout/hero.sass */

  .hero-buttons .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  /* line 125, node_modules/bulma/sass/layout/hero.sass */

  .hero-buttons .button:not(:last-child) {
    margin-bottom: 0.75rem;
  }
}

@media screen and (min-width: 769px), print {
  /* line 119, node_modules/bulma/sass/layout/hero.sass */

  .hero-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  /* line 130, node_modules/bulma/sass/layout/hero.sass */

  .hero-buttons .button:not(:last-child) {
    margin-right: 1.5rem;
  }
}

/* line 135, node_modules/bulma/sass/layout/hero.sass */

.hero-head,
.hero-foot {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* line 140, node_modules/bulma/sass/layout/hero.sass */

.hero-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 3rem 1.5rem;
}

/* line 5, node_modules/bulma/sass/layout/section.sass */

.section {
  padding: 3rem 1.5rem;
}

@media screen and (min-width: 1024px) {
  /* line 10, node_modules/bulma/sass/layout/section.sass */

  .section.is-medium {
    padding: 9rem 1.5rem;
  }

  /* line 12, node_modules/bulma/sass/layout/section.sass */

  .section.is-large {
    padding: 18rem 1.5rem;
  }
}

/* line 5, node_modules/bulma/sass/layout/footer.sass */

.footer {
  background-color: #fafafa;
  padding: 3rem 1.5rem 6rem;
}

/** Import NPM dependencies */

/* Slider */

/* line 3, node_modules/slick-carousel/slick/slick.scss */

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

/* line 17, node_modules/slick-carousel/slick/slick.scss */

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

/* line 24, node_modules/slick-carousel/slick/slick.scss */

.slick-list:focus {
  outline: none;
}

/* line 28, node_modules/slick-carousel/slick/slick.scss */

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 33, node_modules/slick-carousel/slick/slick.scss */

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

/* line 42, node_modules/slick-carousel/slick/slick.scss */

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 50, node_modules/slick-carousel/slick/slick.scss */

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

/* line 56, node_modules/slick-carousel/slick/slick.scss */

.slick-track:after {
  clear: both;
}

/* line 60, node_modules/slick-carousel/slick/slick.scss */

.slick-loading .slick-track {
  visibility: hidden;
}

/* line 64, node_modules/slick-carousel/slick/slick.scss */

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

/* line 68, node_modules/slick-carousel/slick/slick.scss */

[dir="rtl"] .slick-slide {
  float: right;
}

/* line 71, node_modules/slick-carousel/slick/slick.scss */

.slick-slide img {
  display: block;
}

/* line 74, node_modules/slick-carousel/slick/slick.scss */

.slick-slide.slick-loading img {
  display: none;
}

/* line 80, node_modules/slick-carousel/slick/slick.scss */

.slick-slide.dragging img {
  pointer-events: none;
}

/* line 84, node_modules/slick-carousel/slick/slick.scss */

.slick-initialized .slick-slide {
  display: block;
}

/* line 88, node_modules/slick-carousel/slick/slick.scss */

.slick-loading .slick-slide {
  visibility: hidden;
}

/* line 92, node_modules/slick-carousel/slick/slick.scss */

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* line 98, node_modules/slick-carousel/slick/slick.scss */

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

/* line 11, node_modules/normalize.css/normalize.css */

html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

/* line 23, node_modules/normalize.css/normalize.css */

body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */

/* line 31, node_modules/normalize.css/normalize.css */

main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* line 40, node_modules/normalize.css/normalize.css */

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

/* Grouping content
   ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

/* line 53, node_modules/normalize.css/normalize.css */

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* line 64, node_modules/normalize.css/normalize.css */

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

/* Text-level semantics
   ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

/* line 76, node_modules/normalize.css/normalize.css */

a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

/* line 85, node_modules/normalize.css/normalize.css */

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

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

/* line 95, node_modules/normalize.css/normalize.css */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

/* line 105, node_modules/normalize.css/normalize.css */

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

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

/* line 116, node_modules/normalize.css/normalize.css */

small {
  font-size: 80%;
}

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

/* line 125, node_modules/normalize.css/normalize.css */

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

/* line 133, node_modules/normalize.css/normalize.css */

sub {
  bottom: -0.25em;
}

/* line 137, node_modules/normalize.css/normalize.css */

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

/* line 148, node_modules/normalize.css/normalize.css */

img {
  border-style: none;
}

/* Forms
   ========================================================================== */

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

/* line 160, node_modules/normalize.css/normalize.css */

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

/* line 176, node_modules/normalize.css/normalize.css */

button,
input {
  /* 1 */
  overflow: visible;
}

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

/* line 186, node_modules/normalize.css/normalize.css */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

/* line 195, node_modules/normalize.css/normalize.css */

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

/**
 * Remove the inner border and padding in Firefox.
 */

/* line 206, node_modules/normalize.css/normalize.css */

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

/**
 * Restore the focus styles unset by the previous rule.
 */

/* line 218, node_modules/normalize.css/normalize.css */

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

/**
 * Correct the padding in Firefox.
 */

/* line 229, node_modules/normalize.css/normalize.css */

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

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

/* line 240, node_modules/normalize.css/normalize.css */

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

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

/* line 253, node_modules/normalize.css/normalize.css */

progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */

/* line 261, node_modules/normalize.css/normalize.css */

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

/* line 270, node_modules/normalize.css/normalize.css */

[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

/* line 280, node_modules/normalize.css/normalize.css */

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

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

/* line 290, node_modules/normalize.css/normalize.css */

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

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

/* line 299, node_modules/normalize.css/normalize.css */

[type="search"]::-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.
 */

/* line 308, node_modules/normalize.css/normalize.css */

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

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

/* line 320, node_modules/normalize.css/normalize.css */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

/* line 328, node_modules/normalize.css/normalize.css */

summary {
  display: list-item;
}

/* Misc
   ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */

/* line 339, node_modules/normalize.css/normalize.css */

template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */

/* line 347, node_modules/normalize.css/normalize.css */

[hidden] {
  display: none;
}

/* Magnific Popup CSS */

/* line 34, node_modules/magnific-popup/src/css/main.scss */

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

/* line 48, node_modules/magnific-popup/src/css/main.scss */

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

/* line 60, node_modules/magnific-popup/src/css/main.scss */

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 73, node_modules/magnific-popup/src/css/main.scss */

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

/* line 84, node_modules/magnific-popup/src/css/main.scss */

.mfp-align-top .mfp-container:before {
  display: none;
}

/* line 91, node_modules/magnific-popup/src/css/main.scss */

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

/* line 101, node_modules/magnific-popup/src/css/main.scss */

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

/* line 108, node_modules/magnific-popup/src/css/main.scss */

.mfp-ajax-cur {
  cursor: progress;
}

/* line 112, node_modules/magnific-popup/src/css/main.scss */

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

/* line 118, node_modules/magnific-popup/src/css/main.scss */

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/* line 125, node_modules/magnific-popup/src/css/main.scss */

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

/* line 130, node_modules/magnific-popup/src/css/main.scss */

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

/* line 141, node_modules/magnific-popup/src/css/main.scss */

.mfp-loading.mfp-figure {
  display: none;
}

/* line 160, node_modules/magnific-popup/src/css/main.scss */

.mfp-hide {
  display: none !important;
}

/* line 171, node_modules/magnific-popup/src/css/main.scss */

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

/* line 181, node_modules/magnific-popup/src/css/main.scss */

.mfp-preloader a {
  color: #CCC;
}

/* line 183, node_modules/magnific-popup/src/css/main.scss */

.mfp-preloader a:hover {
  color: #FFF;
}

/* line 191, node_modules/magnific-popup/src/css/main.scss */

.mfp-s-ready .mfp-preloader {
  display: none;
}

/* line 198, node_modules/magnific-popup/src/css/main.scss */

.mfp-s-error .mfp-content {
  display: none;
}

/* line 205, node_modules/magnific-popup/src/css/main.scss */

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

/* line 219, node_modules/magnific-popup/src/css/main.scss */

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* line 227, node_modules/magnific-popup/src/css/main.scss */

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

/* line 245, node_modules/magnific-popup/src/css/main.scss */

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

/* line 250, node_modules/magnific-popup/src/css/main.scss */

.mfp-close:active {
  top: 1px;
}

/* line 255, node_modules/magnific-popup/src/css/main.scss */

.mfp-close-btn-in .mfp-close {
  color: #333;
}

/* line 261, node_modules/magnific-popup/src/css/main.scss */

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

/* line 271, node_modules/magnific-popup/src/css/main.scss */

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

/* line 283, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 293, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow:active {
  margin-top: -54px;
}

/* line 296, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

/* line 300, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

/* line 314, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

/* line 321, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

/* line 329, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow-left {
  left: 0;
}

/* line 331, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

/* line 335, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

/* line 341, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow-right {
  right: 0;
}

/* line 343, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

/* line 347, node_modules/magnific-popup/src/css/main.scss */

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

/* line 357, node_modules/magnific-popup/src/css/main.scss */

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* line 360, node_modules/magnific-popup/src/css/main.scss */

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

/* line 365, node_modules/magnific-popup/src/css/main.scss */

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

/* line 369, node_modules/magnific-popup/src/css/main.scss */

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

/* line 374, node_modules/magnific-popup/src/css/main.scss */

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */

/* line 394, node_modules/magnific-popup/src/css/main.scss */

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */

/* line 407, node_modules/magnific-popup/src/css/main.scss */

.mfp-figure {
  line-height: 0;
}

/* line 409, node_modules/magnific-popup/src/css/main.scss */

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

/* line 423, node_modules/magnific-popup/src/css/main.scss */

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

/* line 429, node_modules/magnific-popup/src/css/main.scss */

.mfp-figure figure {
  margin: 0;
}

/* line 433, node_modules/magnific-popup/src/css/main.scss */

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

/* line 441, node_modules/magnific-popup/src/css/main.scss */

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

/* line 450, node_modules/magnific-popup/src/css/main.scss */

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

/* line 457, node_modules/magnific-popup/src/css/main.scss */

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */

  /* line 470, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  /* line 475, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  /* line 481, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  /* line 485, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  /* line 490, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  /* line 498, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  /* line 502, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  /* line 506, node_modules/magnific-popup/src/css/main.scss */

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  /* line 526, node_modules/magnific-popup/src/css/main.scss */

  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -o-transform: scale(0.75);
       transform: scale(0.75);
  }

  /* line 530, node_modules/magnific-popup/src/css/main.scss */

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -o-transform-origin: 0;
       transform-origin: 0;
  }

  /* line 534, node_modules/magnific-popup/src/css/main.scss */

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -o-transform-origin: 100%;
       transform-origin: 100%;
  }

  /* line 538, node_modules/magnific-popup/src/css/main.scss */

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

/** Import theme styles */

/** Utils */

/* Fix error responsive columns bulma - temporary */

/* line 2, resources/assets/styles/utils/_helpers.scss */

.columns {
  margin-left: 0;
  margin-right: 0;
}

/* Positioning */

/* line 8, resources/assets/styles/utils/_helpers.scss */

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

/* line 12, resources/assets/styles/utils/_helpers.scss */

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

/* line 16, resources/assets/styles/utils/_helpers.scss */

.iso-grid {
  margin-top: 100px;
}

/* Simple iframe for GoogleMap for the moment */

/* line 21, resources/assets/styles/utils/_helpers.scss */

.belval-map {
  margin-top: 200px;
  text-align: right;
  position: relative;
  padding-bottom: 100%;
  overflow: hidden;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
}

/* line 29, resources/assets/styles/utils/_helpers.scss */

.belval-map iframe,
.belval-map object,
.belval-map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  /* line 21, resources/assets/styles/utils/_helpers.scss */

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

/* line 44, resources/assets/styles/utils/_helpers.scss */

.button-slider {
  margin-left: 15px;
}

/* line 48, resources/assets/styles/utils/_helpers.scss */

.helper-covid {
  color: #be0b07;
}

/* line 51, resources/assets/styles/utils/_helpers.scss */

.helper-covid h3 {
  font-size: 14px;
  padding-left: 5px;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 5px;
}

/* line 59, resources/assets/styles/utils/_helpers.scss */

.helper-covid p {
  font-size: 12px;
  font-style: italic;
  max-width: 250px;
}

/** Base */

/** Colors */

/** Transitions */

/** Box shadow */

/** Border Radius */

/** Typography */

/* line 1, resources/assets/styles/base/_default.scss */

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* line 5, resources/assets/styles/base/_default.scss */

body {
  -webkit-font-smoothing: antialiased;
  color: #3b3b3b;
  background-color: #fff;
  font-family: "Poppins", sans-serif;
}

/* line 12, resources/assets/styles/base/_default.scss */

a {
  color: inherit;
}

/* line 16, resources/assets/styles/base/_default.scss */

img {
  max-width: 100%;
}

/* line 20, resources/assets/styles/base/_default.scss */

input:focus,
a:focus {
  outline: none;
}

/* line 1, resources/assets/styles/base/_button.scss */

.button {
  background-color: rgba(255, 255, 255, 0);
  border-radius: 40px;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid #3b3b3b;
  font-weight: 400;
  display: inline-block;
  padding: 10px 23px 10px 23px;
  color: black;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: inherit;
}

/* line 28, resources/assets/styles/utils/_mixins.scss */

.button svg {
  margin-left: 15px;
}

/* line 4, resources/assets/styles/base/_button.scss */

.button:hover {
  background-color: #3b3b3b;
  color: #fff;
  border: 1px solid #3b3b3b;
}

/* line 10, resources/assets/styles/base/_button.scss */

.button-gold {
  border: 1px solid #a77213;
  color: #a77213;
}

/* line 14, resources/assets/styles/base/_button.scss */

.button-gold:hover {
  background-color: #a77213;
  color: #fff;
  border: 1px solid #a77213;
}

/** Components */

/* line 2, resources/assets/styles/components/_video-card.scss */

.video-card__section {
  padding-bottom: 250px;
}

/* line 6, resources/assets/styles/components/_video-card.scss */

.video-card__container {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  padding: 30px;
}

/* line 11, resources/assets/styles/components/_video-card.scss */

.video-card__container .text {
  margin-top: 100px;
}

/* line 16, resources/assets/styles/components/_video-card.scss */

.video-card__title {
  text-align: left;
  font-size: 22px;
  font-weight: 800;
  color: #3b3b3b;
  line-height: 1.5;
  margin: 0 auto;
  position: relative;
}

@media only screen and (max-width: 1215px) {
  /* line 16, resources/assets/styles/components/_video-card.scss */

  .video-card__title {
    font-size: 16px;
  }
}

/* line 30, resources/assets/styles/components/_video-card.scss */

.video-card__subtitle {
  text-transform: uppercase;
  display: block;
  color: #bc7902;
  position: relative;
  padding-bottom: 10px;
  padding-left: 40px;
}

/* line 39, resources/assets/styles/components/_video-card.scss */

.video-card iframe {
  width: 100%;
}

/* line 44, resources/assets/styles/components/_video-card.scss */

.video-card__icon i {
  position: absolute;
  top: -5px;
  left: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #bc7902;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  font-size: 15px;
}

/* line 1, resources/assets/styles/components/_social-links.scss */

.social-links {
  font-size: 18px;
  padding: 0;
  margin-bottom: 10px;
  margin-left: 20px;
}

/* line 7, resources/assets/styles/components/_social-links.scss */

.social-links li {
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  font-size: 16px;
}

/* line 13, resources/assets/styles/components/_social-links.scss */

.social-links li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
}

/* line 25, resources/assets/styles/components/_social-links.scss */

.social-links li a:hover {
  background-color: #aaa;
  border: 1px solid #aaa;
  color: white;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/_social-links.scss */

  .social-links {
    padding-left: 20px;
  }
}

/* line 38, resources/assets/styles/components/_social-links.scss */

.header-socials {
  float: right;
  margin-left: 15px;
}

/* line 42, resources/assets/styles/components/_social-links.scss */

.header-socials li {
  padding: 0;
  margin-right: 5px;
  display: inline-block;
  font-size: 16px;
}

/* line 48, resources/assets/styles/components/_social-links.scss */

.header-socials li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #bc7902;
  background-color: #bc7902;
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

@media only screen and (max-width: 1215px) {
  /* line 38, resources/assets/styles/components/_social-links.scss */

  .header-socials {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 38, resources/assets/styles/components/_social-links.scss */

  .header-socials {
    display: none;
  }
}

/* line 1, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe {
  margin-top: 80px;
}

/* line 4, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__input {
  border-radius: 15px;
  margin-top: 8px;
  border: 0;
  width: 200px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
  padding-left: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* line 15, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 200;
}

/* line 21, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 200;
}

/* line 27, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 200;
}

/* line 33, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 200;
}

/* line 40, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__submit {
  border-radius: 15px;
  width: 26px;
  margin-left: 10px;
  background-color: #aaa;
  border: 0;
  height: 25px;
  color: #fff;
  cursor: pointer;
}

/* line 50, resources/assets/styles/components/_newsletter-subscribe.scss */

.newsletter-subscribe__submit svg {
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/_newsletter-subscribe.scss */

  .newsletter-subscribe {
    margin-top: 20px;
    padding-left: 35px;
  }
}

/* line 1, resources/assets/styles/components/event/_event-item.scss */

.event-item {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  display: block;
  text-decoration: none;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* line 11, resources/assets/styles/components/event/_event-item.scss */

.event-item__concert .event-item__thumbnail-overlay {
  background-color: rgba(190, 11, 7, 0.8);
}

/* line 15, resources/assets/styles/components/event/_event-item.scss */

.event-item__concert .event-item__text {
  border-top: 3px solid #be0b07;
}

/* line 19, resources/assets/styles/components/event/_event-item.scss */

.event-item__concert .event-item__date {
  color: #be0b07;
}

/* line 24, resources/assets/styles/components/event/_event-item.scss */

.event-item__star {
  background-color: #fff;
  color: #bc7902;
  width: 42px;
  height: 42px;
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 1;
  text-align: center;
  font-size: 22px;
}

/* line 36, resources/assets/styles/components/event/_event-item.scss */

.event-item__star i {
  margin-top: 10px;
}

/* line 41, resources/assets/styles/components/event/_event-item.scss */

.event-item__image {
  width: 100%;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -o-transform 1s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 240px;
  border-radius: 5px;
}

/* line 50, resources/assets/styles/components/event/_event-item.scss */

.event-item__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

/* line 55, resources/assets/styles/components/event/_event-item.scss */

.event-item__thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(105, 74, 17, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 67, resources/assets/styles/components/event/_event-item.scss */

.event-item__text {
  border-top: 3px solid #bc7902;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
  background-color: #fff;
  margin-top: -5px;
  padding-right: 15px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* line 80, resources/assets/styles/components/event/_event-item.scss */

.event-item__date {
  color: #bc7902;
  line-height: 1;
  font-weight: 500;
  padding-top: 10px;
}

/* line 87, resources/assets/styles/components/event/_event-item.scss */

.event-item__day {
  display: inline-block;
  font-size: 16px;
}

/* line 92, resources/assets/styles/components/event/_event-item.scss */

.event-item__month {
  font-size: 16px;
  padding-left: 5px;
}

/* line 97, resources/assets/styles/components/event/_event-item.scss */

.event-item__title {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 3px;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  /* line 97, resources/assets/styles/components/event/_event-item.scss */

  .event-item__title {
    margin-top: 10px;
  }
}

/* line 109, resources/assets/styles/components/event/_event-item.scss */

.event-item__subtitle {
  font-size: 10px;
  color: #898989;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
  /* line 109, resources/assets/styles/components/event/_event-item.scss */

  .event-item__subtitle {
    display: none;
  }
}

/* line 120, resources/assets/styles/components/event/_event-item.scss */

.event-item:hover .event-item__thumbnail-overlay {
  opacity: 1;
}

/* line 124, resources/assets/styles/components/event/_event-item.scss */

.event-item:hover .event-item__image {
  -webkit-transform: scale(1.1) translate3d(0, 0, 0);
          transform: scale(1.1) translate3d(0, 0, 0);
}

/* line 130, resources/assets/styles/components/event/_event-item.scss */

.event-items {
  padding-bottom: 100px;
  position: relative;
}

/* line 2, resources/assets/styles/components/event/_events-slider.scss */

.events-slider {
  position: relative;
  max-width: 1100px;
}

@media screen and (max-width: 768px) {
  /* line 2, resources/assets/styles/components/event/_events-slider.scss */

  .events-slider {
    overflow: hidden;
  }
}

@media screen and (max-width: 1345px) {
  /* line 2, resources/assets/styles/components/event/_events-slider.scss */

  .events-slider {
    max-width: 1150px;
  }
}

/* line 14, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-slide {
  padding: 0 7px;
  width: 300px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 20, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-list {
  overflow: inherit;
}

@media screen and (max-width: 768px) {
  /* line 24, resources/assets/styles/components/event/_events-slider.scss */

  .events-slider .text-center {
    text-align: left;
  }
}

/* line 31, resources/assets/styles/components/event/_events-slider.scss */

.events-slider__rockhal .slick-arrow {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #3b3b3b !important;
  color: #3b3b3b;
}

/* line 36, resources/assets/styles/components/event/_events-slider.scss */

.events-slider__rockhal .slick-arrow.slick-prev,
.events-slider__rockhal .slick-arrow.slick-next {
  color: #3b3b3b;
}

/* line 41, resources/assets/styles/components/event/_events-slider.scss */

.events-slider__rockhal .slick-arrow:hover {
  background-color: #3b3b3b !important;
  border: 1px solid #3b3b3b !important;
  color: #fff;
}

/* line 49, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #bc7902;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #bc7902;
  cursor: pointer;
}

/* line 52, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-arrow.slick-prev,
.events-slider .slick-arrow.slick-next {
  position: absolute;
  bottom: -50px;
}

@media screen and (max-width: 768px) {
  /* line 52, resources/assets/styles/components/event/_events-slider.scss */

  .events-slider .slick-arrow.slick-prev,
  .events-slider .slick-arrow.slick-next {
    display: none !important;
  }
}

/* line 63, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-arrow.slick-prev {
  right: -50px;
}

/* line 67, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-arrow.slick-next {
  right: -100px;
}

/* line 71, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-arrow:hover {
  background-color: #bc7902;
  border: 1px solid #bc7902;
  color: #fff;
  bottom: -45px;
  -webkit-box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
          box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
}

/* line 80, resources/assets/styles/components/event/_events-slider.scss */

.events-slider .slick-current {
  -webkit-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
}

/* line 1, resources/assets/styles/components/news/_news-item.scss */

.news-item {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  display: block;
  text-decoration: none;
  text-align: center;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 255px;
  margin-left: 15px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* line 16, resources/assets/styles/components/news/_news-item.scss */

.news-item::before {
  content: "";
  display: block;
  height: 10px;
  background: #bc7902;
  width: 90%;
  position: absolute;
  top: -10px;
  left: 50%;
  -webkit-transform: translate(-50.5%, 0);
       -o-transform: translate(-50.5%, 0);
          transform: translate(-50.5%, 0);
}

/* line 28, resources/assets/styles/components/news/_news-item.scss */

.news-item__image {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

/* line 34, resources/assets/styles/components/news/_news-item.scss */

.news-item__image img {
  display: inline-block;
}

/* line 40, resources/assets/styles/components/news/_news-item.scss */

.news-item__text {
  position: absolute;
  bottom: 15px;
  -webkit-transform: translate(-50.5%, 0);
       -o-transform: translate(-50.5%, 0);
          transform: translate(-50.5%, 0);
  left: 50%;
}

/* line 47, resources/assets/styles/components/news/_news-item.scss */

.news-item__category,
.news-item__title {
  color: #bc7902;
  text-transform: uppercase;
}

/* line 53, resources/assets/styles/components/news/_news-item.scss */

.news-item__category {
  padding-top: 15px;
  display: block;
  font-size: 8px;
  font-weight: 500;
}

/* line 60, resources/assets/styles/components/news/_news-item.scss */

.news-item__title {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  padding-left: 50px;
  padding-right: 50px;
  line-height: 1.1;
  padding-top: 5px;
}

/* line 70, resources/assets/styles/components/news/_news-item.scss */

.news-item__subtitle {
  background-color: #fff;
  text-transform: uppercase;
  color: #bc7902;
  padding-top: 15px;
  padding-bottom: 15px;
  margin-right: 15px;
  position: absolute;
  width: 85%;
  z-index: -1;
  font-size: 11px;
  left: 50%;
  bottom: -46px;
  -webkit-transform: translate(-50.5%, 0);
       -o-transform: translate(-50.5%, 0);
          transform: translate(-50.5%, 0);
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  display: none;
}

/* line 88, resources/assets/styles/components/news/_news-item.scss */

.news-item:hover {
  background-color: #bc7902;
}

/* line 91, resources/assets/styles/components/news/_news-item.scss */

.news-item:hover .news-item__title,
.news-item:hover .news-item__category {
  color: #fff;
}

/* line 96, resources/assets/styles/components/news/_news-item.scss */

.news-item:hover::before {
  background: rgba(255, 255, 255, 0);
}

/* line 102, resources/assets/styles/components/news/_news-item.scss */

.news-items {
  padding-top: 100px;
  position: relative;
}

/* line 1, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider {
  position: relative;
  max-width: 1500px;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/news/_news-slider.scss */

  .spotted-slider {
    overflow: hidden;
  }
}

@media screen and (max-width: 1345px) {
  /* line 1, resources/assets/styles/components/news/_news-slider.scss */

  .spotted-slider {
    max-width: 1150px;
  }
}

/* line 14, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .slick-slide {
  padding: 0 7px;
  width: 300px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 20, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #bc7902;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #bc7902;
  cursor: pointer;
}

/* line 23, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .slick-arrow.slick-prev,
.spotted-slider .slick-arrow.slick-next {
  position: absolute;
  bottom: -80px;
  z-index: 2;
}

/* line 30, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .slick-arrow.slick-prev {
  right: 165px;
}

/* line 34, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .slick-arrow.slick-next {
  right: 115px;
}

/* line 38, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .slick-arrow:hover {
  background-color: #bc7902;
  border: 1px solid #bc7902;
  color: #fff;
  bottom: -75px;
  -webkit-box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
          box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
}

@media screen and (max-width: 768px) {
  /* line 20, resources/assets/styles/components/news/_news-slider.scss */

  .spotted-slider .slick-arrow {
    display: none !important;
  }
}

/* line 52, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .news-item:hover {
  background-color: #bc7902;
}

/* line 55, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .news-item:hover__subtitle {
  display: block;
}

/* line 59, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .news-item:hover__title,
.spotted-slider .news-item:hover__category {
  color: #fff;
}

/* line 64, resources/assets/styles/components/news/_news-slider.scss */

.spotted-slider .news-item:hover::before {
  background: rgba(255, 255, 255, 0);
}

/* Refactoring - news slider for news & events page */

/* line 73, resources/assets/styles/components/news/_news-slider.scss */

.news-slider .slick-arrow {
  bottom: -95px !important;
}

/* line 77, resources/assets/styles/components/news/_news-slider.scss */

.news-slider .slick-next {
  right: -100px !important;
}

/* line 81, resources/assets/styles/components/news/_news-slider.scss */

.news-slider .slick-prev {
  right: -50px !important;
}

/* line 90, resources/assets/styles/components/news/_news-slider.scss */

.news-slider .slick-list {
  overflow: inherit;
}

/* line 95, resources/assets/styles/components/news/_news-slider.scss */

.news-slide img {
  width: 200px;
}

/* line 1, resources/assets/styles/components/news/_news-profile.scss */

.news-profile {
  margin-top: 50px;
  margin-bottom: 100px;
}

/* line 5, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__title {
  margin-bottom: 50px;
  max-width: 500px;
  position: relative;
}

/* line 10, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__title span {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #525252;
}

/* line 17, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__title h1 {
  text-transform: uppercase;
  color: #bc7902;
  font-size: 65px;
  font-weight: 700;
  margin-top: 0;
  padding-top: 15px;
  line-height: 1;
}

/* line 27, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__title::after {
  content: "";
  display: block;
  width: 85px;
  height: 5px;
  background: #bc7902;
}

/* line 36, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__date {
  color: #bc7902;
  font-size: 14px;
  font-weight: 500;
  padding-top: 30px;
  padding-bottom: 30px;
}

/* line 43, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__date svg {
  margin-right: 10px;
}

/* line 48, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__content {
  font-size: 15px;
  color: #707070;
  padding-right: 120px;
}

/* line 53, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__content blockquote {
  color: #bc7902;
  font-weight: 600;
  font-size: 26px;
  border-left: 3px solid #bc7902;
  padding-left: 25px;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 516px;
}

/* line 63, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__content blockquote p {
  line-height: 1.8;
}

/* line 68, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__content p {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  /* line 48, resources/assets/styles/components/news/_news-profile.scss */

  .news-profile__content {
    padding-right: 0;
  }
}

/* line 78, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__related h2 {
  color: #bc7902;
  font-weight: 500;
  margin-top: 45px;
  font-size: 22px;
  margin-bottom: 35px;
  margin-left: 10px;
}

/* line 87, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__related .news-item {
  margin-bottom: 0;
  min-height: 250px;
  margin-left: 0;
}

/* line 92, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__related .news-item::before {
  display: none;
}

/* line 96, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__related .news-item__title {
  padding-bottom: 20px;
}

/* line 100, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__related .news-item__image {
  width: 150px;
}

/* line 103, resources/assets/styles/components/news/_news-profile.scss */

.news-profile__related .news-item__image img {
  width: 150px;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/news/_news-profile.scss */

  .news-profile {
    padding-left: 35px;
    padding-right: 35px;
  }
}

/* line 1, resources/assets/styles/components/shop/_shop-item.scss */

.shop-item {
  margin: 10px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  display: block;
  padding: 25px;
  text-align: center;
  min-height: 300px;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  -o-transition: -o-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s, -o-transform 0.3s;
}

/* line 14, resources/assets/styles/components/shop/_shop-item.scss */

.shop-item__logo {
  position: absolute;
  -webkit-transform: translate(-50.5%, -50.5%);
       -o-transform: translate(-50.5%, -50.5%);
          transform: translate(-50.5%, -50.5%);
  top: 50%;
  left: 50%;
}

/* line 20, resources/assets/styles/components/shop/_shop-item.scss */

.shop-item__logo img {
  width: 120px;
}

/* line 25, resources/assets/styles/components/shop/_shop-item.scss */

.shop-item:hover {
  -webkit-transform: scale(1.05);
       -o-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
}

/* line 31, resources/assets/styles/components/shop/_shop-item.scss */

.shop-items {
  padding-bottom: 100px;
  position: relative;
}

/* line 1, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery {
  width: 100%;
  margin-top: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/shop/_shop-gallery.scss */

  .shop-gallery {
    height: 350px;
    margin-top: 0;
  }
}

/* line 12, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .image {
  background-size: cover;
  background-position: center;
  height: 480px;
  width: 100%;
}

/* line 19, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-container {
  width: 100%;
  height: 100%;
}

/* line 24, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #3273dc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-position: center;
  background-size: cover;
}

/* line 35, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-button-next,
.shop-gallery .swiper-button-prev {
  font-size: 18px;
  background: white;
  width: 40px;
  height: 40px;
  color: black;
  bottom: 1rem;
  top: initial;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 47, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-button-next:hover,
.shop-gallery .swiper-button-prev:hover {
  background: #bc7902;
  color: white;
}

/* line 53, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-button-prev {
  right: 5rem;
  left: initial;
}

/* line 57, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-button-prev::after {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 53, resources/assets/styles/components/shop/_shop-gallery.scss */

  .shop-gallery .swiper-button-prev {
    left: 1rem;
  }
}

/* line 66, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-button-next {
  right: 2rem;
  left: initial;
}

/* line 70, resources/assets/styles/components/shop/_shop-gallery.scss */

.shop-gallery .swiper-button-next::after {
  display: none;
}

@media screen and (max-width: 768px) {
  /* line 66, resources/assets/styles/components/shop/_shop-gallery.scss */

  .shop-gallery .swiper-button-next {
    right: 1rem;
  }
}

/* line 1, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile {
  margin-top: 100px;
  padding-bottom: 70px;
  padding-left: 45px;
  padding-right: 45px;
  margin-bottom: 50px;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
}

/* line 10, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile h2 {
  font-size: 12px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
}

/* line 17, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile h2::after {
  content: " ";
  position: absolute;
  display: block;
  height: 1px;
  background: black;
  width: 100%;
  top: 28px;
}

@media screen and (max-width: 768px) {
  /* line 10, resources/assets/styles/components/shop/_shop-profile.scss */

  .shop-profile h2 {
    display: none;
  }
}

/* line 32, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__logo {
  width: 150px;
  padding-top: 20px;
  padding-bottom: 35px;
}

/* line 38, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__description {
  padding-right: 70px;
  color: #3b3b3b;
  line-height: 1.8;
  font-size: 12px;
}

/* line 44, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__description p {
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  /* line 38, resources/assets/styles/components/shop/_shop-profile.scss */

  .shop-profile__description {
    padding-right: 0;
  }
}

/* line 53, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__informations {
  margin-top: 212px;
  color: #707070;
}

@media screen and (max-width: 768px) {
  /* line 53, resources/assets/styles/components/shop/_shop-profile.scss */

  .shop-profile__informations {
    margin-top: 20px;
  }
}

/* line 62, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__opening {
  text-transform: uppercase;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 12px;
}

/* line 68, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__opening h4 {
  font-size: 12px;
  margin-bottom: 2px;
  font-weight: 600;
  color: #707070;
}

/* line 75, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__opening p {
  display: block;
  font-weight: 400;
  font-size: 15px;
}

/* line 82, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__phone {
  font-size: 12px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 86, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__phone i {
  color: #bc7902;
  margin-right: 5px;
}

/* line 91, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__phone:hover {
  color: #bc7902;
}

/* line 96, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__website {
  color: #a77213;
  font-weight: 600;
  margin-top: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
}

/* line 103, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__website:hover {
  color: black;
}

/* line 108, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__socials {
  margin-left: 0;
  margin-top: 25px;
}

/* line 112, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__socials li {
  padding: 0;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-size: 16px;
}

/* line 119, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__socials li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #bc7902;
  background-color: #bc7902;
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

/* line 131, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__socials li a:hover {
  background-color: #fff;
  color: #bc7902;
  border: 1px solid #bc7902;
}

/* line 140, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__new {
  padding-top: 20px;
}

/* line 143, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__new::before {
  content: " ";
  display: block;
  height: 1px;
  background: #525252;
  width: 100%;
}

/* line 151, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__new h5 {
  font-size: 18px;
  padding-top: 30px;
  font-weight: 700;
  padding-bottom: 10px;
  text-transform: uppercase;
}

/* line 159, resources/assets/styles/components/shop/_shop-profile.scss */

.shop-profile__new p {
  font-weight: 400;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/shop/_shop-profile.scss */

  .shop-profile {
    margin-left: 15px;
    margin-right: 15px;
    padding-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* line 1, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter {
  margin-top: 115px;
}

/* line 5, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter input[type="search"]::-webkit-input-placeholder {
  color: rgba(112, 112, 112, 0.3);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 12, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter input[type="search"]:-ms-input-placeholder {
  color: rgba(112, 112, 112, 0.3);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 19, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter input[type="search"]::-moz-placeholder {
  color: rgba(112, 112, 112, 0.3);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 26, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter input[type="search"]:-moz-placeholder {
  color: rgba(112, 112, 112, 0.3);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 34, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__search {
  position: relative;
  margin-right: 40px;
}

/* line 38, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__search svg {
  left: 10px;
  top: 10px;
  font-size: 12px;
  position: absolute;
  z-index: 2;
}

/* line 46, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__search input {
  width: 100%;
  padding-left: 35px;
}

@media screen and (max-width: 768px) {
  /* line 34, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__search {
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 120px;
  }
}

/* line 58, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items {
  padding-top: 35px;
  padding-bottom: 50px;
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  /* line 63, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items li:first-child a {
    border-top: 1px solid #cbcbcb;
  }
}

/* line 69, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li {
  list-style-type: none;
  margin-top: 28px;
  margin-bottom: 28px;
}

/* line 75, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li.selected a {
  color: #bc7902;
  padding-left: 35px;
  font-weight: 600;
}

/* line 80, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li.selected a::after {
  width: 22px;
}

/* line 86, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a {
  color: #707070;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 12px;
  position: relative;
  padding-left: 0;
  font-weight: 500;
  text-transform: uppercase;
}

/* line 95, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  background: #bc7902;
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
  top: 8px;
}

@media screen and (max-width: 768px) {
  /* line 95, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items li a::after {
    display: none;
  }
}

/* line 110, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a:hover,
.shops-filter__items li a:active {
  color: #bc7902;
  padding-left: 35px;
  font-weight: 600;
}

/* line 118, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a:hover::after {
  width: 22px;
}

@media screen and (max-width: 768px) {
  /* line 117, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items li a:hover {
    padding-left: 0;
  }
}

/* line 127, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a.active {
  font-weight: 600;
}

/* line 130, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a.active::after {
  width: 22px;
}

/* line 135, resources/assets/styles/components/shop/_shops-filter.scss */

.shops-filter__items li a i {
  display: none;
  color: #a77213;
  float: left;
  margin-top: 4px;
  margin-right: 10px;
  font-size: 11px;
}

@media screen and (max-width: 768px) {
  /* line 86, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items li a {
    border-bottom: 1px solid #cbcbcb;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
  }

  /* line 150, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items li a .display-icon {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  /* line 69, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items li {
    text-align: left;
    padding-left: 35px;
    padding-right: 35px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  /* line 166, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter__items .hidden {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 172, resources/assets/styles/components/shop/_shops-filter.scss */

  .shops-filter .button {
    margin-left: 35px;
  }
}

/* line 1, resources/assets/styles/components/_food-item.scss */

.food-item {
  border-radius: 5px;
  display: block;
  text-decoration: none;
  margin-bottom: 80px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* line 9, resources/assets/styles/components/_food-item.scss */

.food-item__logo {
  position: absolute;
  background-color: #fff;
  border-radius: 5px;
  border-top: 3px solid black;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  z-index: 1;
  left: 50%;
  -webkit-transform: translate(-50.5%, 0);
       -o-transform: translate(-50.5%, 0);
          transform: translate(-50.5%, 0);
  margin-top: -35px;
  padding: 10px;
}

/* line 21, resources/assets/styles/components/_food-item.scss */

.food-item__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 110px;
  height: 90px;
}

/* line 28, resources/assets/styles/components/_food-item.scss */

.food-item__image {
  width: 100%;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -o-transform 1s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 50%;
     object-position: 0 50%;
  height: 400px;
  display: block;
  border-radius: 5px;
}

/* line 38, resources/assets/styles/components/_food-item.scss */

.food-item__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

/* line 43, resources/assets/styles/components/_food-item.scss */

.food-item__thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 55, resources/assets/styles/components/_food-item.scss */

.food-item__text {
  position: relative;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  width: 80%;
  padding-top: 40px;
  padding-bottom: 40px;
  text-transform: uppercase;
  text-align: center;
  left: 50%;
  -webkit-transform: translate(-50.5%, 0);
       -o-transform: translate(-50.5%, 0);
          transform: translate(-50.5%, 0);
  bottom: 0;
}

/* line 71, resources/assets/styles/components/_food-item.scss */

.food-item__title {
  color: #707070;
  font-size: 13px;
  padding-bottom: 10px;
  font-weight: 500;
}

/* line 78, resources/assets/styles/components/_food-item.scss */

.food-item__price {
  color: #00928c;
  font-size: 12px;
  font-weight: bold;
}

/* line 85, resources/assets/styles/components/_food-item.scss */

.food-item:hover .food-item__thumbnail-overlay {
  opacity: 1;
}

/* line 89, resources/assets/styles/components/_food-item.scss */

.food-item:hover .food-item__image {
  -webkit-transform: scale(1.1) translate3d(0, 0, 0);
          transform: scale(1.1) translate3d(0, 0, 0);
}

/* line 95, resources/assets/styles/components/_food-item.scss */

.food-items {
  margin-top: 50px;
}

/* line 1, resources/assets/styles/components/_search-container.scss */

.search-container {
  position: absolute;
  width: 100%;
  z-index: 10;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 80px;
}

/* line 15, resources/assets/styles/components/_search-container.scss */

.search-container.active {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

/* line 21, resources/assets/styles/components/_search-container.scss */

.search-container__form {
  background-color: #fff;
  padding-top: 55px;
  padding-left: 35px;
  padding-right: 50px;
  padding-bottom: 50px;
}

/* line 29, resources/assets/styles/components/_search-container.scss */

.search-container__close {
  position: absolute;
  top: 60px;
  right: 30px;
}

/* line 34, resources/assets/styles/components/_search-container.scss */

.search-container__close svg {
  font-size: 22px;
}

/* line 1, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* line 6, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery .slider img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 50%;
     object-position: 0 50%;
  height: 450px;
  width: 100%;
}

/* line 14, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
  z-index: 1;
  cursor: pointer;
}

/* line 28, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery .slick-arrow:hover {
  background-color: black;
  border: 1px solid black;
  color: #fff;
}

@media screen and (max-width: 768px) {
  /* line 14, resources/assets/styles/components/_post-gallery.scss */

  .post-content__gallery .slick-arrow {
    border: 1px solid white;
  }
}

/* line 39, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery .slick-prev,
.post-content__gallery .slick-next {
  position: absolute;
  bottom: 25px;
}

@media screen and (max-width: 768px) {
  /* line 39, resources/assets/styles/components/_post-gallery.scss */

  .post-content__gallery .slick-prev,
  .post-content__gallery .slick-next {
    bottom: 35px;
  }
}

/* line 49, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery .slick-prev {
  right: 75px;
}

/* line 53, resources/assets/styles/components/_post-gallery.scss */

.post-content__gallery .slick-next {
  position: absolute;
  right: 25px;
}

/* line 1, resources/assets/styles/components/_contact-form.scss */

.contact-form {
  margin-top: 60px;
}

/* line 4, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="text"],
.contact-form input[type="email"] {
  padding-bottom: 15px;
  border: 0;
  border-bottom: 1px solid black;
  width: 100%;
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  background: white;
  color: #525252;
}

/* line 17, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="text"]::-webkit-input-placeholder,
.contact-form input[type="email"]::-webkit-input-placeholder {
  color: #525252;
  font-size: 15px;
}

/* line 22, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="text"]:-ms-input-placeholder,
.contact-form input[type="email"]:-ms-input-placeholder {
  color: #525252;
  font-size: 15px;
}

/* line 27, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="text"]::-moz-placeholder,
.contact-form input[type="email"]::-moz-placeholder {
  color: #525252;
  font-size: 15px;
}

/* line 32, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="text"]:-moz-placeholder,
.contact-form input[type="email"]:-moz-placeholder {
  color: white;
  font-size: 15px;
}

/* line 37, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus {
  border-bottom: 1px solid black;
  color: #525252;
  font-size: 15px;
  text-transform: inherit;
}

/* line 45, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="submit"] {
  background-color: #a77213;
  border: 2px solid #a77213;
  color: white;
  outline: none;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 25px;
  font-weight: 500;
  margin-right: 10px;
  margin-top: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  width: 25%;
  text-transform: uppercase;
  font-size: 10px;
  cursor: pointer;
}

/* line 62, resources/assets/styles/components/_contact-form.scss */

.contact-form input[type="submit"]:hover {
  background-color: white;
  color: #a77213;
  border: 2px solid #a77213;
}

/* line 1, resources/assets/styles/components/_search-form.scss */

.search-form {
  margin-top: 15px;
}

/* line 4, resources/assets/styles/components/_search-form.scss */

.search-form__label {
  position: relative;
}

/* line 8, resources/assets/styles/components/_search-form.scss */

.search-form__input {
  color: black;
  border-radius: 15px;
  border: 0;
  width: 200px;
  background-color: #f7f7f7;
  height: 35px;
  padding-left: 40px;
  padding-right: 1em;
  font-size: 10px;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 1;
  position: relative;
}

/* line 24, resources/assets/styles/components/_search-form.scss */

.search-form__input input[type="search"]::-webkit-input-placeholder {
  color: rgba(112, 112, 112, 0.5);
  font-size: 10px;
  font-weight: 200;
  text-transform: uppercase;
}

/* line 31, resources/assets/styles/components/_search-form.scss */

.search-form__input input[type="search"]:-ms-input-placeholder {
  color: rgba(112, 112, 112, 0.5);
  font-size: 10px;
  font-weight: 200;
  text-transform: uppercase;
}

/* line 38, resources/assets/styles/components/_search-form.scss */

.search-form__input input[type="search"]::-moz-placeholder {
  color: rgba(112, 112, 112, 0.5);
  font-size: 10px;
  font-weight: 200;
  text-transform: uppercase;
}

/* line 45, resources/assets/styles/components/_search-form.scss */

.search-form__input input[type="search"]:-moz-placeholder {
  color: rgba(112, 112, 112, 0.5);
  font-size: 10px;
  font-weight: 200;
  text-transform: uppercase;
}

@media screen and (max-width: 768px) {
  /* line 8, resources/assets/styles/components/_search-form.scss */

  .search-form__input {
    width: 100%;
  }
}

/* line 58, resources/assets/styles/components/_search-form.scss */

.search-form__icon {
  top: 5px;
  left: 12px;
  color: #707070;
  position: absolute;
  z-index: 2;
  font-size: 14px;
}

/* line 67, resources/assets/styles/components/_search-form.scss */

.search-form__submit {
  display: none;
}

@media only screen and (max-width: 1215px) {
  /* line 1, resources/assets/styles/components/_search-form.scss */

  .search-form {
    display: none;
  }
}

/* line 76, resources/assets/styles/components/_search-form.scss */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* line 1, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs {
  width: 100%;
  display: inline-block;
  margin-top: 200px;
}

/* line 7, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links li {
  margin: 0 5px;
  float: left;
  list-style: none;
}

/* line 12, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links li a {
  margin-right: 15px;
  display: inline-block;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #525252;
  -webkit-transition: all linear 0.15s;
  -o-transition: all linear 0.15s;
  transition: all linear 0.15s;
  position: relative;
  padding-bottom: 5px;
}

/* line 23, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links li a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #bc7902;
  -webkit-transform-origin: right top;
       -o-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
       -o-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: color 0.1s, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: color 0.1s, -o-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -o-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 37, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links li a:hover {
  color: #bc7902;
  text-decoration: none;
}

/* line 41, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links li a:hover::before {
  -webkit-transform-origin: left top;
       -o-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
       -o-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* line 49, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links::after {
  display: block;
  clear: both;
  content: "";
}

/* line 55, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links .active {
  display: block;
}

/* line 58, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links .active a {
  color: #bc7902;
  opacity: 1;
}

/* line 62, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-links .active a::before {
  -webkit-transform-origin: left top;
       -o-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
       -o-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* line 70, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-content {
  padding-top: 50px;
  padding-right: 100px;
  font-size: 14px;
}

/* line 75, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-content div:first-child {
  display: block;
}

/* line 79, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab-content a {
  color: #bc7902;
}

@media screen and (max-width: 768px) {
  /* line 70, resources/assets/styles/components/_acces-tab.scss */

  .acces-tabs .tab-content {
    padding-right: 0;
  }
}

/* line 88, resources/assets/styles/components/_acces-tab.scss */

.acces-tabs .tab {
  display: none;
}

/* line 1, resources/assets/styles/components/_title-background.scss */

.title-background {
  position: absolute;
}

/* line 4, resources/assets/styles/components/_title-background.scss */

.title-background__top {
  top: 0;
}

/* line 8, resources/assets/styles/components/_title-background.scss */

.title-background__right {
  right: 0;
}

/* line 11, resources/assets/styles/components/_title-background.scss */

.title-background__right p {
  width: 600px;
}

/* line 16, resources/assets/styles/components/_title-background.scss */

.title-background__bottom {
  bottom: 80px;
}

/* line 20, resources/assets/styles/components/_title-background.scss */

.title-background__left {
  left: 0;
  top: 0;
}

/* line 25, resources/assets/styles/components/_title-background.scss */

.title-background p {
  color: rgba(208, 208, 208, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  font-size: 201px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/_title-background.scss */

  .title-background {
    display: none;
  }
}

/* line 40, resources/assets/styles/components/_title-background.scss */

.section__front .title-background {
  top: 45px;
  left: -15%;
}

/* line 47, resources/assets/styles/components/_title-background.scss */

.quick-link .title-background {
  z-index: 1;
}

/* line 1, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules {
  margin-left: 30px;
}

/* line 4, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules p {
  color: #525252;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  margin-top: 15px;
  width: 210px;
  cursor: pointer;
}

/* line 14, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules p svg:first-child {
  margin-right: 5px;
  color: #bc7902;
}

/* line 19, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules p .fa-chevron-down {
  font-size: 12px;
  color: #bc7902;
  margin-left: 10px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transform: rotate(0);
       -o-transform: rotate(0);
          transform: rotate(0);
  cursor: pointer;
}

/* line 28, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules p span {
  padding-left: 5px;
}

@media screen and (max-width: 768px) {
  /* line 4, resources/assets/styles/components/_schedules-bpl.scss */

  .header-schedules p {
    margin-top: 0;
  }
}

/* line 37, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules p:hover .fa-chevron-down {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* line 43, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules__weeks {
  padding: 48px 64px;
  position: absolute;
  left: -18px;
  background-color: #fff;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
}

/* line 53, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules__weeks .schedule-item {
  padding-left: 20px;
  border-left: 1px solid black;
  margin-bottom: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 60, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules__weeks .schedule-item:last-child {
  margin-bottom: 0;
}

/* line 64, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules__weeks .schedule-item__day {
  font-size: 20px;
  font-weight: 600;
  color: #bc7902;
  display: block;
}

/* line 71, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules__weeks .schedule-item__hours {
  font-size: 12px;
  font-weight: 600;
  color: #a3a3a3;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/_schedules-bpl.scss */

  .header-schedules {
    width: 100%;
    margin-top: 0;
    padding-top: 15px;
    text-align: left;
    padding-left: 20px;
  }
}

/* line 88, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules.open .header-schedules__weeks {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: initial;
}

/* line 96, resources/assets/styles/components/_schedules-bpl.scss */

.header-schedules.open .fa-chevron-down {
  -webkit-transform: rotate(-90deg);
       -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/components/_schedules-bpl.scss */

  .header-schedules {
    margin-left: 0;
  }
}

/* Background color change for schedules mobile */

@media screen and (max-width: 768px) {
  /* line 107, resources/assets/styles/components/_schedules-bpl.scss */

  .background-grey-mobile {
    background-color: #f4f4f4;
  }
}

/* line 3, resources/assets/styles/components/_faq.scss */

.faq {
  margin-top: 70px;
}

/* line 6, resources/assets/styles/components/_faq.scss */

.faq-item {
  border-bottom: 1px solid black;
}

/* line 9, resources/assets/styles/components/_faq.scss */

.faq-item li {
  list-style-type: none;
}

/* line 13, resources/assets/styles/components/_faq.scss */

.faq-item__title {
  position: relative;
  padding-top: 18px;
  padding-bottom: 18px;
  padding-right: 32px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: #525252;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

/* line 25, resources/assets/styles/components/_faq.scss */

.faq-item__title:hover {
  color: #bc7902;
}

/* line 29, resources/assets/styles/components/_faq.scss */

.faq-item__title.faq-open {
  color: #bc7902;
}

/* line 32, resources/assets/styles/components/_faq.scss */

.faq-item__title.faq-open .faq-item__arrow {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 38, resources/assets/styles/components/_faq.scss */

.faq-item__arrow {
  position: absolute;
  top: 26px;
  right: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #bc7902;
}

/* line 46, resources/assets/styles/components/_faq.scss */

.faq-item__body {
  display: none;
  background-color: white;
  font-size: 12px;
  color: #7e7e7e;
  font-weight: 100;
  padding-right: 30px;
  padding-top: 35px;
  padding-bottom: 35px;
  line-height: 2;
}

/* line 1, resources/assets/styles/components/_business-item.scss */

.business-item {
  border-left: 2px solid #bc7902;
  padding-left: 24px;
}

/* line 5, resources/assets/styles/components/_business-item.scss */

.business-item h2 {
  font-weight: 600;
  font-size: 20px;
  padding-bottom: 22px;
  color: #525252;
}

/* line 12, resources/assets/styles/components/_business-item.scss */

.business-item p {
  font-size: 14px;
  color: #3b3b3b;
}

/* line 18, resources/assets/styles/components/_business-item.scss */

.business-items {
  margin-top: 90px;
}

/* line 21, resources/assets/styles/components/_business-item.scss */

.business-items__intro {
  font-size: 14px;
  color: #3b3b3b;
  padding-bottom: 90px;
}

@media screen and (max-width: 768px) {
  /* line 21, resources/assets/styles/components/_business-item.scss */

  .business-items__intro {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* line 1, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  display: block;
  text-decoration: none;
  margin-bottom: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}

/* line 10, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item__image {
  width: 100%;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  -o-transition: -o-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s, -o-transform 1s;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  height: 240px;
  border-radius: 5px;
}

/* line 19, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

/* line 24, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item__thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 161, 190, 0.8);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 36, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item__text {
  position: relative;
  border-top: 3px solid #00a1be;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fff;
  margin-top: -5px;
  height: 70px;
}

/* line 48, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item__title {
  width: 80%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
  position: absolute;
  top: 36%;
  font-size: 15px;
  color: #3b3b3b;
  line-height: 1;
  font-weight: 500;
}

/* line 60, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item:hover .movie-item__thumbnail-overlay {
  opacity: 1;
}

/* line 64, resources/assets/styles/components/movie/_movie-item.scss */

.movie-item:hover .movie-item__image {
  -webkit-transform: scale(1.1) translate3d(0, 0, 0);
          transform: scale(1.1) translate3d(0, 0, 0);
}

/* line 1, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider {
  position: relative;
  max-width: 1500px;
}

@media screen and (max-width: 1345px) {
  /* line 1, resources/assets/styles/components/movie/_movie-slider.scss */

  .movie-slider {
    max-width: 1150px;
  }
}

/* line 9, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider .slick-slide {
  padding: 0 7px;
  width: 300px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 15, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #3b3b3b;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #3b3b3b;
  cursor: pointer;
}

/* line 28, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider .slick-arrow.slick-prev,
.movie-slider .slick-arrow.slick-next {
  position: absolute;
  bottom: -30px;
  color: #3b3b3b;
}

/* line 35, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider .slick-arrow.slick-prev {
  right: 100px;
}

/* line 39, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider .slick-arrow.slick-next {
  right: 50px;
}

/* line 43, resources/assets/styles/components/movie/_movie-slider.scss */

.movie-slider .slick-arrow:hover {
  background-color: #3b3b3b;
  border: 1px solid #3b3b3b;
  color: #fff;
  bottom: -25px;
  -webkit-box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
          box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
}

@media screen and (max-width: 768px) {
  /* line 15, resources/assets/styles/components/movie/_movie-slider.scss */

  .movie-slider .slick-arrow {
    display: none;
  }
}

/** Layout */

/* line 1, resources/assets/styles/layout/_header.scss */

.header {
  background-color: #fff;
}

/* line 4, resources/assets/styles/layout/_header.scss */

.header-search {
  position: absolute;
  right: 90px;
  top: 25px;
  display: none;
}

@media only screen and (max-width: 1024px) {
  /* line 4, resources/assets/styles/layout/_header.scss */

  .header-search {
    display: block;
  }
}

/* line 15, resources/assets/styles/layout/_header.scss */

.header .search-form {
  text-align: right;
}

/* line 18, resources/assets/styles/layout/_header.scss */

.header .search-form svg {
  font-size: 12px;
  margin-top: 2px;
  margin-left: 5px;
  position: absolute;
  z-index: 2;
}

/* line 27, resources/assets/styles/layout/_header.scss */

.header-primary {
  padding: 40px 0 20px 0;
}

@media screen and (max-width: 768px) {
  /* line 27, resources/assets/styles/layout/_header.scss */

  .header-primary {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 1024px) {
  /* line 27, resources/assets/styles/layout/_header.scss */

  .header-primary {
    padding-bottom: 0;
  }
}

/* line 40, resources/assets/styles/layout/_header.scss */

.header-branding {
  text-align: right;
  position: relative;
}

@media only screen and (max-width: 1024px) {
  /* line 40, resources/assets/styles/layout/_header.scss */

  .header-branding {
    text-align: right;
    padding-right: 135px;
  }
}

@media screen and (max-width: 768px) {
  /* line 40, resources/assets/styles/layout/_header.scss */

  .header-branding {
    text-align: left;
    padding-left: 30px;
    padding-top: 10px;
  }

  /* line 54, resources/assets/styles/layout/_header.scss */

  .header-branding img {
    width: 45%;
  }
}

/* line 60, resources/assets/styles/layout/_header.scss */

.header-secondary {
  padding: 10px 0 20px 0;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 66, resources/assets/styles/layout/_header.scss */

.header-secondary .reduce-logo {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media only screen and (max-width: 1025px) {
  /* line 66, resources/assets/styles/layout/_header.scss */

  .header-secondary .reduce-logo {
    display: none;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 60, resources/assets/styles/layout/_header.scss */

  .header-secondary {
    padding: 0 0 0 0;
  }
}

@media screen and (min-width: 1024px) {
  /* line 81, resources/assets/styles/layout/_header.scss */

  .header-secondary .visible {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (min-width: 1024px) {
  /* line 88, resources/assets/styles/layout/_header.scss */

  .header-secondary.fixed {
    background-color: white;
    width: 100%;
    position: fixed;
    top: 0;
    text-align: right;
    -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
    padding-top: 20px;
    z-index: 3;
  }

  /* line 99, resources/assets/styles/layout/_header.scss */

  .header-secondary .reduce-logo {
    position: absolute;
    top: 6px;
    left: 120px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1295px) {
  /* line 99, resources/assets/styles/layout/_header.scss */

  .header-secondary .reduce-logo {
    left: 10px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1080px) {
  /* line 99, resources/assets/styles/layout/_header.scss */

  .header-secondary .reduce-logo {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  /* line 112, resources/assets/styles/layout/_header.scss */

  .header-secondary .reduce-logo img {
    width: 45px;
  }
}

/* line 1, resources/assets/styles/layout/_navigation.scss */

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

/* line 4, resources/assets/styles/layout/_navigation.scss */

.header-navigation .current-menu-ancestor > a:first-child {
  color: #bc7902;
}

/* line 7, resources/assets/styles/layout/_navigation.scss */

.header-navigation .current-menu-ancestor > a:first-child::after {
  opacity: 1;
  bottom: -2px;
}

/* line 13, resources/assets/styles/layout/_navigation.scss */

.header-navigation a[aria-current="page"] {
  color: #bc7902;
}

/* line 16, resources/assets/styles/layout/_navigation.scss */

.header-navigation a[aria-current="page"]::after {
  opacity: 1;
  bottom: -2px;
}

/* line 23, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-food::before {
  color: #00928c;
}

/* line 28, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-food a:hover {
  color: #00928c;
}

/* line 32, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-food a::before {
  background: #00928c;
}

/* line 40, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-kinepolis a:hover {
  color: #00a1be;
}

/* line 44, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-kinepolis a::before {
  background: #00a1be;
}

/* line 52, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-rockhal a:hover {
  color: #be0b07;
}

/* line 56, resources/assets/styles/layout/_navigation.scss */

.header-navigation .item-rockhal a::before {
  background: #be0b07;
}

/* line 62, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item {
  display: inline-block;
  padding-left: 35px;
  padding-right: 35px;
  position: relative;
}

/* line 68, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item::before {
  float: left;
  margin-top: 22px;
  width: 25px;
  font-size: 12px;
  color: #bc7902;
  display: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 80, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item.open ul {
  opacity: 1;
  visibility: visible;
  margin-top: 28px;
}

/* line 86, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item a {
  font-family: "Poppins", sans-serif;
  color: #707070;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  font-size: 12px;
  padding-bottom: 2px;
}

/* line 97, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #bc7902;
  -webkit-transform-origin: right top;
       -o-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: scale(0, 1);
       -o-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transition: color 0.1s, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: color 0.1s, -o-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -o-transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* line 111, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item a:hover {
  color: #bc7902;
}

/* line 114, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item a:hover::before {
  -webkit-transform-origin: left top;
       -o-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
       -o-transform: scale(1, 1);
          transform: scale(1, 1);
}

/* line 120, resources/assets/styles/layout/_navigation.scss */

.header-navigation__item a i {
  opacity: 0;
  font-size: 12px;
  margin-right: 10px;
  color: #bc7902;
}

@media only screen and (max-width: 860px) {
  /* line 62, resources/assets/styles/layout/_navigation.scss */

  .header-navigation__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 768px) {
  /* line 62, resources/assets/styles/layout/_navigation.scss */

  .header-navigation__item {
    display: block;
    text-align: left;
    padding-left: 35px;
    padding-right: 35px;
  }

  /* line 139, resources/assets/styles/layout/_navigation.scss */

  .header-navigation__item a {
    color: #707070;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #cbcbcb;
    width: 100%;
    display: block;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* line 152, resources/assets/styles/layout/_navigation.scss */

  .header-navigation__item.open::before {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  /* line 158, resources/assets/styles/layout/_navigation.scss */

  .header-navigation__item.open ul {
    opacity: 1;
    visibility: visible;
    display: block;
    margin-top: 0;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 1, resources/assets/styles/layout/_navigation.scss */

  .header-navigation {
    display: none;
    padding-bottom: 20px;
  }

  /* line 172, resources/assets/styles/layout/_navigation.scss */

  .header-navigation.active {
    display: block;
  }
}

/* line 1, resources/assets/styles/layout/_footer.scss */

.footer {
  padding: 0;
}

/* line 4, resources/assets/styles/layout/_footer.scss */

.footer-socials {
  margin-top: 80px;
  font-size: 18px;
  padding: 0;
  margin-bottom: 10px;
  margin-left: 20px;
}

/* line 11, resources/assets/styles/layout/_footer.scss */

.footer-socials li {
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  font-size: 16px;
}

/* line 17, resources/assets/styles/layout/_footer.scss */

.footer-socials li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
}

/* line 29, resources/assets/styles/layout/_footer.scss */

.footer-socials li a:hover {
  background-color: #bc7902;
  border: 1px solid #bc7902;
  color: white;
}

@media screen and (max-width: 768px) {
  /* line 11, resources/assets/styles/layout/_footer.scss */

  .footer-socials li {
    margin-top: 0;
    padding-left: 20px;
  }
}

/* line 43, resources/assets/styles/layout/_footer.scss */

.footer-link {
  font-size: 25px;
  font-weight: 600;
  margin-left: 100px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  top: 50px;
  z-index: 1;
}

/* line 52, resources/assets/styles/layout/_footer.scss */

.footer-link i {
  font-size: 12px;
  margin-left: 15px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 58, resources/assets/styles/layout/_footer.scss */

.footer-link__red {
  color: #be0b07;
}

/* line 62, resources/assets/styles/layout/_footer.scss */

.footer-link__blue {
  color: #00a1be;
}

/* line 66, resources/assets/styles/layout/_footer.scss */

.footer-link:hover {
  color: #3b3b3b;
}

/* line 69, resources/assets/styles/layout/_footer.scss */

.footer-link:hover i {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  /* line 43, resources/assets/styles/layout/_footer.scss */

  .footer-link {
    margin-left: 25px;
  }
}

/* line 79, resources/assets/styles/layout/_footer.scss */

.footer span {
  font-weight: 600;
  padding-bottom: 50px;
  display: block;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  /* line 79, resources/assets/styles/layout/_footer.scss */

  .footer span {
    padding-bottom: 20px;
  }
}

/* line 90, resources/assets/styles/layout/_footer.scss */

.footer-branding {
  margin-top: 80px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 90, resources/assets/styles/layout/_footer.scss */

  .footer-branding {
    margin-top: 50px;
    text-align: left;
    padding-left: 30px;
  }
}

/* line 101, resources/assets/styles/layout/_footer.scss */

.footer-primary {
  position: relative;
  background-color: #fff;
  padding-top: 330px;
  overflow: hidden;
}

/* line 108, resources/assets/styles/layout/_footer.scss */

.footer-primary.background-grey {
  background-color: #f7f7f7;
}

/* line 112, resources/assets/styles/layout/_footer.scss */

.footer-primary h1 {
  overflow: hidden;
  color: rgba(208, 208, 208, 0.15);
  font-size: 201px;
  font-weight: 700;
  margin: 0 0 0 -50px;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  bottom: -90px;
}

@media screen and (max-width: 768px) {
  /* line 112, resources/assets/styles/layout/_footer.scss */

  .footer-primary h1 {
    font-size: 140px;
  }
}

/* line 130, resources/assets/styles/layout/_footer.scss */

.footer-primary::before {
  top: calc(100% - 8px);
  height: 400px;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  border-top: 8px solid #707070;
  background: #313131;
  z-index: 1;
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

@media screen and (max-width: 768px) {
  /* line 130, resources/assets/styles/layout/_footer.scss */

  .footer-primary::before {
    bottom: -135px;
  }
}

@media screen and (max-width: 768px) {
  /* line 101, resources/assets/styles/layout/_footer.scss */

  .footer-primary {
    padding-top: 250px;
  }
}

/* line 151, resources/assets/styles/layout/_footer.scss */

.footer-secondary {
  background-color: #313131;
  color: #fff;
}

/* line 156, resources/assets/styles/layout/_footer.scss */

.footer-navigation {
  margin-left: 80px;
  margin-top: 80px;
}

/* line 160, resources/assets/styles/layout/_footer.scss */

.footer-navigation span {
  padding-bottom: 20px;
}

/* line 164, resources/assets/styles/layout/_footer.scss */

.footer-navigation li {
  margin-bottom: -5px;
}

/* line 167, resources/assets/styles/layout/_footer.scss */

.footer-navigation li a {
  color: #fff;
  font-size: 11px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 172, resources/assets/styles/layout/_footer.scss */

.footer-navigation li a:hover {
  color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 768px) {
  /* line 156, resources/assets/styles/layout/_footer.scss */

  .footer-navigation {
    margin-left: 35px;
    margin-top: 20px;
  }
}

/* line 184, resources/assets/styles/layout/_footer.scss */

.footer-copyright {
  text-align: center;
  padding: 50px 0 70px 0;
  font-size: 10px;
}

/* line 190, resources/assets/styles/layout/_footer.scss */

.footer-copyright a:hover {
  color: white;
}

@media screen and (max-width: 768px) {
  /* line 184, resources/assets/styles/layout/_footer.scss */

  .footer-copyright {
    padding-left: 50px;
    padding-right: 50px;
  }
}

/* line 1, resources/assets/styles/layout/_dropdown.scss */

.dropdown {
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  -webkit-transform: translate(-50%, 0%);
       -o-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  width: 90%;
  margin-left: 50%;
  z-index: 1;
  left: 0;
  padding: 55px 10px 40px 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/layout/_dropdown.scss */

  .dropdown {
    left: -100%;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 1, resources/assets/styles/layout/_dropdown.scss */

  .dropdown {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

/* line 26, resources/assets/styles/layout/_dropdown.scss */

.dropdown.active {
  opacity: 1;
  visibility: visible;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  /* line 26, resources/assets/styles/layout/_dropdown.scss */

  .dropdown.active {
    position: absolute;
    top: 57px;
    left: 0;
    margin-top: 0;
  }

  /* line 38, resources/assets/styles/layout/_dropdown.scss */

  .dropdown.active .current-menu-ancestor::before {
    display: block !important;
  }
}

/* line 45, resources/assets/styles/layout/_dropdown.scss */

.dropdown .menu-dropdown {
  width: 100%;
}

/* line 49, resources/assets/styles/layout/_dropdown.scss */

.dropdown-gender {
  margin-top: 70px;
  text-align: right;
}

/* line 53, resources/assets/styles/layout/_dropdown.scss */

.dropdown-gender li {
  padding: 0;
  margin-right: 15px;
  display: inline-block;
  font-size: 16px;
}

/* line 59, resources/assets/styles/layout/_dropdown.scss */

.dropdown-gender li a {
  font-size: 12px;
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 0.5px solid rgba(112, 112, 112, 0.2);
  margin-bottom: 20px;
  background-color: rgba(167, 114, 19, 0);
  border-radius: 75px;
  text-align: center;
  line-height: 100px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #525252;
  font-weight: 500;
  text-transform: initial;
}

/* line 75, resources/assets/styles/layout/_dropdown.scss */

.dropdown-gender li a:hover {
  background-color: #a77213;
  color: #fff;
  border: 1px solid #a77213;
}

@media only screen and (max-width: 1025px) {
  /* line 59, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-gender li a {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 53, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-gender li {
    margin-right: 5px;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 49, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-gender {
    margin-top: 50px;
    text-align: center;
  }
}

/* line 100, resources/assets/styles/layout/_dropdown.scss */

.dropdown-navigation {
  padding-left: 100px;
}

/* line 104, resources/assets/styles/layout/_dropdown.scss */

.dropdown-navigation ul li {
  display: block;
  text-align: left;
  margin-bottom: 3px;
}

/* line 109, resources/assets/styles/layout/_dropdown.scss */

.dropdown-navigation ul li:first-child {
  text-decoration: underline;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 50px;
  display: block;
  color: #525252;
}

@media only screen and (max-width: 1025px) {
  /* line 109, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-navigation ul li:first-child {
    display: none;
  }
}

/* line 122, resources/assets/styles/layout/_dropdown.scss */

.dropdown-navigation ul li a {
  padding-top: 5px;
  padding-bottom: 5px;
  display: inline-block;
  text-transform: initial;
  font-size: 14px;
}

/* line 129, resources/assets/styles/layout/_dropdown.scss */

.dropdown-navigation ul li a:hover {
  color: #bc7902;
}

@media only screen and (max-width: 1025px) {
  /* line 122, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-navigation ul li a {
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #707070;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 104, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-navigation ul li {
    border-bottom: 1px solid #cbcbcb;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 100, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-navigation {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* line 154, resources/assets/styles/layout/_dropdown.scss */

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

/* line 157, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .news-item {
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgba(112, 112, 112, 0.2);
  min-height: 330px;
  padding-top: 20px;
  margin-left: 0;
  margin-right: 0;
}

/* line 165, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .news-item h1 {
  padding-top: 15px;
  font-size: 15px;
}

/* line 170, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .news-item__image {
  width: 200px;
  margin-top: 50px;
}

/* line 175, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .news-item__text {
  position: absolute;
  top: 15px;
  -webkit-transform: translate(-50.5%, 0);
       -o-transform: translate(-50.5%, 0);
          transform: translate(-50.5%, 0);
  left: 50%;
}

/* line 182, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .news-item::before {
  background: rgba(255, 255, 255, 0);
}

/* line 186, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .news-item:hover {
  -webkit-box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
  -webkit-transform: translate3d(0, -6px, 0);
          transform: translate3d(0, -6px, 0);
  background-color: white;
}

/* line 193, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .columns .column:nth-child(2) .news-item {
  background-color: #bc7902;
}

/* line 196, resources/assets/styles/layout/_dropdown.scss */

.dropdown-news .columns .column:nth-child(2) .news-item .news-item__title {
  color: #fff;
}

@media only screen and (max-width: 1025px) {
  /* line 154, resources/assets/styles/layout/_dropdown.scss */

  .dropdown-news {
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 1025px) {
  /* line 1, resources/assets/styles/layout/_dropdown.scss */

  .dropdown {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
    padding-right: 0;
  }
}

/* line 1, resources/assets/styles/layout/_hamburger.scss */

.hamburger {
  position: absolute;
  right: 20px;
  top: 5px;
  display: none;
  padding: 12px;
  padding: 15px;
}

@media only screen and (max-width: 1024px) {
  /* line 1, resources/assets/styles/layout/_hamburger.scss */

  .hamburger {
    display: block;
  }
}

/* line 20, resources/assets/styles/layout/_hamburger.scss */

.hamburger__icon {
  position: relative;
  margin-top: 16px;
  margin-left: 2px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* line 26, resources/assets/styles/layout/_hamburger.scss */

.hamburger__icon::before,
.hamburger__icon::after {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #7e7e7e;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  content: "";
}

/* line 37, resources/assets/styles/layout/_hamburger.scss */

.hamburger__icon::before {
  top: -5px;
}

/* line 41, resources/assets/styles/layout/_hamburger.scss */

.hamburger__icon::after {
  top: 5px;
}

/* line 47, resources/assets/styles/layout/_hamburger.scss */

.hamburger.is-open .hamburger__icon::before {
  -webkit-transform: translateY(5px) rotate(45deg);
       -o-transform: translateY(5px) rotate(45deg);
          transform: translateY(5px) rotate(45deg);
}

/* line 51, resources/assets/styles/layout/_hamburger.scss */

.hamburger.is-open .hamburger__icon::after {
  -webkit-transform: translateY(-5px) rotate(-45deg);
       -o-transform: translateY(-5px) rotate(-45deg);
          transform: translateY(-5px) rotate(-45deg);
}

/* line 1, resources/assets/styles/layout/_sub-navigation.scss */

.sub-menu {
  background-color: white;
  padding-top: 27px;
  padding-bottom: 20px;
  width: 160px;
  left: 0;
  top: 0;
  position: absolute;
  text-align: left;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  visibility: hidden;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/layout/_sub-navigation.scss */

  .sub-menu {
    display: none;
    position: relative;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }
}

/* line 26, resources/assets/styles/layout/_sub-navigation.scss */

.sub-menu li {
  display: block;
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  /* line 26, resources/assets/styles/layout/_sub-navigation.scss */

  .sub-menu li {
    padding: 0;
  }
}

/* line 34, resources/assets/styles/layout/_sub-navigation.scss */

.sub-menu li a {
  font-size: 12px;
  text-transform: initial;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  /* line 34, resources/assets/styles/layout/_sub-navigation.scss */

  .sub-menu li a {
    text-transform: uppercase;
    padding-left: 22px;
    font-size: 13px;
    font-style: italic;
  }
}

/* line 46, resources/assets/styles/layout/_sub-navigation.scss */

.sub-menu li a:hover {
  color: #bc7902;
}

/* line 49, resources/assets/styles/layout/_sub-navigation.scss */

.sub-menu li a:hover::after {
  opacity: 0;
}

/** Pages */

/* line 1, resources/assets/styles/pages/_page.scss */

.page {
  position: relative;
}

/* line 4, resources/assets/styles/pages/_page.scss */

.page-subtitle {
  position: relative;
  padding-top: 25px;
  padding-bottom: 25px;
  z-index: 1;
}

/* line 10, resources/assets/styles/pages/_page.scss */

.page-subtitle__icon {
  position: absolute;
  top: 25px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #bc7902;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

/* line 21, resources/assets/styles/pages/_page.scss */

.page-subtitle__icon svg {
  font-size: 12px;
}

/* line 25, resources/assets/styles/pages/_page.scss */

.page-subtitle__icon.icon-blue {
  background-color: #00928c;
}

/* line 30, resources/assets/styles/pages/_page.scss */

.page-subtitle__title {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 25px;
  margin-left: 50px;
  padding-top: 0;
  color: #bc7902;
  line-height: 1.3;
}

/* line 40, resources/assets/styles/pages/_page.scss */

.page-subtitle__title i {
  font-size: 12px;
  margin-left: 15px;
}

/* line 45, resources/assets/styles/pages/_page.scss */

.page-subtitle__title.title-black {
  color: #3b3b3b;
}

/* line 50, resources/assets/styles/pages/_page.scss */

.page-subtitle__month {
  margin-top: 150px;
}

@media screen and (max-width: 768px) {
  /* line 4, resources/assets/styles/pages/_page.scss */

  .page-subtitle {
    margin-left: 30px;
  }
}

/* line 59, resources/assets/styles/pages/_page.scss */

.page-subtitle__background {
  color: black;
  font-size: 201px;
  font-weight: 700;
  margin: 0 0 0 -50px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
}

/* line 69, resources/assets/styles/pages/_page.scss */

.page-footer {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  min-height: 450px;
  top: 0;
  left: 0;
  position: relative;
}

/* line 79, resources/assets/styles/pages/_page.scss */

.page-footer::before {
  top: -65px;
  height: 140px;
  background: #fff;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 2, resources/assets/styles/pages/_section.scss */

.section-map {
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
}

/* line 7, resources/assets/styles/pages/_section.scss */

.section-map__image {
  display: block;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 11, resources/assets/styles/pages/_section.scss */

.section-map__image:hover {
  opacity: 0.5;
}

/* line 16, resources/assets/styles/pages/_section.scss */

.section-map__button {
  position: absolute;
  top: 50%;
  text-align: center;
  width: 50%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
  /* line 16, resources/assets/styles/pages/_section.scss */

  .section-map__button {
    display: none;
  }
}

/* line 29, resources/assets/styles/pages/_section.scss */

.section-spotted {
  background-color: #f7f7f7;
  padding-top: 150px;
  padding-bottom: 100px;
  position: relative;
}

/* line 35, resources/assets/styles/pages/_section.scss */

.section-spotted::before {
  top: 0;
  height: 400px;
  background: #f7f7f7;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 46, resources/assets/styles/pages/_section.scss */

.section-spotted::after {
  bottom: 0;
  height: 150px;
  background: #f7f7f7;
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transform: skew(0deg, 5deg);
       -o-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
  z-index: 1;
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 58, resources/assets/styles/pages/_section.scss */

.section-spotted .button {
  margin-top: 80px;
  margin-left: 40px;
}

@media screen and (max-width: 768px) {
  /* line 58, resources/assets/styles/pages/_section.scss */

  .section-spotted .button {
    margin-bottom: 30px;
    margin-top: 0;
  }
}

/* line 68, resources/assets/styles/pages/_section.scss */

.section-spotted .page-subtitle__title {
  width: 214px;
}

/* line 73, resources/assets/styles/pages/_section.scss */

.section-events {
  background-color: white;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

/* line 79, resources/assets/styles/pages/_section.scss */

.section-events::before {
  top: 0;
  height: 400px;
  background: white;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 90, resources/assets/styles/pages/_section.scss */

.section-events__front {
  padding-top: 200px;
  padding-bottom: 230px;
  background-color: #fff;
  position: relative;
}

/* line 98, resources/assets/styles/pages/_section.scss */

.section-news {
  padding-top: 100px;
  padding-bottom: 250px;
  position: relative;
}

/* line 103, resources/assets/styles/pages/_section.scss */

.section-news__white {
  background-color: white;
}

/* line 107, resources/assets/styles/pages/_section.scss */

.section-news__grey {
  background-color: #f7f7f7;
}

/* line 110, resources/assets/styles/pages/_section.scss */

.section-news__grey::before {
  top: 0;
  height: 400px;
  background: #f7f7f7;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 0;
       -o-transform-origin: 0 0;
          transform-origin: 0 0;
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 122, resources/assets/styles/pages/_section.scss */

.section-food {
  padding-top: 105px;
  padding-bottom: 150px;
  position: relative;
}

/* line 128, resources/assets/styles/pages/_section.scss */

.section-suggestions {
  background-color: #f7f7f7;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

/* line 134, resources/assets/styles/pages/_section.scss */

.section-suggestions::before {
  top: 0;
  height: 400px;
  background: #f7f7f7;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 146, resources/assets/styles/pages/_section.scss */

.section-card {
  padding-top: 150px;
  padding-bottom: 200px;
}

/* line 150, resources/assets/styles/pages/_section.scss */

.section-card .content-image {
  text-align: right;
}

/* line 153, resources/assets/styles/pages/_section.scss */

.section-card .content-image img {
  width: 95%;
}

@media screen and (max-width: 768px) {
  /* line 150, resources/assets/styles/pages/_section.scss */

  .section-card .content-image {
    text-align: left;
  }
}

/* line 162, resources/assets/styles/pages/_section.scss */

.section-card .page-subtitle__title {
  margin-left: 0;
}

/* line 166, resources/assets/styles/pages/_section.scss */

.section-card .info-box {
  background-color: #f7f7f7;
  position: relative;
  padding-left: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 22px;
  max-width: 400px;
}

@media screen and (max-width: 768px) {
  /* line 166, resources/assets/styles/pages/_section.scss */

  .section-card .info-box {
    width: 100%;
  }
}

/* line 179, resources/assets/styles/pages/_section.scss */

.section-card .info-box__icon {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #bc7902;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  top: 39px;
  left: -15px;
}

/* line 192, resources/assets/styles/pages/_section.scss */

.section-card .info-box__title {
  color: black;
  font-size: 12px;
  font-style: italic;
}

/* line 200, resources/assets/styles/pages/_section.scss */

.section-b2b {
  background-color: #f7f7f7;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

/* line 206, resources/assets/styles/pages/_section.scss */

.section-b2b .page-subtitle__title {
  margin-left: 0;
}

/* line 210, resources/assets/styles/pages/_section.scss */

.section-b2b::before {
  top: 0;
  height: 400px;
  background: #f7f7f7;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 222, resources/assets/styles/pages/_section.scss */

.section-movies {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* line 226, resources/assets/styles/pages/_section.scss */

.section-movies .page-subtitle__title {
  margin-left: 20px;
}

/* line 231, resources/assets/styles/pages/_section.scss */

.section-concerts {
  padding-top: 150px;
  padding-bottom: 150px;
}

/* line 235, resources/assets/styles/pages/_section.scss */

.section-concerts .page-subtitle__title {
  margin-left: 20px;
}

/* line 1, resources/assets/styles/pages/_page-header.scss */

.page-header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  min-height: 450px;
  top: 0;
  left: 0;
  position: relative;
  overflow: hidden;
}

/* line 12, resources/assets/styles/pages/_page-header.scss */

.page-header::after {
  bottom: calc(-100% + 10px);
  height: 100%;
  background: #fff;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 23, resources/assets/styles/pages/_page-header.scss */

.page-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/pages/_page-header.scss */

  .page-header {
    background-size: cover;
  }
}

/* line 1, resources/assets/styles/pages/_page-slider.scss */

.page-slider {
  position: relative;
  height: 650px;
}

/* line 5, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-list {
  height: 900px;
}

/* line 9, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-slider {
  height: 600px;
}

/* line 13, resources/assets/styles/pages/_page-slider.scss */

.page-slider__picture {
  margin-right: 100px;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 14px;
}

@media only screen and (max-width: 1220px) {
  /* line 13, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__picture {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  /* line 13, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__picture {
    margin-right: 0;
    top: 200px;
  }
}

/* line 30, resources/assets/styles/pages/_page-slider.scss */

.page-slider__elements {
  margin-right: 100px;
  position: absolute;
  z-index: 4;
  right: 0;
  top: 60px;
}

@media only screen and (max-width: 1220px) {
  /* line 30, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__elements {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  /* line 30, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__elements {
    margin-right: 0;
    bottom: 0;
  }
}

/* line 47, resources/assets/styles/pages/_page-slider.scss */

.page-slider__item {
  height: 665px;
  position: relative;
  overflow: hidden;
}

/* line 52, resources/assets/styles/pages/_page-slider.scss */

.page-slider__item::before {
  bottom: calc(-100% + 10px);
  height: 100%;
  background: #fff;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-transform-origin: 0 100%;
       -o-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  right: 0;
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

@media screen and (max-width: 768px) {
  /* line 47, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__item {
    height: 750px;
  }
}

/* line 69, resources/assets/styles/pages/_page-slider.scss */

.page-slider__text {
  top: 140px;
  position: absolute;
  margin-left: 200px;
  padding: 10px;
  height: 376px;
}

@media screen and (max-width: 768px) {
  /* line 69, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__text {
    margin-left: 25px;
    top: 50px;
    z-index: 6;
  }
}

/* line 87, resources/assets/styles/pages/_page-slider.scss */

.page-slider__background {
  color: rgba(255, 255, 255, 0.1);
  font-size: 230px;
  font-weight: 700;
  padding-left: 50px;
  margin: 10px 0 0 50px;
  position: absolute;
  top: 0;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  /* line 87, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__background {
    padding-left: 0;
    margin: 10px 0 0 10px;
  }
}

/* line 103, resources/assets/styles/pages/_page-slider.scss */

.page-slider__name {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 768px) {
  /* line 103, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__name {
    font-size: 12px;
  }
}

/* line 114, resources/assets/styles/pages/_page-slider.scss */

.page-slider__title {
  font-size: 29px;
  font-weight: 900;
  padding-top: 10px;
  padding-bottom: 38px;
  color: #fff;
  max-width: 310px;
}

@media screen and (max-width: 768px) {
  /* line 114, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__title {
    max-width: 250px;
    font-size: 22px;
    line-height: 1.3;
    padding-top: 10px;
  }
}

/* line 131, resources/assets/styles/pages/_page-slider.scss */

.page-slider__link a {
  background-color: #fff;
  border-radius: 25px;
  text-transform: uppercase;
  font-size: 11px;
  border: 1px solid rgba(255, 255, 255, 0);
  font-weight: 500;
  display: inline-block;
  padding: 15px 5px 15px 18px;
  line-height: 3px;
  padding-right: 20px;
  color: black;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
}

/* line 146, resources/assets/styles/pages/_page-slider.scss */

.page-slider__link a:hover {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  color: #fff;
}

/* line 152, resources/assets/styles/pages/_page-slider.scss */

.page-slider__link a svg {
  margin-left: 14px;
}

/* line 158, resources/assets/styles/pages/_page-slider.scss */

.page-slider__number {
  position: absolute;
  bottom: 2px;
  right: 50%;
  padding: 5px;
  color: #fff;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  /* line 158, resources/assets/styles/pages/_page-slider.scss */

  .page-slider__number {
    display: none;
  }
}

/* line 171, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-arrow {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: black;
  z-index: 1;
  cursor: pointer;
  bottom: 20%;
}

/* line 186, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-arrow:hover {
  bottom: 21%;
  -webkit-box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
          box-shadow: 0 0 15px 0 rgba 0, 0, 0, 0.3;
}

/* line 191, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-arrow.slick-prev {
  position: absolute;
  right: 185px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid #fff;
  color: #fff;
}

@media screen and (max-width: 768px) {
  /* line 191, resources/assets/styles/pages/_page-slider.scss */

  .page-slider .slick-arrow.slick-prev {
    display: none !important;
  }
}

/* line 203, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-arrow.slick-next {
  position: absolute;
  right: 135px;
}

@media screen and (max-width: 768px) {
  /* line 203, resources/assets/styles/pages/_page-slider.scss */

  .page-slider .slick-arrow.slick-next {
    display: none !important;
  }
}

/* line 213, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-dots {
  position: absolute;
  bottom: 15%;
  left: 17%;
  display: inline-block;
  list-style: none;
  padding-bottom: 10px;
  padding-right: 10px;
}

/* line 222, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-dots li {
  display: inline-block;
}

/* line 225, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-dots li button {
  border: none;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  display: inline-block;
  cursor: pointer;
  font-size: 0;
  padding: 5px;
}

/* line 239, resources/assets/styles/pages/_page-slider.scss */

.page-slider .slick-dots .slick-active button {
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  /* line 213, resources/assets/styles/pages/_page-slider.scss */

  .page-slider .slick-dots {
    margin-left: 0;
    left: 35px;
    bottom: 50px;
  }
}

/* line 1, resources/assets/styles/pages/_social-banner.scss */

.social-banner {
  padding-top: 35px;
  padding-bottom: 35px;
  text-align: center;
}

/* line 6, resources/assets/styles/pages/_social-banner.scss */

.social-banner ul {
  margin-top: 0;
}

/* line 10, resources/assets/styles/pages/_social-banner.scss */

.social-banner li {
  padding: 0;
  margin-right: 10px;
  display: inline-block;
  font-size: 16px;
}

/* line 16, resources/assets/styles/pages/_social-banner.scss */

.social-banner li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 29, resources/assets/styles/pages/_social-banner.scss */

.social-banner__blue {
  background-color: #00a1be;
}

/* line 33, resources/assets/styles/pages/_social-banner.scss */

.social-banner__blue li a {
  color: #00a1be;
}

/* line 36, resources/assets/styles/pages/_social-banner.scss */

.social-banner__blue li a:hover {
  background-color: #00a1be;
  color: #fff;
  border: 1px solid #fff;
}

/* line 45, resources/assets/styles/pages/_social-banner.scss */

.social-banner__red {
  background-color: #be0b07;
}

/* line 49, resources/assets/styles/pages/_social-banner.scss */

.social-banner__red li a {
  color: #be0b07;
}

/* line 52, resources/assets/styles/pages/_social-banner.scss */

.social-banner__red li a:hover {
  background-color: #be0b07;
  color: #fff;
  border: 1px solid #fff;
}

/* line 1, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed {
  padding-top: 280px;
}

/* line 4, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__nickname {
  color: #bc7902;
  font-size: 22px;
  font-weight: 600;
  display: inline-block;
  padding-top: 15px;
}

/* line 11, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__nickname:hover {
  color: #bc7902;
}

/* line 16, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__socials {
  text-align: center;
  padding-bottom: 50px;
}

/* line 20, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__socials ul {
  margin-left: 0;
}

/* line 23, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__socials ul li {
  padding: 0;
  margin-right: 5px;
  display: inline-block;
  font-size: 16px;
}

/* line 29, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__socials ul li a {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 1px solid #bc7902;
  background-color: #bc7902;
  border-radius: 20px;
  text-align: center;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fff;
}

/* line 41, resources/assets/styles/pages/_instagram-feed.scss */

.instagram-feed__socials ul li a:hover {
  border: 1px solid #bc7902;
  background-color: #fff;
  color: #bc7902;
}

/* line 1, resources/assets/styles/pages/_quick-link.scss */

.quick-link {
  position: relative;
  height: 250px;
  display: block;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  border-radius: 5px;
}

/* line 10, resources/assets/styles/pages/_quick-link.scss */

.quick-link__thumbnail {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 0;
  left: 0;
}

/* line 21, resources/assets/styles/pages/_quick-link.scss */

.quick-link__thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* line 32, resources/assets/styles/pages/_quick-link.scss */

.quick-link__text {
  position: absolute;
  z-index: 101;
  top: 50%;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  -webkit-transform: translate(0, -50.5%);
       -o-transform: translate(0, -50.5%);
          transform: translate(0, -50.5%);
}

/* line 41, resources/assets/styles/pages/_quick-link.scss */

.quick-link__text span {
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

/* line 49, resources/assets/styles/pages/_quick-link.scss */

.quick-link:hover .quick-link__thumbnail {
  -webkit-transform: scale(1.1) translate3d(0, 0, 0);
          transform: scale(1.1) translate3d(0, 0, 0);
}

/* line 53, resources/assets/styles/pages/_quick-link.scss */

.quick-link:hover .quick-link__thumbnail-overlay {
  background-color: rgba(0, 0, 0, 0);
}

/* line 59, resources/assets/styles/pages/_quick-link.scss */

.quick-links {
  background-color: #f7f7f7;
  padding-bottom: 250px;
  padding-top: 100px;
  position: relative;
}

/* line 65, resources/assets/styles/pages/_quick-link.scss */

.quick-links::before {
  top: 0;
  height: 400px;
  background: #f7f7f7;
  -webkit-transform: skew(0deg, 5deg);
       -o-transform: skew(0deg, 5deg);
          transform: skew(0deg, 5deg);
  -webkit-transform-origin: 100% 0;
       -o-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
          box-shadow: inset -1px 8px 10px -4px rgba(179, 179, 179, 0.39);
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 76, resources/assets/styles/pages/_quick-link.scss */

.quick-links::after {
  bottom: 0;
  height: 400px;
  background: #f7f7f7;
  -webkit-transform-origin: 100% 0;
       -o-transform-origin: 100% 0;
          transform-origin: 100% 0;
  -webkit-transform: skew(0deg, -5deg);
       -o-transform: skew(0deg, -5deg);
          transform: skew(0deg, -5deg);
  -webkit-box-shadow: inset 19px -9px 35px -24px #b3b3b3;
          box-shadow: inset 19px -9px 35px -24px #b3b3b3;
  content: "";
  position: absolute;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 100%;
  right: 0;
}

/* line 87, resources/assets/styles/pages/_quick-link.scss */

.quick-links .title-background {
  z-index: 1;
}

/* line 91, resources/assets/styles/pages/_quick-link.scss */

.quick-links .blockquote {
  text-align: right;
  padding-left: 80px;
  padding-right: 30px;
  position: relative;
  margin-right: 20px;
}

/* line 98, resources/assets/styles/pages/_quick-link.scss */

.quick-links .blockquote::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  -webkit-transform-origin: bottom right;
       -o-transform-origin: bottom right;
          transform-origin: bottom right;
  bottom: 0;
  background: #707070;
  width: 217px;
  margin-top: 20px;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  /* line 98, resources/assets/styles/pages/_quick-link.scss */

  .quick-links .blockquote::after {
    background: #f7f7f7;
  }
}

/* line 116, resources/assets/styles/pages/_quick-link.scss */

.quick-links .blockquote blockquote {
  color: grey;
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  line-height: 1.2;
}

/* line 124, resources/assets/styles/pages/_quick-link.scss */

.quick-links .blockquote cite {
  color: #bc7902;
  font-size: 13px;
  font-weight: 600;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  /* line 91, resources/assets/styles/pages/_quick-link.scss */

  .quick-links .blockquote {
    text-align: left;
    padding-left: 30px;
    padding-right: 40px;
  }
}

/* line 1, resources/assets/styles/pages/_page-error.scss */

.page-error {
  padding-top: 50px;
}

/* line 4, resources/assets/styles/pages/_page-error.scss */

.page-error h1 {
  color: rgba(208, 208, 208, 0.15);
  font-size: 120px;
  text-align: center;
  font-weight: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  /* line 4, resources/assets/styles/pages/_page-error.scss */

  .page-error h1 {
    font-size: 80px;
  }
}

/* line 19, resources/assets/styles/pages/_page-error.scss */

.page-error h2 {
  text-align: center;
  color: #707070;
  font-size: 22px;
}

/* line 25, resources/assets/styles/pages/_page-error.scss */

.page-error__link {
  padding-top: 25px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/pages/_page-error.scss */

  .page-error {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* line 1, resources/assets/styles/pages/_contact-info.scss */

.contact-info {
  margin-top: 130px;
  margin-bottom: 50px;
  margin-right: 50px;
  margin-left: 50px;
}

/* line 7, resources/assets/styles/pages/_contact-info.scss */

.contact-info__icon {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

/* line 12, resources/assets/styles/pages/_contact-info.scss */

.contact-info__icon span {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  line-height: 30px;
  background-color: #bc7902;
  border-radius: 20px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  /* line 7, resources/assets/styles/pages/_contact-info.scss */

  .contact-info__icon {
    margin-bottom: 40px;
  }
}

/* line 31, resources/assets/styles/pages/_contact-info.scss */

.contact-info__item {
  text-align: center;
  margin-top: 20px;
  color: #707070;
  font-size: 14px;
}

/* line 38, resources/assets/styles/pages/_contact-info.scss */

.contact-info__img {
  margin-top: 85px;
  text-align: right;
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  /* line 38, resources/assets/styles/pages/_contact-info.scss */

  .contact-info__img {
    margin-top: 0;
    text-align: center;
    margin-right: 0;
  }
}

/* line 1, resources/assets/styles/pages/_tagline.scss */

.tagline {
  position: relative;
  z-index: 1;
}

/* line 5, resources/assets/styles/pages/_tagline.scss */

.tagline-text {
  position: absolute;
  right: 50px;
  top: -40px;
  line-height: 1.2;
}

/* line 11, resources/assets/styles/pages/_tagline.scss */

.tagline-text p {
  color: #bc7902;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 800;
  padding-bottom: 15px;
  text-align: right;
  position: relative;
}

/* line 21, resources/assets/styles/pages/_tagline.scss */

.tagline-text::after {
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #bc7902;
  width: 60px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  /* line 5, resources/assets/styles/pages/_tagline.scss */

  .tagline-text {
    top: 0;
  }
}

/* line 1, resources/assets/styles/pages/_backdrop.scss */

.backdrop {
  position: relative;
  z-index: 1;
}

/* line 5, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title {
  position: absolute;
}

/* line 8, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title p {
  color: rgba(208, 208, 208, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  font-size: 201px;
  font-weight: 700;
}

/* line 17, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title__top {
  top: 0;
}

/* line 21, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title__left {
  left: -80px;
}

/* line 25, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title__right {
  right: 0;
}

/* line 28, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title__right p {
  width: 550px;
}

/* line 33, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title.backdrop-page {
  top: -100px;
}

/* line 36, resources/assets/styles/pages/_backdrop.scss */

.backdrop-title.backdrop-page__bottom {
  top: -50px;
}

@media screen and (max-width: 768px) {
  /* line 1, resources/assets/styles/pages/_backdrop.scss */

  .backdrop {
    display: none;
  }
}

/* line 1, resources/assets/styles/pages/_messages-section.scss */

.messages-section {
  background-color: #fff;
  padding: 20px 0 100px 0;
  color: #525252;
}

@media only screen and (max-width: 1024px) {
  /* line 1, resources/assets/styles/pages/_messages-section.scss */

  .messages-section {
    padding: 20px 0 0 0;
  }
}

/* line 10, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item {
  margin-top: 150px;
  margin-bottom: 100px;
}

/* line 14, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item__title {
  font-size: 26px;
  font-weight: 600;
  padding-bottom: 40px;
}

/* line 19, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item__title::after {
  content: "";
  display: block;
  height: 3px;
  background: #525252;
  width: 30px;
  margin-top: 20px;
}

/* line 29, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item__img {
  max-width: 400px;
  margin: 0 auto;
}

/* line 34, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item__content {
  position: relative;
  height: 100%;
}

/* line 39, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item__text {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
       -o-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

/* line 44, resources/assets/styles/pages/_messages-section.scss */

.messages-section .message-item__text div {
  margin-bottom: 30px;
}

@media only screen and (max-width: 1024px) {
  /* line 39, resources/assets/styles/pages/_messages-section.scss */

  .messages-section .message-item__text {
    position: initial;
    -webkit-transform: translate(0, 0);
         -o-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}

/* line 1, resources/assets/styles/pages/_search.scss */

.search-results-list {
  position: relative;
  margin-top: 60px;
}

/* line 5, resources/assets/styles/pages/_search.scss */

.search-results-list .page-subtitle {
  padding-bottom: 100px;
}

/* line 9, resources/assets/styles/pages/_search.scss */

.search-results-list .page-subtitle__background {
  font-size: 75px;
  margin-bottom: 1.5em;
}

/* line 14, resources/assets/styles/pages/_search.scss */

.search-results-list__term {
  text-transform: uppercase;
  color: black;
}

/* line 19, resources/assets/styles/pages/_search.scss */

.search-results-list__title {
  font-size: 16px;
  font-weight: 700;
}

/* line 24, resources/assets/styles/pages/_search.scss */

.search-results-list__item {
  position: relative;
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2em;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

/* line 33, resources/assets/styles/pages/_search.scss */

.search-results-list__item:hover {
  -webkit-transform: translate3d(0, -6px, 0);
          transform: translate3d(0, -6px, 0);
  -webkit-box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 25px 40px 0 rgba(0, 0, 0, 0.08);
}

/* line 39, resources/assets/styles/pages/_search.scss */

.search-results-list__thumbnail {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  margin: 30px;
}

/* line 47, resources/assets/styles/pages/_search.scss */

.search-results-list__label {
  margin-left: 0.75em;
  font-size: 0.75em;
  padding: 0.2em 0.5em;
  border-radius: 0.3em;
  color: white;
  position: absolute;
  top: -1em;
  right: 2em;
}

/* line 57, resources/assets/styles/pages/_search.scss */

.search-results-list__label--news {
  background-color: #a77213;
}

/* line 61, resources/assets/styles/pages/_search.scss */

.search-results-list__label--events {
  background-color: #00928c;
}

/* line 65, resources/assets/styles/pages/_search.scss */

.search-results-list__label--enseignes {
  background-color: #be0b07;
}

/* line 69, resources/assets/styles/pages/_search.scss */

.search-results-list__label--restaurants {
  background-color: #00a1be;
}


/*# sourceMappingURL=main.css.map*/