@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

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

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

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    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);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

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

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

  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }

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

  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-webkit-keyframes headShake {
  0% {
    transform: translateX(0);
  }

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

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

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

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

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

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

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

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

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

  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

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

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

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

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

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(1s * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }

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

  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@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;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

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

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

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

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
@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;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -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;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
@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;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -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;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
@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;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -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;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
@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;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }

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

  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(1s * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    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% {
    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% {
    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% {
    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 {
    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 {
    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% {
    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% {
    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% {
    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 {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

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

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

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

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

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

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

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

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -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;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    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;
    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;
    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;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

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

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

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

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    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;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*! tailwindcss v2.2.4 | MIT License | https://tailwindcss.com
 */
/*! modern-normalize v1.1.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
::before,
::after {
	box-sizing: border-box;
}
/**
Use a more readable tab size (opinionated).
*/
html {
	-moz-tab-size: 4;
	-o-tab-size: 4;
	   tab-size: 4;
}
/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}
/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
	margin: 0;
}
/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
	font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}
/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
	height: 0; /* 1 */
	color: inherit; /* 2 */
}
/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
	-webkit-text-decoration: underline dotted;
	        text-decoration: underline dotted;
}
/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
	font-weight: bolder;
}
/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
	font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
	font-size: 1em; /* 2 */
}
/**
Add the correct font size in all browsers.
*/
small {
	font-size: 80%;
}
/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
	text-indent: 0; /* 1 */
	border-color: inherit; /* 2 */
}
/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}
/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
	text-transform: none;
}
/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}
/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
	outline: 1px dotted ButtonText;
}
/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
	box-shadow: none;
}
/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
	padding: 0;
}
/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
	vertical-align: baseline;
}
/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
	height: auto;
}
/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}
/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
	-webkit-appearance: none;
}
/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}
/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
	display: list-item;
}
/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */
/**
 * Removes the default spacing and border for appropriate elements.
 */
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
button {
  background-color: transparent;
  background-image: none;
}
fieldset {
  margin: 0;
  padding: 0;
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
/**
 * Tailwind custom reset styles
 */
/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */
html {
  font-family: Inter, system-ui; /* 1 */
  line-height: 1.5; /* 2 */
}
/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */
body {
  font-family: inherit;
  line-height: inherit;
}
/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}
/*
 * Ensure horizontal rules are visible by default
 */
hr {
  border-top-width: 1px;
}
/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */
img {
  border-style: solid;
}
textarea {
  resize: vertical;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #909095;
}
input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #909095;
}
button,
[role="button"] {
  cursor: pointer;
}
table {
  border-collapse: collapse;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */
a {
  color: inherit;
  text-decoration: inherit;
}
/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}
/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */
pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
/**
 * 1. Make replaced elements `display: block` by default as that's
 *    the behavior you want almost all of the time. Inspired by
 *    CSS Remedy, with `svg` added as well.
 *
 *    https://github.com/mozdevs/cssremedy/issues/14
 * 
 * 2. Add `vertical-align: middle` to align replaced elements more
 *    sensibly by default when overriding `display` by adding a
 *    utility like `inline`.
 *
 *    This can trigger a poorly considered linting error in some
 *    tools but is included by design.
 * 
 *    https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210
 */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/**
 * Constrain images and videos to the parent width and preserve
 * their intrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */
img,
video {
  max-width: 100%;
  height: auto;
}
*, ::before, ::after{
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-border-opacity: 1;
  border-color: rgba(238, 239, 242, var(--tw-border-opacity));
  --tw-shadow: 0 0 #0000;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-drop-shadow: var(--tw-empty,/*!*/ /*!*/);
  --tw-filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
  --tw-backdrop-blur: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-brightness: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-contrast: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-grayscale: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-hue-rotate: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-invert: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-opacity: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-saturate: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-sepia: var(--tw-empty,/*!*/ /*!*/);
  --tw-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
[type='text'],[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
[multiple]{
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: unset;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          color-adjust: unset;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px auto -webkit-focus-ring-color;
}
.linkedin-button{font-family:"Source Sans Pro",Calibri,Helvetica,Arial,sans-serif,"Hiragino Kaku Gothic Pro",Meiryo,"Hiragino Sans GB W3","Noto Naskh Arabic","Droid Arabic Naskh","Geeza Pro","Simplified Arabic","Noto Sans Thai",Thonburi,Dokchampa,"Droid Sans Thai","Droid Sans Fallback",-apple-system,".SFNSDisplay-Regular","Heiti SC","Microsoft Yahei","Segoe UI";font-size:15px;font-weight:600;display: flex;height: 40px;align-items: center;justify-content: center;white-space: nowrap;border-radius: 2px;padding-left: 16px;padding-right: 16px;font-weight: 700;--tw-text-opacity: 1;color: rgba(255, 255, 255, var(--tw-text-opacity))}
.linkedin-button:hover{
  opacity: 0.8;
}
.linkedin-button{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 123, 182, var(--tw-bg-opacity));
}
.facebook-button{font-family:"Source Sans Pro",Calibri,Helvetica,Arial,sans-serif,"Hiragino Kaku Gothic Pro",Meiryo,"Hiragino Sans GB W3","Noto Naskh Arabic","Droid Arabic Naskh","Geeza Pro","Simplified Arabic","Noto Sans Thai",Thonburi,Dokchampa,"Droid Sans Thai","Droid Sans Fallback",-apple-system,".SFNSDisplay-Regular","Heiti SC","Microsoft Yahei","Segoe UI";font-size:15px;font-weight:600;display: flex;height: 40px;align-items: center;justify-content: center;white-space: nowrap;border-radius: 2px;padding-left: 16px;padding-right: 16px;font-weight: 700;--tw-text-opacity: 1;color: rgba(255, 255, 255, var(--tw-text-opacity))}
.facebook-button:hover{
  opacity: 0.8;
}
.facebook-button{
  --tw-bg-opacity: 1;
  background-color: rgba(59, 89, 152, var(--tw-bg-opacity));
}
.seek-button{font-family:"Source Sans Pro",Calibri,Helvetica,Arial,sans-serif,"Hiragino Kaku Gothic Pro",Meiryo,"Hiragino Sans GB W3","Noto Naskh Arabic","Droid Arabic Naskh","Geeza Pro","Simplified Arabic","Noto Sans Thai",Thonburi,Dokchampa,"Droid Sans Thai","Droid Sans Fallback",-apple-system,".SFNSDisplay-Regular","Heiti SC","Microsoft Yahei","Segoe UI";font-size:15px;font-weight:600;display: flex;height: 40px;align-items: center;justify-content: center;white-space: nowrap;border-radius: 2px;padding-left: 16px;padding-right: 16px;font-weight: 700;--tw-text-opacity: 1;color: rgba(255, 255, 255, var(--tw-text-opacity))}
.seek-button:hover{
  opacity: 0.8;
}
.seek-button{
  --tw-bg-opacity: 1;
  background-color: rgba(13, 56, 128, var(--tw-bg-opacity));
}
.container{
  width: 100%;
}
@media (min-width: 320px){
  .container{
    max-width: 320px;
  }
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1440px){
  .container{
    max-width: 1440px;
  }
}
@media (min-width: 1920px){
  .container{
    max-width: 1920px;
  }
}
.prose{
  color: inherit;
  max-width: 65ch;
}
.prose [class~="lead"]{
  color: #57595f;
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose a{
  color: #111827;
  text-decoration: underline;
  font-weight: 500;
}
.prose strong{
  color: inherit;
  font-weight: 600;
}
.prose ol[type="A"]{
  --list-counter-style: upper-alpha;
}
.prose ol[type="a"]{
  --list-counter-style: lower-alpha;
}
.prose ol[type="A" s]{
  --list-counter-style: upper-alpha;
}
.prose ol[type="a" s]{
  --list-counter-style: lower-alpha;
}
.prose ol[type="I"]{
  --list-counter-style: upper-roman;
}
.prose ol[type="i"]{
  --list-counter-style: lower-roman;
}
.prose ol[type="I" s]{
  --list-counter-style: upper-roman;
}
.prose ol[type="i" s]{
  --list-counter-style: lower-roman;
}
.prose ol[type="1"]{
  --list-counter-style: decimal;
}
.prose ol > li{
  position: relative;
  padding-left: 1.75em;
}
.prose ol > li::before{
  content: counter(list-item, decimal) ".";
  content: counter(list-item, var(--list-counter-style, decimal)) ".";
  position: absolute;
  font-weight: 400;
  color: #6b7280;
  left: 0;
}
.prose ul > li{
  position: relative;
  padding-left: 1.75em;
}
.prose ul > li::before{
  content: "";
  position: absolute;
  background-color: #eeeff2;
  border-radius: 50%;
  width: 0.375em;
  height: 0.375em;
  top: calc(0.875em - 0.1875em);
  left: 0.25em;
}
.prose hr{
  border-color: currentColor;
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
  opacity: 0.75;
}
.prose blockquote{
  font-weight: 500;
  font-style: italic;
  color: #111827;
  border-left-width: 0.25rem;
  border-left-color: #f8f8f9;
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}
.prose blockquote p:first-of-type::before{
  content: open-quote;
}
.prose blockquote p:last-of-type::after{
  content: close-quote;
}
.prose h1{
  color: inherit;
  font-weight: 700;
  font-weight: var(--company-header-font-weight, 700);
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 1.1111111;
  font-family: inherit;
  font-family: var(--company-header-font-family, inherit);
}
.prose h2{
  color: inherit;
  font-weight: 700;
  font-weight: var(--company-header-font-weight, 700);
  font-size: 40px;
  margin-top: 56px;
  margin-bottom: 8px;
  line-height: 1.3333333;
  font-family: inherit;
  font-family: var(--company-header-font-family, inherit);
}
.prose h3{
  color: inherit;
  font-weight: 700;
  font-weight: var(--company-header-font-weight, 700);
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 8px;
  line-height: 1.6;
  font-family: inherit;
  font-family: var(--company-header-font-family, inherit);
}
.prose h4{
  color: inherit;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 4px;
  line-height: 1.5;
  font-family: inherit;
  font-family: var(--company-header-font-family, inherit);
  font-size: 28px;
}
.prose figure figcaption{
  color: inherit;
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose code{
  color: #111827;
  font-weight: 600;
  font-size: 0.875em;
}
.prose code::before{
  content: "`";
}
.prose code::after{
  content: "`";
}
.prose a code{
  color: #111827;
}
.prose pre{
  color: #f8f8f9;
  background-color: #34353a;
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}
.prose pre code{
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose pre code::before{
  content: none;
}
.prose pre code::after{
  content: none;
}
.prose table{
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose thead{
  color: #111827;
  font-weight: 600;
  border-bottom-width: 1px;
  border-bottom-color: #eeeff2;
}
.prose thead th{
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose tbody tr{
  border-bottom-width: 1px;
  border-bottom-color: #f8f8f9;
}
.prose tbody tr:last-child{
  border-bottom-width: 0;
}
.prose tbody td{
  vertical-align: top;
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}
.prose{
  font-size: 21px;
  line-height: 1.5;
}
.prose p{
  margin-top: 0;
  margin-top: initial;
  margin-bottom: 16px;
}
.prose img{
  margin-top: 24px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}
.prose video{
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose figure{
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose figure > *{
  margin-top: 0;
  margin-bottom: 0;
}
.prose h2 code{
  font-size: 0.875em;
}
.prose h3 code{
  font-size: 0.9em;
}
.prose ol{
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose ol li::before{
  color: inherit;
}
.prose ul{
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose ul li::before{
  background-color: transparent;
  color: inherit;
  content: "\2022";
  top: auto;
}
.prose li{
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose > ul > li p{
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose > ul > li > *:first-child{
  margin-top: 1.25em;
}
.prose > ul > li > *:last-child{
  margin-bottom: 1.25em;
}
.prose > ol > li > *:first-child{
  margin-top: 1.25em;
}
.prose > ol > li > *:last-child{
  margin-bottom: 1.25em;
}
.prose ul ul, .prose ul ol, .prose ol ul, .prose ol ol{
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose hr + *{
  margin-top: 0;
}
.prose h2 + *{
  margin-top: 0;
}
.prose h3 + *{
  margin-top: 0;
}
.prose h4 + *{
  margin-top: 0;
}
.prose thead th:first-child{
  padding-left: 0;
}
.prose thead th:last-child{
  padding-right: 0;
}
.prose tbody td:first-child{
  padding-left: 0;
}
.prose tbody td:last-child{
  padding-right: 0;
}
.prose > :first-child{
  margin-top: 0;
}
.prose > :last-child{
  margin-bottom: 16px;
}
.prose h5{
  font-family: inherit;
  font-family: var(--company-header-font-family, inherit);
  color: inherit;
  margin-top: 32px;
  margin-bottom: 4px;
  font-size: 24px;
  font-weight: 700;
}
.prose h6{
  font-family: inherit;
  font-family: var(--company-header-font-family, inherit);
  font-weight: 700;
  color: inherit;
}
.prose iframe{
  max-width: 100%;
}
@tailwind utilities;
.capitalize-first::first-letter{text-transform:uppercase}
.text-shadow{text-shadow:0 2px 38px rgba(0,0,0,.28)}
@media only percy{.hide-in-percy{display:none}}
.font-company-header{font-family:var(--company-header-font-family);font-weight:var(--company-header-font-weight)}
.font-company-body{font-family:var(--company-body-font-family);font-weight:var(--company-body-font-weight)}
.company-link:not(.no-company-style), .tt-cookie-alert a:not(.no-company-style), .tt-cookie-alert__preferences-btn:not(.no-company-style), .company-links a:not(.no-company-style), .tt-cookie-alert__content a:not(.no-company-style){
  color: rgba(var(--company-link-color), 1);
  color: rgba(var(--company-link-color), var(--tw-text-opacity, 1));
  text-decoration: none;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}
.company-link:not(.no-company-style):hover, .tt-cookie-alert a:not(.no-company-style):hover, .tt-cookie-alert__preferences-btn:not(.no-company-style):hover, .company-links a:not(.no-company-style):hover, .tt-cookie-alert__content a:not(.no-company-style):hover{
  transition-property: opacity;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.company-link:not(.no-company-style):hover:hover, .tt-cookie-alert a:not(.no-company-style):hover:hover, .tt-cookie-alert__preferences-btn:not(.no-company-style):hover:hover, .company-links a:not(.no-company-style):hover:hover, .tt-cookie-alert__content a:not(.no-company-style):hover:hover{
  opacity: 0.75;
}
.group:hover .company-link:not(.no-company-style):hover, .group:hover .tt-cookie-alert a:not(.no-company-style):hover, .group:hover .tt-cookie-alert__preferences-btn:not(.no-company-style):hover, .group:hover .company-links a:not(.no-company-style):hover, .group:hover .tt-cookie-alert__content a:not(.no-company-style):hover{
  opacity: 0.75;
}
.company-link:not(.no-company-style).text-company-secondary-bg,.tt-cookie-alert a:not(.no-company-style).text-company-secondary-bg,.tt-cookie-alert__preferences-btn:not(.no-company-style).text-company-secondary-bg,.company-links a:not(.no-company-style).text-company-secondary-bg,.tt-cookie-alert__content a:not(.no-company-style).text-company-secondary-bg{color:rgba(var(--company-secondary-bg-color), 1);color:rgba(var(--company-secondary-bg-color), var(--tw-text-opacity, 1))}
.company-links.text-company-secondary a:not(.no-company-style), .text-company-secondary.tt-cookie-alert__content a:not(.no-company-style), .company-links .text-company-secondary a:not(.no-company-style), .tt-cookie-alert__content .text-company-secondary a:not(.no-company-style){
  color: rgba(var(--company-secondary-text-color), 1);
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1));
  text-decoration: underline;
}
.text-company-secondary .company-links a:not(.no-company-style), .text-company-secondary .tt-cookie-alert__content a:not(.no-company-style){
  color: rgba(var(--company-secondary-text-color), 1);
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1));
  text-decoration: underline;
}
.modal-content.default-style{
  overflow-wrap: break-word;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgba(52, 53, 58, var(--tw-text-opacity));
}
.modal-content.default-style>*+*{
  margin-top: 0;
  margin-bottom: 16px;
}
.modal-content.default-style a{
  font-weight: 600;
  color: rgba(var(--company-link-color), 1);
  color: rgba(var(--company-link-color), var(--tw-text-opacity, 1));
}
.modal-content.default-style--connect a{
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgba(126, 103, 227, var(--tw-text-opacity));
}
.modal-content.default-style li+li{
  margin-top: 4px;
}
.modal-content.default-style li>p+p{
  margin-top: 24px;
}
.modal-content.default-style strong{
  font-weight: 600;
}
.modal-content.default-style p{
  font-size: 18px;
}
.modal-content.default-style strong a{
  font-weight: 700;
}
.modal-content.default-style h1{
  margin-bottom: 16px;
  margin-top: 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.20;
}
.modal-content.default-style h2{
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.20;
}
.modal-content.default-style h3{
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.375;
}
.modal-content.default-style h4{
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}
.modal-content.default-style h5{
  margin-bottom: 8px;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.20;
}
.modal-content.default-style h6{
  margin-bottom: 16px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.20;
  --tw-text-opacity: 1;
  color: rgba(87, 89, 95, var(--tw-text-opacity));
}
.modal-content.default-style blockquote{
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-color: rgba(238, 239, 242, var(--tw-border-opacity));
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;
  --tw-text-opacity: 1;
  color: rgba(87, 89, 95, var(--tw-text-opacity));
}
.modal-content.default-style code{
  display: inline;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgba(248, 248, 249, var(--tw-bg-opacity));
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: 14px;
}
.modal-content.default-style pre{
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgba(248, 248, 249, var(--tw-bg-opacity));
  padding: 16px;
}
.modal-content.default-style pre code{
  display: block;
  overflow: visible;
  border-radius: 0;
  background-color: transparent;
  padding: 0;
}
.modal-content.default-style ul{
  list-style-type: disc;
  padding-left: 32px;
  font-size: 16px;
}
.modal-content.default-style ol{
  list-style-type: decimal;
  padding-left: 32px;
  font-size: 16px;
}
.modal-content.default-style table{
  --tw-border-opacity: 1;
  border-color: rgba(87, 89, 95, var(--tw-border-opacity));
  font-size: 16px;
}
.modal-content.default-style th{
  border-width: 1px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
}
.modal-content.default-style td{
  border-width: 1px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
}
.dz-drag-hover .dz-message{
  opacity: 0.75;
}
.dz-drag-hover .dz-message .dz-message-inactive{
  display: none;
}
.dz-drag-hover .dz-message .dz-message-hovering{
  display: block;
}
.iti--medium-flag-padding .iti__selected-flag{
  padding-left: 16px !important;
  padding-right: 8px !important;
}
.iti--medium-flag-padding.iti--allow-dropdown input{
  padding-left: 64px !important;
}
.iti--large-flag-padding .iti__selected-flag{
  padding-left: 24px !important;
  padding-right: 8px !important;
}
.iti--large-flag-padding .iti__selected-flag:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.iti--large-flag-padding.iti--allow-dropdown input{
  padding-left: 72px !important;
}
.iti__flag-container{
  padding: 0 !important;
}
.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag{
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-style: none !important;
}
.iti--allow-dropdown .iti__flag-container:focus, .iti--separate-dial-code .iti__flag-container:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.choice-input-wrapper{
  position: relative;
  margin-right: 8px;
  transform: var(--tw-transform);
  border-radius: 10px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-ring-inset: inset;
}
.choice-input-wrapper:hover, .choice-input-wrapper:focus-within{
  --tw-translate-y: -1px;
  transform: var(--tw-transform);
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.choice-input-wrapper--error{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(222, 0, 0, var(--tw-ring-opacity));
}
.choice-input-wrapper__input{
  position: absolute;
  left: 20px;
  top: 50%;
  --tw-border-opacity: 1;
  border-color: rgba(144, 144, 149, var(--tw-border-opacity));margin-top:-8px;
}
.choice-input-wrapper__input[type=checkbox]{
  border-radius: 3px;
}
.choice-input-wrapper__label{
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 20px;
  padding-left: 48px;
  font-size: 18px;
}
.rangeslider{position:relative;display:block;visibility:hidden;cursor:pointer;height:33px;width:100%}
.rangeslider__fill,.rangeslider__fill__bg{display:block;position:absolute;top:50%;height:13px;z-index:2;background:#34353a;border-radius:10px;will-change:width}
.rangeslider__handle{will-change:width,height,top;width:33px;height:33px;position:absolute;box-shadow:0px 0px 15px -7px rgba(0,0,0,.5);top:7px;background:#ffffff;display:inline-block;z-index:3;cursor:pointer;border:solid 4px #34353a;border-radius:50%;transition:width .1s ease-in-out,height .1s ease-in-out,top .1s ease-in-out}
.rangeslider__handle:hover{box-shadow:0px 0px 15px -3px rgba(0,0,0,.5)}
.rangeslider__fill__bg{background:#f8f8f9;box-shadow:inset 0 1px 3px 0 rgba(0,0,0,.07);width:100%}
.rangeslider--disabled{opacity:.4}
.ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-chooser-button-0, .ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-chooser-button-2{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 53, 58, var(--tw-bg-opacity));
}
.ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-chooser-icon-container, .ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-chooser-button-1{
  --tw-text-opacity: 1;
  color: rgba(52, 53, 58, var(--tw-text-opacity));
}
.ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-controlbar{
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 640px){.ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-controlbar{
    padding-left: 16px;
    padding-right: 16px;
  }}
.ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-rightbutton-container{
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 640px){.ba-videorecorder-container.ba-recorder-theme-modern .ba-videorecorder-rightbutton-container{
    padding-left: 8px;
    padding-right: 8px;
  }}
.button{
  display: block;
  transform: var(--tw-transform);
  cursor: pointer;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgba(126, 103, 227, var(--tw-bg-opacity));
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-duration: 150ms;
}
@media (min-width: 640px){.button{
    padding-top: 12px;
    padding-bottom: 12px;
  }.button{
    line-height: 1.5;
  }.button--fat{
    padding-top: 16px;
    padding-bottom: 16px;
  }}
.button--company{
  background-color: rgba(var(--company-button-bg-color), 1);
  background-color: rgba(var(--company-button-bg-color), var(--tw-bg-opacity, 1));
  color: rgba(var(--company-button-text-color), 1);
  color: rgba(var(--company-button-text-color), var(--tw-text-opacity, 1));
}
.button:hover:not(.button--disabled){
  --tw-translate-y: -1px;
  transform: var(--tw-transform);
  opacity: 0.9;
  --tw-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.button:disabled, .button--disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.button--error{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 0, 0, var(--tw-bg-opacity));
}
.button--white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(52, 53, 58, var(--tw-text-opacity));
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.button--white:disabled, .button--white.button--disabled{
  opacity: 0.75;
}
.button--white:hover:not(.button--disabled){
  opacity: 1;
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.button--icon{
  display: flex;
  height: 55px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.tt-cookie-alert{
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 26;
}
@media (min-width: 768px){.tt-cookie-alert{
    bottom: 40px;
  }.tt-cookie-alert{
    left: 40px;
  }.tt-cookie-alert{
    right: 40px;
  }}
.tt-cookie-alert__content{
  display: flex;
  max-height: 80vh;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow-y: auto;
  border-radius: 8px;
  background-color: rgba(var(--company-primary-bg-color), 1);
  background-color: rgba(var(--company-primary-bg-color), var(--tw-bg-opacity, 1));
  padding: 16px;
  color: rgba(var(--company-primary-text-color), 1);
  color: rgba(var(--company-primary-text-color), var(--tw-text-opacity, 1));
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 1024px){.tt-cookie-alert__content{
    flex-direction: row;
  }.tt-cookie-alert__content{
    padding: 40px;
  }.tt-cookie-alert__content{max-height:calc(100vh - 40px)}}
.tt-cookie-alert__message{
  width: 100%;
  max-width: 1280px;
  overflow-y: auto;
}
.tt-cookie-alert__header{
  display: block;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}
.tt-cookie-alert__body{
  display: block;
  overflow-y: auto;
  text-align: left;
}
.tt-cookie-alert__logotype{
  margin-bottom: 20px;
  height: 64px;
  text-align: center;
}
.tt-cookie-alert__logotype img{
  height: auto;
  max-height: 64px;
  max-width: 200px;
}
.tt-cookie-alert__actions{
  margin-top: 24px;
  margin-bottom: 8px;
  display: flex;
  width: 100%;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px){.tt-cookie-alert__actions{
    width: auto;
  }.tt-cookie-alert__actions{
    flex-direction: row;
  }}
@media (min-width: 1024px){.tt-cookie-alert__actions{
    margin-top: 0;
  }.tt-cookie-alert__actions{
    margin-bottom: 0;
  }.tt-cookie-alert__actions{
    margin-left: 24px;
  }.tt-cookie-alert__actions{
    flex-direction: column;
  }.tt-cookie-alert__actions .tt-cookie-alert__preferences{order:3}}
.tt-cookie-alert__accept-btn{
  display: block;
  transform: var(--tw-transform);
  cursor: pointer;
  border-radius: 8px;
  --tw-bg-opacity: 1;
  background-color: rgba(126, 103, 227, var(--tw-bg-opacity));
  padding-left: 32px;
  padding-right: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-weight: 500;
  line-height: 1.625;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  --tw-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-duration: 150ms;
  margin-top: 10px;
  width: 100%;background-color:rgba(var(--company-button-bg-color), 1);background-color:rgba(var(--company-button-bg-color), var(--tw-bg-opacity, 1));color:rgba(var(--company-button-text-color), 1);color:rgba(var(--company-button-text-color), var(--tw-text-opacity, 1));
}
@media (min-width: 640px){.tt-cookie-alert__accept-btn{
    padding-top: 12px;
    padding-bottom: 12px;
  }.tt-cookie-alert__accept-btn{
    line-height: 1.5;
  }.tt-cookie-alert__accept-btn--fat{
    padding-top: 16px;
    padding-bottom: 16px;
  }}
.tt-cookie-alert__accept-btn--company{
  background-color: rgba(var(--company-button-bg-color), 1);
  background-color: rgba(var(--company-button-bg-color), var(--tw-bg-opacity, 1));
  color: rgba(var(--company-button-text-color), 1);
  color: rgba(var(--company-button-text-color), var(--tw-text-opacity, 1));
}
.tt-cookie-alert__accept-btn:hover:not(.button--disabled){
  --tw-translate-y: -1px;
  transform: var(--tw-transform);
  opacity: 0.9;
  --tw-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tt-cookie-alert__accept-btn:disabled, .tt-cookie-alert__accept-btn--disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.tt-cookie-alert__accept-btn--error{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 0, 0, var(--tw-bg-opacity));
}
.tt-cookie-alert__accept-btn--white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  --tw-text-opacity: 1;
  color: rgba(52, 53, 58, var(--tw-text-opacity));
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tt-cookie-alert__accept-btn--white:disabled, .tt-cookie-alert__accept-btn--white.button--disabled{
  opacity: 0.75;
}
.tt-cookie-alert__accept-btn--white:hover:not(.button--disabled){
  opacity: 1;
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.tt-cookie-alert__accept-btn--icon{
  display: flex;
  height: 55px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media (min-width: 768px){.tt-cookie-alert__accept-btn{
    margin-bottom: 10px;
  }.tt-cookie-alert__accept-btn{
    margin-top: 0;
  }}
.tt-cookie-alert a:hover, .tt-cookie-alert__preferences-btn:hover{
  opacity: 0.5;
}
.tt-cookie-alert__preferences-btn{
  padding: 8px;
  font-weight: 500;
}
@media (min-width: 1024px){.tt-cookie-alert--modal{
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }.tt-cookie-alert--modal{
    margin-bottom: 0;
  }.tt-cookie-alert--modal{
    display: flex;
  }.tt-cookie-alert--modal{
    height: 100vh;
  }.tt-cookie-alert--modal{
    align-items: center;
  }.tt-cookie-alert--modal{
    justify-content: center;
  }.tt-cookie-alert--modal .tt-cookie-alert__content{
    display: flex;
  }.tt-cookie-alert--modal .tt-cookie-alert__content{
    width: 650px;
  }.tt-cookie-alert--modal .tt-cookie-alert__content{
    flex-direction: column;
  }.tt-cookie-alert--modal .tt-cookie-alert__content{
    padding-left: 32px;
    padding-right: 32px;
  }.tt-cookie-alert--modal .tt-cookie-alert__content{
    padding-top: 48px;
    padding-bottom: 48px;
  }.tt-cookie-alert--modal .tt-cookie-alert__content{
    text-align: center;
  }.tt-cookie-alert--modal .tt-cookie-alert__message{
    margin-bottom: 24px;
  }.tt-cookie-alert--modal .tt-cookie-alert__message{
    text-align: center;
  }}
.tt-cookie-alert--hidden{
  display: none;
}
.tt-cookie-backdrop{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 25;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  padding: 16px;background-color:rgba(0,0,0,.8);
}
@media (min-width: 768px){.tt-cookie-backdrop{
    display: flex;
  }.tt-cookie-backdrop{
    align-items: center;
  }.tt-cookie-backdrop{
    justify-content: center;
  }}
.tt-cookie-backdrop--hidden{
  display: none;
}
.tt-cookie-preferences{
  max-height: 80vh;
  max-width: 640px;
  overflow: auto;
  border-radius: 8px;
  background-color: rgba(var(--company-primary-bg-color), 1);
  background-color: rgba(var(--company-primary-bg-color), var(--tw-bg-opacity, 1));
  padding: 16px;
  color: rgba(var(--company-primary-text-color), 1);
  color: rgba(var(--company-primary-text-color), var(--tw-text-opacity, 1));
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@media (min-width: 640px){.tt-cookie-preferences{
    padding: 40px;
  }}
@media (min-width: 1024px){.tt-cookie-preferences{max-height:calc(100vh - 40px)}}
.tt-cookie-preferences--hidden{
  display: none;
}
.tt-cookie-preferences__header{
  margin-bottom: 20px;
  text-align: center;
}
.tt-cookie-preferences__header h2{
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 700;
}
.tt-cookie-preferences__header p{
  text-align: left;
}
.tt-cookie-preferences__options{
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.375;
}
.tt-cookie-preferences__option{
  margin-bottom: 12px;
  display: flex;
  cursor: pointer;
}
.tt-cookie-preferences__option--disabled{
  cursor: default;
}
@media (min-width: 640px){.tt-cookie-preferences__option{
    margin-bottom: 20px;
  }}
.tt-cookie-preferences__option-header{
  font-weight: 600;
}
.tt-cookie-preferences__option-summary{
  margin-left: 16px;
  display: flex;
  flex-direction: column;
}
.tt-cookie-preferences__option-summary--disabled{
  opacity: 0.5;
}
.tt-cookie-preferences__actions{
  display: flex;
  justify-content: center;
}
.tt-cookie-preferences .label-switch{
  position: relative;
  margin-top: 4px;
  width: 35px;
  flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  line-height: 1.5;
}
.tt-cookie-preferences .label-switch input[type=checkbox]{
  display: none;
}
.tt-cookie-preferences .label-switch input[type=checkbox]:checked+.checkbox{background-color:rgba(var(--company-secondary-bg-color), 1);background-color:rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1))}
.tt-cookie-preferences .label-switch input[type=checkbox]:checked+.checkbox:before{
  right: 0;
}
.tt-cookie-preferences .label-switch .checkbox{
  display: block;
  height: 18px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(144, 144, 149, var(--tw-bg-opacity));transition:background-color .1s ease-in;
}
.tt-cookie-preferences .label-switch .checkbox:before{
  position: absolute;
  margin: 2px;
  display: block;
  height: 14px;
  width: 14px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));right:calc(100% - 18px);transition:all .1s ease-in;content:"";
}
.header-menu-burger{
  position: relative;
  margin-right: 8px;
  height: 18px;
  width: 24px;
  --tw-rotate: 0;
  transform: var(--tw-transform);
  transform: var(--tw-transform);
}
.header-menu-burger__item{
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 2px;
  width: 100%;
  --tw-rotate: 0;
  transform: var(--tw-transform);
  transform: var(--tw-transform);
  border-radius: 8px;
  opacity: 1;
  transition-property: all;
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);background-color:#ffffff;background-color:var(--header-text-color, #ffffff);
}
.header-menu-burger__item:nth-child(2), .header-menu-burger__item:nth-child(3){
  top: 8px;
}
.header-menu-burger__item:nth-child(4){
  top: 16px;
}
.header-menu-burger--open .header-menu-burger__item{background-color:#ffffff}
.header-menu-burger--open .header-menu-burger__item:nth-child(1), .header-menu-burger--open .header-menu-burger__item:nth-child(4){
  top: 8px;
  left: 50%;
  width: 0;
}
.header-menu-burger--open .header-menu-burger__item:nth-child(2){
  --tw-rotate: 45deg;
  transform: var(--tw-transform);
}
.header-menu-burger--open .header-menu-burger__item:nth-child(3){
  --tw-rotate: -45deg;
  transform: var(--tw-transform);
}
@-webkit-keyframes zoomInAndScale{from{opacity:0;transform:translateY(10px) scale(0.98)}to{opacity:1;transform:translateY(0px) scale(1)}}
@keyframes zoomInAndScale{from{opacity:0;transform:translateY(10px) scale(0.98)}to{opacity:1;transform:translateY(0px) scale(1)}}
.animate__zoomInAndScale{-webkit-animation-name:zoomInAndScale;animation-name:zoomInAndScale;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-delay:.8s;animation-delay:.8s;-webkit-animation-fill-mode:backwards;animation-fill-mode:backwards}
.lined-background{
  position: relative;
}
.lined-background:before{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  top: 50%;
  height: 1px;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgba(238, 239, 242, var(--tw-bg-opacity));content:"";
}
.lined-background__text{
  position: relative;
  --tw-bg-opacity: 1;
  background-color: rgba(248, 248, 249, var(--tw-bg-opacity));
  padding-left: 16px;
  padding-right: 16px;
}
.lined-background--company:before{
  background-color: transparent;background-image:radial-gradient(50% 100%, var(--company-secondary-text-color) 70%, var(--company-secondary-bg-fallback-color) 100%);
}
.lined-background--company .lined-background__text{
  background-color: rgba(var(--company-secondary-bg-fallback-color), 1);
  background-color: rgba(var(--company-secondary-bg-fallback-color), var(--tw-bg-opacity, 1));
  color: rgba(var(--company-secondary-text-color), 1);
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1));
}
.careersite-button{
  display: inline-block;
  max-width: 640px;
  cursor: pointer;
  border-radius: var(--company-border-radius);
  background-color: rgba(var(--company-button-bg-color), 1);
  background-color: rgba(var(--company-button-bg-color), var(--tw-bg-opacity, 1));
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 16px;
  padding-bottom: 16px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.375;
  color: rgba(var(--company-button-text-color), 1);
  color: rgba(var(--company-button-text-color), var(--tw-text-opacity, 1));
}
.careersite-button:hover{
  background-color: rgba(var(--company-button-bg-light-5-color), 1);
  background-color: rgba(var(--company-button-bg-light-5-color), var(--tw-bg-opacity, 1));
}
.careersite-button--secondary{
  background-color: rgba(var(--company-secondary-text-color), 1);
  background-color: rgba(var(--company-secondary-text-color), var(--tw-bg-opacity, 1));
  color: rgba(var(--company-secondary-bg-color), 1);
  color: rgba(var(--company-secondary-bg-color), var(--tw-text-opacity, 1));
}
.careersite-button--secondary:hover{
  background-color: rgba(var(--company-secondary-text-light-5-color), 1);
  background-color: rgba(var(--company-secondary-text-light-5-color), var(--tw-bg-opacity, 1));
}
.careersite-button--outlined{
  border-width: 2px;
  border-color: rgb(var(--company-button-bg-color));
  background-color: transparent;
  color: rgba(var(--company-button-bg-color), 1);
  color: rgba(var(--company-button-bg-color), var(--tw-text-opacity, 1));
}
.careersite-button--outlined:hover{
  background-color: transparent;
  color: rgba(var(--company-button-bg-light-15-color), 1);
  color: rgba(var(--company-button-bg-light-15-color), var(--tw-text-opacity, 1));
}
.careersite-button--secondary-outlined{
  border-width: 2px;
  border-color: rgb(var(--company-secondary-text-color));
  background-color: transparent;
  color: rgba(var(--company-secondary-text-color), 1);
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1));
}
.careersite-button--secondary-outlined:hover{
  background-color: transparent;
  color: rgba(var(--company-secondary-text-light-15-color), 1);
  color: rgba(var(--company-secondary-text-light-15-color), var(--tw-text-opacity, 1));
}
.careersite-button:disabled, .careersite-button--disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.pointer-events-none{
  pointer-events: none;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.inset-0{
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.top-0{
  top: 0;
}
.left-0{
  left: 0;
}
.right-0{
  right: 0;
}
.left-2{
  left: 8px;
}
.bottom-2{
  bottom: 8px;
}
.top-full{
  top: 100%;
}
.bottom-full{
  bottom: 100%;
}
.top-4{
  top: 16px;
}
.right-4{
  right: 16px;
}
.left-half{
  left: 50%;
}
.right-\[-15px\]{
  right: -15px;
}
.top-\[-30px\]{
  top: -30px;
}
.bottom-10{
  bottom: 40px;
}
.bottom-0{
  bottom: 0;
}
.left-\[-35px\]{
  left: -35px;
}
.bottom-\[30px\]{
  bottom: 30px;
}
.right-\[10px\]{
  right: 10px;
}
.top-\[0px\]{
  top: 0px;
}
.right-\[-12px\]{
  right: -12px;
}
.bottom-\[-27px\]{
  bottom: -27px;
}
.top-half{
  top: 50%;
}
.right-2{
  right: 8px;
}
.top-\[18px\]{
  top: 18px;
}
.bottom-5{
  bottom: 20px;
}
.left-full{
  left: 100%;
}
.right-\[-16px\]{
  right: -16px;
}
.bottom-3{
  bottom: 12px;
}
.top-3{
  top: 12px;
}
.right-half{
  right: 50%;
}
.top-10{
  top: 40px;
}
.right-8{
  right: 32px;
}
.left-\[-7px\]{
  left: -7px;
}
.top-\[-7px\]{
  top: -7px;
}
.right-\[-250px\]{
  right: -250px;
}
.left-\[-50px\]{
  left: -50px;
}
.bottom-\[25\%\]{
  bottom: 25%;
}
.z-career-autojoin{
  z-index: 15;
}
.z-career-block-content{
  z-index: 2;
}
.z-career-block-overlay{
  z-index: 1;
}
.z-career-locations-map{
  z-index: 5;
}
.z-new-blocks-button{
  z-index: 17;
}
.z-candidate-chat{
  z-index: 16;
}
.z-dropdown{
  z-index: 23;
}
.z-editor-button{
  z-index: 21;
}
.z-career-header{
  z-index: 18;
}
.z-modal{
  z-index: 22;
}
.z-career-footer{
  z-index: 14;
}
.z-connect-back-button{
  z-index: 11;
}
.z-behind{
  z-index: -1;
}
.z-career-job-card-image{
  z-index: 13;
}
.z-career-grid-item-overlay{
  z-index: 3;
}
.z-career-grid-item-title{
  z-index: 4;
}
.z-career-header-menu-button{
  z-index: 20;
}
.z-career-header-menu-content{
  z-index: 19;
}
.z-connect-picture-input{
  z-index: 6;
}
.z-connect-picture-remove{
  z-index: 7;
}
.z-phone-input-flag{
  z-index: 12;
}
.z-connect-welcome-picture{
  z-index: 10;
}
.m-auto{
  margin: auto;
}
.m-0-auto{
  margin: 0 auto;
}
.m-2{
  margin: 8px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mx-2{
  margin-left: 8px;
  margin-right: 8px;
}
.my-12{
  margin-top: 48px;
  margin-bottom: 48px;
}
.mx-\[2px\]{
  margin-left: 2px;
  margin-right: 2px;
}
.my-8{
  margin-top: 32px;
  margin-bottom: 32px;
}
.my-3{
  margin-top: 12px;
  margin-bottom: 12px;
}
.my-1{
  margin-top: 4px;
  margin-bottom: 4px;
}
.mx-3{
  margin-left: 12px;
  margin-right: 12px;
}
.my-6{
  margin-top: 24px;
  margin-bottom: 24px;
}
.-mx-2{
  margin-left: -8px;
  margin-right: -8px;
}
.mx-4{
  margin-left: 16px;
  margin-right: 16px;
}
.my-2{
  margin-top: 8px;
  margin-bottom: 8px;
}
.mx-25{
  margin-left: 100px;
  margin-right: 100px;
}
.mx-12{
  margin-left: 48px;
  margin-right: 48px;
}
.my-10{
  margin-top: 40px;
  margin-bottom: 40px;
}
.mb-4{
  margin-bottom: 16px;
}
.mt-12{
  margin-top: 48px;
}
.mt-15{
  margin-top: 60px;
}
.mb-\[27px\]{
  margin-bottom: 27px;
}
.mb-\[67px\]{
  margin-bottom: 67px;
}
.mb-8{
  margin-bottom: 32px;
}
.mb-10{
  margin-bottom: 40px;
}
.mt-8{
  margin-top: 32px;
}
.mb-6{
  margin-bottom: 24px;
}
.mt-auto{
  margin-top: auto;
}
.ml-1{
  margin-left: 4px;
}
.mt-2{
  margin-top: 8px;
}
.mb-20{
  margin-bottom: 80px;
}
.mt-6{
  margin-top: 24px;
}
.mb-2{
  margin-bottom: 8px;
}
.mt-4{
  margin-top: 16px;
}
.mb-5{
  margin-bottom: 20px;
}
.mt-\[-1px\]{
  margin-top: -1px;
}
.mr-2{
  margin-right: 8px;
}
.mb-1{
  margin-bottom: 4px;
}
.ml-2{
  margin-left: 8px;
}
.-mt-1\/2{
  margin-top: -2px;
}
.mr-3{
  margin-right: 12px;
}
.mt-1{
  margin-top: 4px;
}
.ml-3{
  margin-left: 12px;
}
.mr-auto{
  margin-right: auto;
}
.mr-4{
  margin-right: 16px;
}
.-ml-3{
  margin-left: -12px;
}
.ml-8{
  margin-left: 32px;
}
.mr-8{
  margin-right: 32px;
}
.mr-1{
  margin-right: 4px;
}
.ml-6{
  margin-left: 24px;
}
.-ml-px{
  margin-left: -1px;
}
.mr-5{
  margin-right: 20px;
}
.mt-3{
  margin-top: 12px;
}
.mb-3{
  margin-bottom: 12px;
}
.mb-12{
  margin-bottom: 48px;
}
.mb-14{
  margin-bottom: 56px;
}
.mr-px{
  margin-right: 1px;
}
.mb-15{
  margin-bottom: 60px;
}
.mt-10{
  margin-top: 40px;
}
.-mb-2{
  margin-bottom: -8px;
}
.ml-4{
  margin-left: 16px;
}
.-mr-8{
  margin-right: -32px;
}
.-ml-6{
  margin-left: -24px;
}
.-mr-6{
  margin-right: -24px;
}
.-ml-4{
  margin-left: -16px;
}
.mb-1\/2{
  margin-bottom: 2px;
}
.mb-16{
  margin-bottom: 64px;
}
.-mt-2{
  margin-top: -8px;
}
.mt-1\/2{
  margin-top: 2px;
}
.mr-\[100px\]{
  margin-right: 100px;
}
.mt-0{
  margin-top: 0;
}
.mt-16{
  margin-top: 64px;
}
.mb-\[18px\]{
  margin-bottom: 18px;
}
.mt-20{
  margin-top: 80px;
}
.mr-0{
  margin-right: 0;
}
.ml-0{
  margin-left: 0;
}
.mr-6{
  margin-right: 24px;
}
.mt-\[160px\]{
  margin-top: 160px;
}
.mt-5{
  margin-top: 20px;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.h-full{
  height: 100%;
}
.h-\[600px\]{
  height: 600px;
}
.h-1{
  height: 4px;
}
.h-\[320px\]{
  height: 320px;
}
.h-\[500px\]{
  height: 500px;
}
.h-\[80px\]{
  height: 80px;
}
.h-12{
  height: 48px;
}
.h-20{
  height: 80px;
}
.h-5{
  height: 20px;
}
.h-screen{
  height: 100vh;
}
.h-\[152px\]{
  height: 152px;
}
.h-6{
  height: 24px;
}
.h-auto{
  height: auto;
}
.h-4{
  height: 16px;
}
.h-8{
  height: 32px;
}
.h-3{
  height: 12px;
}
.h-40{
  height: 160px;
}
.h-\[48px\]{
  height: 48px;
}
.h-\[70px\]{
  height: 70px;
}
.h-\[62px\]{
  height: 62px;
}
.h-0{
  height: 0;
}
.h-px{
  height: 1px;
}
.h-\[33\.33vw\]{
  height: 33.33vw;
}
.h-\[2px\]{
  height: 2px;
}
.h-2{
  height: 8px;
}
.h-1\/2{
  height: 2px;
}
.h-\[170px\]{
  height: 170px;
}
.h-\[160px\]{
  height: 160px;
}
.h-10{
  height: 40px;
}
.h-30{
  height: 120px;
}
.h-\[6px\]{
  height: 6px;
}
.h-\[90px\]{
  height: 90px;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[104px\]{
  height: 104px;
}
.h-\[40px\]{
  height: 40px;
}
.h-\[60px\]{
  height: 60px;
}
.max-h-0{
  max-height: 0;
}
.max-h-\[90\%\]{
  max-height: 90%;
}
.max-h-\[70vh\]{
  max-height: 70vh;
}
.max-h-screen{
  max-height: 100vh;
}
.max-h-50{
  max-height: 200px;
}
.max-h-\[80\%\]{
  max-height: 80%;
}
.max-h-15{
  max-height: 60px;
}
.max-h-full{
  max-height: 100%;
}
.max-h-\[70px\]{
  max-height: 70px;
}
.max-h-\[320px\]{
  max-height: 320px;
}
.max-h-\[48px\]{
  max-height: 48px;
}
.min-h-\[400px\]{
  min-height: 400px;
}
.min-h-screen{
  min-height: 100vh;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[180px\]{
  min-height: 180px;
}
.min-h-\[360px\]{
  min-height: 360px;
}
.min-h-\[70px\]{
  min-height: 70px;
}
.min-h-\[96px\]{
  min-height: 96px;
}
.w-full{
  width: 100%;
}
.w-5{
  width: 20px;
}
.w-1{
  width: 4px;
}
.w-\[400px\]{
  width: 400px;
}
.w-50{
  width: 200px;
}
.w-12{
  width: 48px;
}
.w-screen{
  width: 100vw;
}
.w-6{
  width: 24px;
}
.w-4{
  width: 16px;
}
.w-8{
  width: 32px;
}
.w-3{
  width: 12px;
}
.w-40{
  width: 160px;
}
.w-\[48px\]{
  width: 48px;
}
.w-\[210px\]{
  width: 210px;
}
.w-18{
  width: 72px;
}
.w-2\/3{
  width: 66.666667%;
}
.w-\[33\.33vw\]{
  width: 33.33vw;
}
.w-\[96\%\]{
  width: 96%;
}
.w-1\/2{
  width: 2px;
}
.w-half{
  width: 50%;
}
.w-2{
  width: 8px;
}
.w-\[170px\]{
  width: 170px;
}
.w-\[160px\]{
  width: 160px;
}
.w-10{
  width: 40px;
}
.w-\[50px\]{
  width: 50px;
}
.w-30{
  width: 120px;
}
.w-35{
  width: 140px;
}
.w-auto{
  width: auto;
}
.w-0{
  width: 0;
}
.w-\[250px\]{
  width: 250px;
}
.w-\[90px\]{
  width: 90px;
}
.w-\[200px\]{
  width: 200px;
}
.w-20{
  width: 80px;
}
.w-\[104px\]{
  width: 104px;
}
.w-\[750px\]{
  width: 750px;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[40px\]{
  width: 40px;
}
.w-\[60px\]{
  width: 60px;
}
.w-\[115px\]{
  width: 115px;
}
.w-\[80\%\]{
  width: 80%;
}
.min-w-full{
  min-width: 100%;
}
.min-w-\[220px\]{
  min-width: 220px;
}
.min-w-\[175px\]{
  min-width: 175px;
}
.min-w-\[225px\]{
  min-width: 225px;
}
.min-w-\[200px\]{
  min-width: 200px;
}
.min-w-\[340px\]{
  min-width: 340px;
}
.min-w-\[280px\]{
  min-width: 280px;
}
.max-w-screen-lg{
  max-width: 1024px;
}
.max-w-\[500px\]{
  max-width: 500px;
}
.max-w-\[480px\]{
  max-width: 480px;
}
.max-w-\[750px\]{
  max-width: 750px;
}
.max-w-full{
  max-width: 100%;
}
.max-w-\[180px\]{
  max-width: 180px;
}
.max-w-920{
  max-width: 920px;
}
.max-w-screen-xl{
  max-width: 1280px;
}
.max-w-\[856px\]{
  max-width: 856px;
}
.max-w-650{
  max-width: 650px;
}
.max-w-500{
  max-width: 500px;
}
.max-w-\[70\%\]{
  max-width: 70%;
}
.max-w-\[80\%\]{
  max-width: 80%;
}
.max-w-none{
  max-width: none;
}
.max-w-\[75\%\]{
  max-width: 75%;
}
.max-w-\[150px\]{
  max-width: 150px;
}
.max-w-screen-sm{
  max-width: 640px;
}
.max-w-674{
  max-width: 674px;
}
.max-w-\[1600px\]{
  max-width: 1600px;
}
.max-w-\[125px\]{
  max-width: 125px;
}
.max-w-\[200px\]{
  max-width: 200px;
}
.max-w-\[328px\]{
  max-width: 328px;
}
.max-w-\[680px\]{
  max-width: 680px;
}
.max-w-\[100\%\]{
  max-width: 100%;
}
.flex-1{
  flex: 1 1;
}
.flex-100{
  flex: 0 1 100px;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.flex-grow-0{
  flex-grow: 0;
}
.table-auto{
  table-layout: auto;
}
.origin-center{
  transform-origin: center;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: var(--tw-transform);
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  transform: var(--tw-transform);
}
.translate-x-1\/2{
  --tw-translate-x: 50%;
  transform: var(--tw-transform);
}
.translate-y-1\/2{
  --tw-translate-y: 50%;
  transform: var(--tw-transform);
}
.translate-x-full{
  --tw-translate-x: 100%;
  transform: var(--tw-transform);
}
.-rotate-45{
  --tw-rotate: -45deg;
  transform: var(--tw-transform);
}
.rotate-45{
  --tw-rotate: 45deg;
  transform: var(--tw-transform);
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: var(--tw-transform);
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: var(--tw-transform);
}
.scale-0{
  --tw-scale-x: 0;
  --tw-scale-y: 0;
  transform: var(--tw-transform);
}
.transform{
  transform: var(--tw-transform);
}
@-webkit-keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.animate-spin{
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}
@keyframes ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}
.animate-ping{
  -webkit-animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
          animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.cursor-pointer{
  cursor: pointer;
}
.resize-none{
  resize: none;
}
.resize-y{
  resize: vertical;
}
.resize{
  resize: both;
}
.list-disc{
  list-style-type: disc;
}
.appearance-none{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr);
}
.auto-cols-max{
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
}
.grid-flow-row{
  grid-auto-flow: row;
}
.grid-flow-col{
  grid-auto-flow: column;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-col-reverse{
  flex-direction: column-reverse;
}
.flex-wrap{
  flex-wrap: wrap;
}
.content-between{
  align-content: space-between;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-start{
  justify-content: flex-start;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.justify-items-center{
  justify-items: center;
}
.gap-\[48px\]{
  grid-gap: 48px;
  gap: 48px;
}
.gap-12{
  grid-gap: 48px;
  gap: 48px;
}
.gap-4{
  grid-gap: 16px;
  gap: 16px;
}
.gap-8{
  grid-gap: 32px;
  gap: 32px;
}
.gap-2{
  grid-gap: 8px;
  gap: 8px;
}
.gap-1{
  grid-gap: 4px;
  gap: 4px;
}
.gap-x-6{
  grid-column-gap: 24px;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
.gap-y-4{
  grid-row-gap: 16px;
  row-gap: 16px;
}
.gap-y-3{
  grid-row-gap: 12px;
  row-gap: 12px;
}
.gap-y-9{
  grid-row-gap: 36px;
  row-gap: 36px;
}
.gap-x-3{
  grid-column-gap: 12px;
  -moz-column-gap: 12px;
       column-gap: 12px;
}
.space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(4px * var(--tw-space-x-reverse));
  margin-left: calc(4px * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(32px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(32px * var(--tw-space-y-reverse));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(48px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(48px * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.self-center{
  align-self: center;
}
.justify-self-end{
  justify-self: end;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.overflow-x-scroll{
  overflow-x: scroll;
}
.overflow-y-scroll{
  overflow-y: scroll;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.overflow-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 8px;
}
.rounded-2{
  border-radius: 8px;
}
.rounded-xs{
  border-radius: 4px;
}
.rounded-sm{
  border-radius: 6px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-md{
  border-radius: 10px;
}
.rounded-company{
  border-radius: var(--company-border-radius);
}
.rounded-block{
  border-radius: 8px;
  border-radius: var(--block-border-radius, 8px);
}
.border-0{
  border-width: 0;
}
.border-4{
  border-width: 4px;
}
.border-2{
  border-width: 2px;
}
.border{
  border-width: 1px;
}
.border-3{
  border-width: 3px;
}
.border-t{
  border-top-width: 1px;
}
.border-b-3{
  border-bottom-width: 3px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-r{
  border-right-width: 1px;
}
.border-t-0{
  border-top-width: 0;
}
.border-l-0{
  border-left-width: 0;
}
.border-r-0{
  border-right-width: 0;
}
.border-b-2{
  border-bottom-width: 2px;
}
.border-solid{
  border-style: solid;
}
.border-dashed{
  border-style: dashed;
}
.border-none{
  border-style: none;
}
.border-company-primary-text{
  border-color: rgba(var(--company-primary-text-color), 1);
  border-color: rgba(var(--company-primary-text-color), var(--tw-border-opacity, 1));
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.border-gray-600{
  --tw-border-opacity: 1;
  border-color: rgba(87, 89, 95, var(--tw-border-opacity));
}
.border-share-gray-6{
  --tw-border-opacity: 1;
  border-color: rgba(238, 239, 242, var(--tw-border-opacity));
}
.border-share-gray-31{
  --tw-border-opacity: 1;
  border-color: rgba(173, 174, 178, var(--tw-border-opacity));
}
.border-company-secondary-text{
  border-color: rgb(var(--company-secondary-text-color));
}
.border-block-base-text{
  border-color: rgba(var(--block-base-text-color), 1);
  border-color: rgba(var(--block-base-text-color), var(--tw-border-opacity, 1));
}
.border-block-base-bg{
  border-color: rgba(var(--block-base-background-color), 1);
  border-color: rgba(var(--block-base-background-color), var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgba(238, 239, 242, var(--tw-border-opacity));
}
.border-share-gray-9{
  --tw-border-opacity: 1;
  border-color: rgba(229, 230, 233, var(--tw-border-opacity));
}
.border-company-secondary-bg{
  border-color: rgb(var(--company-secondary-bg-color));
}
.border-opacity-15{
  --tw-border-opacity: 0.15;
}
.border-opacity-100{
  --tw-border-opacity: 1;
}
.border-opacity-25{
  --tw-border-opacity: 0.25;
}
.bg-company-primary{
  background-color: rgba(var(--company-primary-bg-color), 1);
  background-color: rgba(var(--company-primary-bg-color), var(--tw-bg-opacity, 1));
}
.bg-company-secondary{
  background-color: rgba(var(--company-secondary-bg-color), 1);
  background-color: rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1));
}
.bg-company-primary-text{
  background-color: rgba(var(--company-primary-text-color), 1);
  background-color: rgba(var(--company-primary-text-color), var(--tw-bg-opacity, 1));
}
.bg-company-secondary-fallback{
  background-color: rgba(var(--company-secondary-bg-fallback-color), 1);
  background-color: rgba(var(--company-secondary-bg-fallback-color), var(--tw-bg-opacity, 1));
}
.bg-company-secondary-text{
  background-color: rgba(var(--company-secondary-text-color), 1);
  background-color: rgba(var(--company-secondary-text-color), var(--tw-bg-opacity, 1));
}
.bg-company-button{
  background-color: rgba(var(--company-button-bg-color), 1);
  background-color: rgba(var(--company-button-bg-color), var(--tw-bg-opacity, 1));
}
.bg-block-background{
  background-color: var(--block-background-color);
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-teamtailor-pink{
  --tw-bg-opacity: 1;
  background-color: rgba(244, 63, 133, var(--tw-bg-opacity));
}
.bg-\[rgba\(0\2c 0\2c 0\2c 0\.3\)\]{
  background-color: rgba(0,0,0,0.3);
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 248, 249, var(--tw-bg-opacity));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgba(222, 0, 0, var(--tw-bg-opacity));
}
.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgba(144, 144, 149, var(--tw-bg-opacity));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 239, 242, var(--tw-bg-opacity));
}
.bg-purple-500{
  --tw-bg-opacity: 1;
  background-color: rgba(126, 103, 227, var(--tw-bg-opacity));
}
.bg-share-gray-84{
  --tw-bg-opacity: 1;
  background-color: rgba(40, 40, 43, var(--tw-bg-opacity));
}
.bg-transparent{
  background-color: transparent;
}
.bg-block-image{
  background-color: var(--block-image-background);
}
.bg-block-base-text{
  background-color: rgba(var(--block-base-text-color), 1);
  background-color: rgba(var(--block-base-text-color), var(--tw-bg-opacity, 1));
}
.bg-block-base-bg{
  background-color: rgba(var(--block-base-background-color), 1);
  background-color: rgba(var(--block-base-background-color), var(--tw-text-opacity, 1));
}
.bg-block-base-highlight{
  background-color: rgba(var(--block-base-highlight-color), 1);
  background-color: rgba(var(--block-base-highlight-color), var(--tw-bg-opacity, 1));
}
.bg-gray-600{
  --tw-bg-opacity: 1;
  background-color: rgba(87, 89, 95, var(--tw-bg-opacity));
}
.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgba(52, 53, 58, var(--tw-bg-opacity));
}
.bg-share-lime{
  --tw-bg-opacity: 1;
  background-color: rgba(126, 211, 33, var(--tw-bg-opacity));
}
.bg-share-red{
  --tw-bg-opacity: 1;
  background-color: rgba(208, 2, 27, var(--tw-bg-opacity));
}
.bg-share-gray-6{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 239, 242, var(--tw-bg-opacity));
}
.\!bg-company-secondary{
  background-color: rgba(var(--company-secondary-bg-color), 1) !important;
  background-color: rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1)) !important;
}
.bg-neon-carrot{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 135, 54, var(--tw-bg-opacity));
}
.bg-carnation{
  --tw-bg-opacity: 1;
  background-color: rgba(242, 85, 85, var(--tw-bg-opacity));
}
.bg-\[rgba\(53\2c 53\2c 53\2c 0\.4\)\]{
  background-color: rgba(53,53,53,0.4);
}
.bg-opacity-3{
  --tw-bg-opacity: 0.03;
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.bg-opacity-100{
  --tw-bg-opacity: 1;
}
.bg-opacity-15{
  --tw-bg-opacity: 0.15;
}
.bg-opacity-80{
  --tw-bg-opacity: 0.8;
}
.bg-opacity-\[7\%\]{
  --tw-bg-opacity: 7%;
}
.bg-gradient-block-base-border{
  background-image: linear-gradient(90deg, transparent 0%, rgba(var(--block-base-text-color), 0.25) 30%, rgba(var(--block-base-text-color), 0.25) 70%, transparent 100%);
}
.bg-gradient-cover-overlay{
  background-image: linear-gradient(rgba(00, 00, 00, 0.2), rgba(74, 74, 74, 0.4));
}
.bg-gradient-company-primary-text-border{
  background-image: linear-gradient(90deg, transparent 0%, rgba(var(--company-primary-text-color), 0.03) 30%, rgba(var(--company-primary-text-color), 0.03) 70%, transparent 100%);
}
.bg-cover{
  background-size: cover;
}
.bg-fixed{
  background-attachment: fixed;
}
.bg-center{
  background-position: center;
}
.bg-no-repeat{
  background-repeat: no-repeat;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-4{
  padding: 16px;
}
.p-2{
  padding: 8px;
}
.p-5{
  padding: 20px;
}
.p-3{
  padding: 12px;
}
.p-1{
  padding: 4px;
}
.p-10{
  padding: 40px;
}
.p-0{
  padding: 0;
}
.p-6{
  padding: 24px;
}
.p-8{
  padding: 32px;
}
.p-\[5px\]{
  padding: 5px;
}
.px-20{
  padding-left: 80px;
  padding-right: 80px;
}
.py-12{
  padding-top: 48px;
  padding-bottom: 48px;
}
.px-4{
  padding-left: 16px;
  padding-right: 16px;
}
.py-20{
  padding-top: 80px;
  padding-bottom: 80px;
}
.px-5{
  padding-left: 20px;
  padding-right: 20px;
}
.py-4{
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-25{
  padding-top: 100px;
  padding-bottom: 100px;
}
.py-2{
  padding-top: 8px;
  padding-bottom: 8px;
}
.px-3{
  padding-left: 12px;
  padding-right: 12px;
}
.py-3{
  padding-top: 12px;
  padding-bottom: 12px;
}
.px-6{
  padding-left: 24px;
  padding-right: 24px;
}
.py-16{
  padding-top: 64px;
  padding-bottom: 64px;
}
.py-1{
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-5{
  padding-top: 20px;
  padding-bottom: 20px;
}
.px-1\/2{
  padding-left: 2px;
  padding-right: 2px;
}
.px-8{
  padding-left: 32px;
  padding-right: 32px;
}
.px-\[16px\]{
  padding-left: 16px;
  padding-right: 16px;
}
.py-\[8px\]{
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-6{
  padding-top: 24px;
  padding-bottom: 24px;
}
.px-2{
  padding-left: 8px;
  padding-right: 8px;
}
.px-12{
  padding-left: 48px;
  padding-right: 48px;
}
.py-8{
  padding-top: 32px;
  padding-bottom: 32px;
}
.px-1{
  padding-left: 4px;
  padding-right: 4px;
}
.py-14{
  padding-top: 56px;
  padding-bottom: 56px;
}
.py-35{
  padding-top: 140px;
  padding-bottom: 140px;
}
.pt-12{
  padding-top: 48px;
}
.pb-18{
  padding-bottom: 72px;
}
.pl-6{
  padding-left: 24px;
}
.pr-10{
  padding-right: 40px;
}
.pl-3{
  padding-left: 12px;
}
.pt-4{
  padding-top: 16px;
}
.pb-20{
  padding-bottom: 80px;
}
.pt-\[160px\]{
  padding-top: 160px;
}
.pb-10{
  padding-bottom: 40px;
}
.pl-7{
  padding-left: 28px;
}
.pl-8{
  padding-left: 32px;
}
.pr-14{
  padding-right: 56px;
}
.pr-5{
  padding-right: 20px;
}
.pb-2\/3{
  padding-bottom: 66.666667%;
}
.pb-4{
  padding-bottom: 16px;
}
.pr-12{
  padding-right: 48px;
}
.pb-\[50\%\]{
  padding-bottom: 50%;
}
.pt-1{
  padding-top: 4px;
}
.pl-4{
  padding-left: 16px;
}
.pr-3{
  padding-right: 12px;
}
.pb-4\/3{
  padding-bottom: 133.333334%;
}
.pb-12{
  padding-bottom: 48px;
}
.pt-6{
  padding-top: 24px;
}
.pb-6{
  padding-bottom: 24px;
}
.pb-8{
  padding-bottom: 32px;
}
.pt-16{
  padding-top: 64px;
}
.pb-14{
  padding-bottom: 56px;
}
.pb-\[18px\]{
  padding-bottom: 18px;
}
.pr-4{
  padding-right: 16px;
}
.pb-2{
  padding-bottom: 8px;
}
.pt-30{
  padding-top: 120px;
}
.pt-20{
  padding-top: 80px;
}
.pt-0{
  padding-top: 0;
}
.pt-10{
  padding-top: 40px;
}
.pb-15{
  padding-bottom: 60px;
}
.pt-\[40px\]{
  padding-top: 40px;
}
.pb-\[60px\]{
  padding-bottom: 60px;
}
.pb-\[16px\]{
  padding-bottom: 16px;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.align-middle{
  vertical-align: middle;
}
.font-sans{
  font-family: Inter, system-ui;
}
.font-ibm{
  font-family: IBM Plex Sans, sans-serif;
}
.text-4xl{
  font-size: 40px;
}
.text-md{
  font-size: 18px;
}
.text-xl{
  font-size: 24px;
}
.text-sm{
  font-size: 14px;
}
.text-5xl{
  font-size: 50px;
}
.text-lg{
  font-size: 21px;
}
.text-3xl{
  font-size: 32px;
}
.text-\[60px\]{
  font-size: 60px;
}
.text-xs{
  font-size: 12px;
}
.text-2xl{
  font-size: 28px;
}
.text-\[48px\]{
  font-size: 48px;
}
.text-\[35px\]{
  font-size: 35px;
}
.text-base{
  font-size: 16px;
}
.text-6xl{
  font-size: 55px;
}
.text-\[105px\]{
  font-size: 105px;
}
.text-\[80px\]{
  font-size: 80px;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[72px\]{
  font-size: 72px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[14px\]{
  font-size: 14px;
}
.font-bold{
  font-weight: 700;
}
.font-semibold{
  font-weight: 600;
}
.font-normal{
  font-weight: 400;
}
.font-medium{
  font-weight: 500;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.not-italic{
  font-style: normal;
}
.leading-tight{
  line-height: 1.20;
}
.leading-none{
  line-height: 1;
}
.leading-normal{
  line-height: 1.5;
}
.leading-0{
  line-height: 0;
}
.leading-light{
  line-height: 1.25;
}
.leading-snug{
  line-height: 1.375;
}
.leading-relaxed{
  line-height: 1.625;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.tracking-widest{
  letter-spacing: 0.1em;
}
.text-company-primary{
  color: rgba(var(--company-primary-text-color), 1);
  color: rgba(var(--company-primary-text-color), var(--tw-text-opacity, 1));
}
.text-company-secondary{
  color: rgba(var(--company-secondary-text-color), 1);
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1));
}
.text-block-title{
  color: var(--block-title-color);
}
.text-company-link{
  color: rgba(var(--company-link-color), 1);
  color: rgba(var(--company-link-color), var(--tw-text-opacity, 1));
}
.text-block-text{
  color: var(--block-text-color);
}
.text-company-secondary-bg{
  color: rgba(var(--company-secondary-bg-color), 1);
  color: rgba(var(--company-secondary-bg-color), var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.text-company-button{
  color: rgba(var(--company-button-text-color), 1);
  color: rgba(var(--company-button-text-color), var(--tw-text-opacity, 1));
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgba(52, 53, 58, var(--tw-text-opacity));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgba(144, 144, 149, var(--tw-text-opacity));
}
.text-purple-500{
  --tw-text-opacity: 1;
  color: rgba(126, 103, 227, var(--tw-text-opacity));
}
.text-current{
  color: currentColor;
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgba(222, 0, 0, var(--tw-text-opacity));
}
.text-share-gray-31{
  --tw-text-opacity: 1;
  color: rgba(173, 174, 178, var(--tw-text-opacity));
}
.text-teamtailor-pink{
  --tw-text-opacity: 1;
  color: rgba(244, 63, 133, var(--tw-text-opacity));
}
.text-block-base-link{
  color: rgba(var(--block-base-link-color), 1);
  color: rgba(var(--block-base-link-color), var(--tw-text-opacity, 1));
}
.text-block-link{
  color: var(--block-link-color);
}
.text-black{
  --tw-text-opacity: 1;
  color: rgba(0, 0, 0, var(--tw-text-opacity));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgba(87, 89, 95, var(--tw-text-opacity));
}
.\!text-company-secondary{
  color: rgba(var(--company-secondary-text-color), 1) !important;
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1)) !important;
}
.text-nepal{
  --tw-text-opacity: 1;
  color: rgba(151, 176, 189, var(--tw-text-opacity));
}
.text-neon-carrot{
  --tw-text-opacity: 1;
  color: rgba(255, 135, 54, var(--tw-text-opacity));
}
.text-opacity-80{
  --tw-text-opacity: 0.8;
}
.text-opacity-75{
  --tw-text-opacity: 0.75;
}
.underline{
  text-decoration: underline;
}
.no-underline{
  text-decoration: none;
}
.placeholder-block-base-text::-moz-placeholder{
  color: var(--block-base-text-color);
}
.placeholder-block-base-text::placeholder{
  color: var(--block-base-text-color);
}
.placeholder-gray-400::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(144, 144, 149, var(--tw-placeholder-opacity));
}
.placeholder-gray-400::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgba(144, 144, 149, var(--tw-placeholder-opacity));
}
.placeholder-opacity-60::-moz-placeholder{
  --tw-placeholder-opacity: 0.6;
}
.placeholder-opacity-60::placeholder{
  --tw-placeholder-opacity: 0.6;
}
.opacity-0{
  opacity: 0;
}
.opacity-45{
  opacity: 0.45;
}
.opacity-75{
  opacity: 0.75;
}
.opacity-90{
  opacity: 0.9;
}
.opacity-25{
  opacity: 0.25;
}
.opacity-100{
  opacity: 1;
}
.shadow-form-strong{
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-button{
  --tw-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-form{
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-form-button{
  --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-error{
  --tw-shadow: inset 0 0 0 2px #DE0000;
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-form-border-button{
  --tw-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 2px 27px -10px rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner-tiny{
  --tw-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-top{
  --tw-shadow: 0 2px 105px 0 rgba(0,0,0,0.50);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-form-border-button-hover{
  --tw-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 8px 40px -10px rgba(0, 0, 0, 0.30);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-inset{
  --tw-ring-inset: inset;
}
.ring-red-500{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(222, 0, 0, var(--tw-ring-opacity));
}
.ring-white{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}
.ring-opacity-100{
  --tw-ring-opacity: 1;
}
.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.06));
  filter: var(--tw-filter);
}
.filter{
  filter: var(--tw-filter);
}
.backdrop-blur-md{
  --tw-backdrop-blur: blur(12px);
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
          backdrop-filter: var(--tw-backdrop-filter);
}
.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
          backdrop-filter: var(--tw-backdrop-filter);
}
.backdrop-filter{
  -webkit-backdrop-filter: var(--tw-backdrop-filter);
          backdrop-filter: var(--tw-backdrop-filter);
}
.transition-all{
  transition-property: all;
}
.transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}
.transition-opacity{
  transition-property: opacity;
}
.transition-transform{
  transition-property: transform;
}
.delay-150{
  transition-delay: 150ms;
}
.duration-500{
  transition-duration: 500ms;
}
.duration-150{
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.duration-100{
  transition-duration: 100ms;
}
.duration-300{
  transition-duration: 300ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.snap{
  scroll-snap-type: both mandatory;
  scroll-snap-type: var(--scroll-snap-direction, both) var(--scroll-snap-constraint, mandatory);
}
.snap-x{
  --scroll-snap-direction: x;
}
.snap-mandatory{
  --scroll-snap-constraint: mandatory;
}
.snap-center{
  scroll-snap-align: center;
}
.line-clamp-2{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.block-cover-bg{background-image:var(--block-bg-background-small)}
.block-px{padding-left:20px;padding-left:var(--company-block-padding-x, 20px);padding-right:20px;padding-right:var(--company-block-padding-x, 20px)}
.block-max-w--sm{max-width:650px;max-width:var(--company-block-max-width-sm, 650px)}
.block-max-w--md{max-width:1065px;max-width:var(--company-block-max-width-md, 1065px)}
.block-max-w--lg{max-width:1200px;max-width:var(--company-block-max-width-lg, 1200px)}
.block-shadow{box-shadow:0 2px 27px -10px rgba(0, 0, 0, 0.18);box-shadow:var(--company-block-shadow, 0 2px 27px -10px rgba(0, 0, 0, 0.18))}
.block-cover-text{color:var(--block-bg-overlay-text-color) !important}
.block-cover-overlay{opacity:var(--block-bg-overlay-opacity);background-color:var(--block-bg-overlay-background-color)}
.block-grid{
  display: flex;
  flex-wrap: wrap;grid-gap:24px;gap:24px;
}
.block-grid--wide{grid-gap:60px;gap:60px}
.block-grid--wide .block-grid-item{
  width: 100%;
}
@media screen and (min-width: 640px){.block-grid--wide .block-grid-item{width:calc(50% - (60px / 2))}}
@media screen and (min-width: 1024px){.block-grid--wide .block-grid-item{width:calc(33.333% - (60px * 2 / 3))}}
.block-grid-item{
  width: 100%;
}
@media screen and (min-width: 640px){.block-grid-item{width:calc(50% - (24px / 2))}}
@media screen and (min-width: 1024px){.block-grid-item{width:calc(33.333% - (24px * 2 / 3))}}
.block-text-align{text-align:var(--block-text-align)}
.text-block-text.company-links a, .text-block-text.tt-cookie-alert__content a, .text-block-text .company-links a, .text-block-text .tt-cookie-alert__content a{
  color: var(--block-link-color);
  text-decoration: none;
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}
.text-block-text.company-links a:hover, .text-block-text.tt-cookie-alert__content a:hover, .text-block-text .company-links a:hover, .text-block-text .tt-cookie-alert__content a:hover{
  transition-property: opacity;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.text-block-text.company-links a:hover:hover, .text-block-text.tt-cookie-alert__content a:hover:hover, .text-block-text .company-links a:hover:hover, .text-block-text .tt-cookie-alert__content a:hover:hover{
  opacity: 0.75;
}
.group:hover .text-block-text.company-links a:hover, .group:hover .text-block-text.tt-cookie-alert__content a:hover, .group:hover .text-block-text .company-links a:hover, .group:hover .text-block-text .tt-cookie-alert__content a:hover{
  opacity: 0.75;
}
.company-secondary-bg-hover-overlay{
  position: relative;
}
.company-secondary-bg-hover-overlay::before{
  content: "";
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  content: "";
  background-color: rgba(var(--company-secondary-bg-color), 1);
  background-color: rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1));
  content: "";
  --tw-bg-opacity: 0.5;
  content: "";
  opacity: 0;
  content: "";
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  content: "";
  transition-duration: 150ms;
}
.company-secondary-bg-hover-overlay:hover::before{
  content: "";
  opacity: 1;
}
#messenger-frame{position:fixed;right:0;bottom:45px;z-index:100;margin-top:0;height:600px;width:100%;min-height:0}
@media screen and (min-width: 768px){#messenger-frame{right:15px;width:400px}}
#messenger-launcher-frame{position:fixed;right:-10px;bottom:-15px;z-index:101;width:125px;height:125px}
@media screen and (min-width: 768px){#messenger-launcher-frame{right:0;bottom:0}}
.block-padding{
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 640px){.block-padding{
    padding-top: 80px;
    padding-bottom: 80px;
  }}
header.absolute+.block-padding{
  padding-top: 160px;
}
.bg-block-preset-primary:not(.keep-block-padding)+.bg-block-preset-primary:not(.keep-block-padding){
  padding-top: 0;
}
.bg-block-preset-secondary:not(.keep-block-padding)+.bg-block-preset-secondary:not(.keep-block-padding){
  padding-top: 0;
}
.field_with_errors{width:100%}
.anonymous-tooltip .anonymous-tooltiptext::after{
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 4px;
  border-style: solid;border-color:#28282b transparent transparent;content:"";
}
.anonymous-tooltip:hover .anonymous-tooltiptext{
  visibility: visible;
}
body{
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.20;
}
.ls-underline a{
  text-decoration: underline;
  opacity: 1;
}
.ls-underline a:hover{
  opacity: 0.8;
}
.turbolinks-progress-bar{background-color:rgb(var(--company-color));height:5px}
.before\:absolute::before{
  content: "";
  position: absolute;
}
.before\:left-\[-16px\]::before{
  content: "";
  left: -16px;
}
.before\:top-\[-2px\]::before{
  content: "";
  top: -2px;
}
.before\:content-\[open-quote\]::before{
  content: open-quote;
}
.after\:ml-1::after{
  content: "";
  margin-left: 4px;
}
.after\:content-\[close-quote\]::after{
  content: close-quote;
}
.first\:ml-0:first-child{
  margin-left: 0;
}
.last\:mb-0:last-child{
  margin-bottom: 0;
}
.last\:mb-6:last-child{
  margin-bottom: 24px;
}
.last\:mb-4:last-child{
  margin-bottom: 16px;
}
.last\:border-0:last-child{
  border-width: 0;
}
.last\:border-b-0:last-child{
  border-bottom-width: 0;
}
.last\:pb-0:last-child{
  padding-bottom: 0;
}
.checked\:border-white:checked{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.checked\:ring-white:checked{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity));
}
.focus-within\:-translate-y-px:focus-within{
  --tw-translate-y: -1px;
  transform: var(--tw-transform);
}
.focus-within\:bg-white:focus-within{
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.focus-within\:bg-block-base-text:focus-within{
  background-color: rgba(var(--block-base-text-color), 1);
  background-color: rgba(var(--block-base-text-color), var(--tw-bg-opacity, 1));
}
.focus-within\:bg-opacity-3:focus-within{
  --tw-bg-opacity: 0.03;
}
.focus-within\:text-gray-800:focus-within{
  --tw-text-opacity: 1;
  color: rgba(52, 53, 58, var(--tw-text-opacity));
}
.focus-within\:shadow-form-strong:focus-within{
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus-within\:ring-2:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-within\:ring-gray-800:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 53, 58, var(--tw-ring-opacity));
}
.focus-within\:ring-blue-600:focus-within{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(37, 99, 235, var(--tw-ring-opacity));
}
.hover\:-translate-y-px:hover{
  --tw-translate-y: -1px;
  transform: var(--tw-transform);
}
.hover\:scale-125:hover{
  --tw-scale-x: 1.25;
  --tw-scale-y: 1.25;
  transform: var(--tw-transform);
}
.hover\:bg-company-secondary:hover{
  background-color: rgba(var(--company-secondary-bg-color), 1);
  background-color: rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1));
}
.hover\:bg-teamtailor-pink-lighter:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(245, 82, 145, var(--tw-bg-opacity));
}
.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(238, 239, 242, var(--tw-bg-opacity));
}
.hover\:bg-purple-500:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(126, 103, 227, var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(248, 248, 249, var(--tw-bg-opacity));
}
.hover\:bg-block-base-text:hover{
  background-color: rgba(var(--block-base-text-color), 1);
  background-color: rgba(var(--block-base-text-color), var(--tw-bg-opacity, 1));
}
.hover\:bg-company-primary-text:hover{
  background-color: rgba(var(--company-primary-text-color), 1);
  background-color: rgba(var(--company-primary-text-color), var(--tw-bg-opacity, 1));
}
.hover\:bg-share-lime:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(126, 211, 33, var(--tw-bg-opacity));
}
.hover\:bg-carrot:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(253, 147, 37, var(--tw-bg-opacity));
}
.hover\:bg-brickred:hover{
  --tw-bg-opacity: 1;
  background-color: rgba(242, 71, 63, var(--tw-bg-opacity));
}
.hover\:bg-opacity-3:hover{
  --tw-bg-opacity: 0.03;
}
.hover\:bg-gradient-block-base-bg:hover{
  background-image: linear-gradient(90deg, transparent 0%, rgba(var(--block-base-text-color), 0.03) 30%, rgba(var(--block-base-text-color), 0.03) 70%, transparent 100%);
}
.hover\:bg-gradient-company:hover{
  background-image: linear-gradient(-90deg, rgba(0, 0, 0, 0.0) 12%, rgb(var(--company-link-color)) 30%, rgb(var(--company-link-color)) 100%);
}
.hover\:text-company-link:hover{
  color: rgba(var(--company-link-color), 1);
  color: rgba(var(--company-link-color), var(--tw-text-opacity, 1));
}
.hover\:text-company-secondary:hover{
  color: rgba(var(--company-secondary-text-color), 1);
  color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1));
}
.hover\:text-teamtailor-pink:hover{
  --tw-text-opacity: 1;
  color: rgba(244, 63, 133, var(--tw-text-opacity));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.hover\:text-purple-400:hover{
  --tw-text-opacity: 1;
  color: rgba(134, 108, 249, var(--tw-text-opacity));
}
.hover\:text-purple-500:hover{
  --tw-text-opacity: 1;
  color: rgba(126, 103, 227, var(--tw-text-opacity));
}
.hover\:text-opacity-75:hover{
  --tw-text-opacity: 0.75;
}
.hover\:underline:hover{
  text-decoration: underline;
}
.hover\:opacity-75:hover{
  opacity: 0.75;
}
.hover\:opacity-80:hover{
  opacity: 0.8;
}
.hover\:opacity-50:hover{
  opacity: 0.5;
}
.hover\:shadow-form-button-hover:hover{
  --tw-shadow: 0 8px 40px -10px rgba(0, 0, 0, 0.30);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-form-border-button-hover:hover{
  --tw-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 8px 40px -10px rgba(0, 0, 0, 0.30);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:shadow-form-strong:hover{
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.hover\:opacity-animated:hover{
  transition-property: opacity;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.hover\:opacity-animated:hover:hover{
  opacity: 0.75;
}
.group:hover .hover\:opacity-animated:hover{
  opacity: 0.75;
}
.focus\:-translate-y-px:focus{
  --tw-translate-y: -1px;
  transform: var(--tw-transform);
}
.focus\:border-2:focus{
  border-width: 2px;
}
.focus\:border-white:focus{
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}
.focus\:bg-block-base-text:focus{
  background-color: rgba(var(--block-base-text-color), 1);
  background-color: rgba(var(--block-base-text-color), var(--tw-bg-opacity, 1));
}
.focus\:bg-opacity-3:focus{
  --tw-bg-opacity: 0.03;
}
.focus\:shadow-form-border-button-hover:focus{
  --tw-shadow: 0 0 0 6px rgba(255,255,255,0.25), 0 8px 40px -10px rgba(0, 0, 0, 0.30);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:shadow-form-strong:focus{
  --tw-shadow: 0 4px 32px -10px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-inset:focus{
  --tw-ring-inset: inset;
}
.focus\:ring-transparent:focus{
  --tw-ring-color: transparent;
}
.focus\:ring-gray-800:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 53, 58, var(--tw-ring-opacity));
}
.focus-visible\:outline-none:focus-visible{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:ring-2:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-company-secondary-text:focus-visible{
  --tw-ring-color: rgba(var(--company-secondary-text-color), var(--tw-bg-opacity, 1));
}
.focus-visible\:ring-offset-2:focus-visible{
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset-company-secondary-bg:focus-visible{
  --tw-ring-offset-color: rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1));
}
.disabled\:cursor-not-allowed:disabled{
  cursor: not-allowed;
}
.disabled\:opacity-75:disabled{
  opacity: 0.75;
}
.group:hover .group-hover\:block{
  display: block;
}
.group:hover .group-hover\:translate-x-1{
  --tw-translate-x: 4px;
  transform: var(--tw-transform);
}
.group:hover .group-hover\:-translate-x-1{
  --tw-translate-x: -4px;
  transform: var(--tw-transform);
}
.group:hover .group-hover\:scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: var(--tw-transform);
}
.group:hover .group-hover\:bg-company-secondary-light-5{
  background-color: rgba(var(--company-secondary-bg-light-5-color), 1);
  background-color: rgba(var(--company-secondary-bg-light-5-color), var(--tw-bg-opacity, 1));
}
.group:hover .group-hover\:bg-purple-400{
  --tw-bg-opacity: 1;
  background-color: rgba(134, 108, 249, var(--tw-bg-opacity));
}
.group:hover .group-hover\:bg-gradient-cover-overlay-hover{
  background-image: linear-gradient(rgba(00, 00, 00, 0.1), rgba(74, 74, 74, 0.2));
}
.group:hover .group-hover\:text-white{
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}
.group:hover .group-hover\:text-purple-500{
  --tw-text-opacity: 1;
  color: rgba(126, 103, 227, var(--tw-text-opacity));
}
.group:hover .group-hover\:text-opacity-75{
  --tw-text-opacity: 0.75;
}
.group:hover .group-hover\:opacity-75{
  opacity: 0.75;
}
.group:hover .group-hover\:ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.group:hover .group-hover\:ring-company-link{
  --tw-ring-color: rgb(var(--company-link-color));
}
.group:hover .group-hover\:ring-offset-2{
  --tw-ring-offset-width: 2px;
}
.group:hover .group-hover\:opacity-animated{
  transition-property: opacity;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.group:hover .group-hover\:opacity-animated:hover{
  opacity: 0.75;
}
.group:hover .group:hover .group-hover\:opacity-animated{
  opacity: 0.75;
}
.group:focus .group-focus\:hidden{
  display: none;
}
.group:focus .group-focus\:bg-company-secondary-light-5{
  background-color: rgba(var(--company-secondary-bg-light-5-color), 1);
  background-color: rgba(var(--company-secondary-bg-light-5-color), var(--tw-bg-opacity, 1));
}
.group:focus .group-focus\:ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.group:focus .group-focus\:ring-inset{
  --tw-ring-inset: inset;
}
.group:focus .group-focus\:ring-gray-800{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgba(52, 53, 58, var(--tw-ring-opacity));
}
.group:disabled .group-disabled\:invisible{
  visibility: hidden;
}
.group:disabled .group-disabled\:block{
  display: block;
}
@media (prefers-reduced-motion: reduce){
  .motion-reduce\:hidden{
    display: none;
  }
}
@media (min-width: 640px){
  .sm\:fixed{
    position: fixed;
  }
  .sm\:absolute{
    position: absolute;
  }
  .sm\:relative{
    position: relative;
  }
  .sm\:top-0{
    top: 0;
  }
  .sm\:left-0{
    left: 0;
  }
  .sm\:bottom-0{
    bottom: 0;
  }
  .sm\:right-\[-35px\]{
    right: -35px;
  }
  .sm\:top-half{
    top: 50%;
  }
  .sm\:right-\[-20px\]{
    right: -20px;
  }
  .sm\:top-\[60px\]{
    top: 60px;
  }
  .sm\:right-\[-32px\]{
    right: -32px;
  }
  .sm\:mx-4{
    margin-left: 16px;
    margin-right: 16px;
  }
  .sm\:mx-25{
    margin-left: 100px;
    margin-right: 100px;
  }
  .sm\:my-0{
    margin-top: 0;
    margin-bottom: 0;
  }
  .sm\:my-12{
    margin-top: 48px;
    margin-bottom: 48px;
  }
  .sm\:mx-8{
    margin-left: 32px;
    margin-right: 32px;
  }
  .sm\:mx-0{
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:mx-3{
    margin-left: 12px;
    margin-right: 12px;
  }
  .sm\:my-6{
    margin-top: 24px;
    margin-bottom: 24px;
  }
  .sm\:mt-6{
    margin-top: 24px;
  }
  .sm\:mt-30{
    margin-top: 120px;
  }
  .sm\:mb-0{
    margin-bottom: 0;
  }
  .sm\:mt-8{
    margin-top: 32px;
  }
  .sm\:mb-12{
    margin-bottom: 48px;
  }
  .sm\:ml-4{
    margin-left: 16px;
  }
  .sm\:mt-3{
    margin-top: 12px;
  }
  .sm\:mr-4{
    margin-right: 16px;
  }
  .sm\:mb-4{
    margin-bottom: 16px;
  }
  .sm\:mb-20{
    margin-bottom: 80px;
  }
  .sm\:mr-10{
    margin-right: 40px;
  }
  .sm\:ml-10{
    margin-left: 40px;
  }
  .sm\:mt-0{
    margin-top: 0;
  }
  .sm\:ml-2{
    margin-left: 8px;
  }
  .sm\:mr-0{
    margin-right: 0;
  }
  .sm\:mr-12{
    margin-right: 48px;
  }
  .sm\:mt-auto{
    margin-top: auto;
  }
  .sm\:mt-12{
    margin-top: 48px;
  }
  .sm\:mb-8{
    margin-bottom: 32px;
  }
  .sm\:mb-6{
    margin-bottom: 24px;
  }
  .sm\:mt-\[-52px\]{
    margin-top: -52px;
  }
  .sm\:ml-12{
    margin-left: 48px;
  }
  .sm\:mr-6{
    margin-right: 24px;
  }
  .sm\:mr-2{
    margin-right: 8px;
  }
  .sm\:block{
    display: block;
  }
  .sm\:flex{
    display: flex;
  }
  .sm\:grid{
    display: grid;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:h-auto{
    height: auto;
  }
  .sm\:h-\[170px\]{
    height: 170px;
  }
  .sm\:h-full{
    height: 100%;
  }
  .sm\:h-screen{
    height: 100vh;
  }
  .sm\:h-20{
    height: 80px;
  }
  .sm\:h-30{
    height: 120px;
  }
  .sm\:max-h-\[80vh\]{
    max-height: 80vh;
  }
  .sm\:min-h-\[70px\]{
    min-height: 70px;
  }
  .sm\:w-auto{
    width: auto;
  }
  .sm\:w-650{
    width: 650px;
  }
  .sm\:w-initial{
    width: auto;
    width: initial;
  }
  .sm\:w-full{
    width: 100%;
  }
  .sm\:w-\[170px\]{
    width: 170px;
  }
  .sm\:w-\[350px\]{
    width: 350px;
  }
  .sm\:w-20{
    width: 80px;
  }
  .sm\:w-30{
    width: 120px;
  }
  .sm\:w-500{
    width: 500px;
  }
  .sm\:min-w-\[25\%\]{
    min-width: 25%;
  }
  .sm\:max-w-\[600px\]{
    max-width: 600px;
  }
  .sm\:max-w-500{
    max-width: 500px;
  }
  .sm\:max-w-\[200px\]{
    max-width: 200px;
  }
  .sm\:max-w-650{
    max-width: 650px;
  }
  .sm\:max-w-screen-md{
    max-width: 768px;
  }
  .sm\:max-w-\[400px\]{
    max-width: 400px;
  }
  .sm\:max-w-\[677px\]{
    max-width: 677px;
  }
  .sm\:flex-grow-0{
    flex-grow: 0;
  }
  .sm\:-translate-y-1\/2{
    --tw-translate-y: -50%;
    transform: var(--tw-transform);
  }
  .sm\:-rotate-90{
    --tw-rotate: -90deg;
    transform: var(--tw-transform);
  }
  .sm\:rotate-90{
    --tw-rotate: 90deg;
    transform: var(--tw-transform);
  }
  .sm\:grid-flow-col{
    grid-auto-flow: column;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sm\:flex-row{
    flex-direction: row;
  }
  .sm\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .sm\:flex-wrap{
    flex-wrap: wrap;
  }
  .sm\:items-start{
    align-items: flex-start;
  }
  .sm\:items-end{
    align-items: flex-end;
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:items-stretch{
    align-items: stretch;
  }
  .sm\:justify-start{
    justify-content: flex-start;
  }
  .sm\:justify-end{
    justify-content: flex-end;
  }
  .sm\:justify-center{
    justify-content: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:gap-8{
    grid-gap: 32px;
    gap: 32px;
  }
  .sm\:gap-x-4{
    grid-column-gap: 16px;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0;
    margin-right: calc(24px * var(--tw-space-x-reverse));
    margin-left: calc(24px * calc(1 - var(--tw-space-x-reverse)));
  }
  .sm\:self-start{
    align-self: flex-start;
  }
  .sm\:self-center{
    align-self: center;
  }
  .sm\:truncate{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .sm\:whitespace-nowrap{
    white-space: nowrap;
  }
  .sm\:rounded{
    border-radius: 8px;
  }
  .sm\:rounded-t{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }
  .sm\:bg-transparent{
    background-color: transparent;
  }
  .sm\:bg-white{
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  }
  .sm\:bg-fixed{
    background-attachment: fixed;
  }
  .sm\:p-4{
    padding: 16px;
  }
  .sm\:p-8{
    padding: 32px;
  }
  .sm\:px-3{
    padding-left: 12px;
    padding-right: 12px;
  }
  .sm\:px-4{
    padding-left: 16px;
    padding-right: 16px;
  }
  .sm\:py-1{
    padding-top: 4px;
    padding-bottom: 4px;
  }
  .sm\:px-12{
    padding-left: 48px;
    padding-right: 48px;
  }
  .sm\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }
  .sm\:px-6{
    padding-left: 24px;
    padding-right: 24px;
  }
  .sm\:px-8{
    padding-left: 32px;
    padding-right: 32px;
  }
  .sm\:py-12{
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .sm\:px-\[20\%\]{
    padding-left: 20%;
    padding-right: 20%;
  }
  .sm\:px-0{
    padding-left: 0;
    padding-right: 0;
  }
  .sm\:py-8{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .sm\:px-30{
    padding-left: 120px;
    padding-right: 120px;
  }
  .sm\:px-18{
    padding-left: 72px;
    padding-right: 72px;
  }
  .sm\:pb-20{
    padding-bottom: 80px;
  }
  .sm\:pt-8{
    padding-top: 32px;
  }
  .sm\:pl-35{
    padding-left: 140px;
  }
  .sm\:pb-8{
    padding-bottom: 32px;
  }
  .sm\:pb-16{
    padding-bottom: 64px;
  }
  .sm\:pb-0{
    padding-bottom: 0;
  }
  .sm\:pt-\[140px\]{
    padding-top: 140px;
  }
  .sm\:pb-12{
    padding-bottom: 48px;
  }
  .sm\:pt-12{
    padding-top: 48px;
  }
  .sm\:text-left{
    text-align: left;
  }
  .sm\:text-center{
    text-align: center;
  }
  .sm\:text-right{
    text-align: right;
  }
  .sm\:text-lg{
    font-size: 21px;
  }
  .sm\:text-4xl{
    font-size: 40px;
  }
  .sm\:text-xl{
    font-size: 24px;
  }
  .sm\:text-base{
    font-size: 16px;
  }
  .sm\:text-3xl{
    font-size: 32px;
  }
  .sm\:text-5xl{
    font-size: 50px;
  }
  .sm\:text-sm{
    font-size: 14px;
  }
  .sm\:text-6xl{
    font-size: 55px;
  }
  .sm\:leading-normal{
    line-height: 1.5;
  }
  .sm\:shadow-card-strong{
    --tw-shadow: 0 2px 27px -10px rgba(0,0,0,0.18);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .sm\:shadow-form{
    --tw-shadow: 0 2px 27px -10px rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 #0000, 0 0 #0000, var(--tw-shadow);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  }
  .sm\:no-snap{
    scroll-snap-type: none;
  }.sm\:linkedin-widget-adjustment{margin-bottom:-7px;margin-left:-5px}.sm\:block-cover-bg-medium{background-image:var(--block-bg-background-medium)}
}
@media (min-width: 768px){
  .md\:relative{
    position: relative;
  }
  .md\:top-\[-6px\]{
    top: -6px;
  }
  .md\:bottom-\[-35px\]{
    bottom: -35px;
  }
  .md\:order-last{
    order: 9999;
  }
  .md\:mx-4{
    margin-left: 16px;
    margin-right: 16px;
  }
  .md\:-mx-6{
    margin-left: -24px;
    margin-right: -24px;
  }
  .md\:my-3{
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .md\:mb-\[35px\]{
    margin-bottom: 35px;
  }
  .md\:mb-\[75px\]{
    margin-bottom: 75px;
  }
  .md\:mb-5{
    margin-bottom: 20px;
  }
  .md\:mb-0{
    margin-bottom: 0;
  }
  .md\:ml-8{
    margin-left: 32px;
  }
  .md\:ml-7{
    margin-left: 28px;
  }
  .md\:mt-0{
    margin-top: 0;
  }
  .md\:mb-14{
    margin-bottom: 56px;
  }
  .md\:mb-12{
    margin-bottom: 48px;
  }
  .md\:ml-6{
    margin-left: 24px;
  }
  .md\:ml-2{
    margin-left: 8px;
  }
  .md\:mt-\[200px\]{
    margin-top: 200px;
  }
  .md\:block{
    display: block;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid{
    display: grid;
  }
  .md\:hidden{
    display: none;
  }
  .md\:h-\[450px\]{
    height: 450px;
  }
  .md\:h-16{
    height: 64px;
  }
  .md\:h-auto{
    height: auto;
  }
  .md\:min-h-\[500px\]{
    min-height: 500px;
  }
  .md\:min-h-screen{
    min-height: 100vh;
  }
  .md\:w-half{
    width: 50%;
  }
  .md\:w-16{
    width: 64px;
  }
  .md\:w-\[47\%\]{
    width: 47%;
  }
  .md\:w-\[33\.333\%\]{
    width: 33.333%;
  }
  .md\:w-\[33\.33333\%\]{
    width: 33.33333%;
  }
  .md\:w-\[38\%\]{
    width: 38%;
  }
  .md\:w-\[24\%\]{
    width: 24%;
  }
  .md\:min-w-screen-sm{
    min-width: 640px;
  }
  .md\:max-w-\[75\%\]{
    max-width: 75%;
  }
  .md\:max-w-\[70\%\]{
    max-width: 70%;
  }
  .md\:max-w-\[280px\]{
    max-width: 280px;
  }
  .md\:max-w-\[50\%\]{
    max-width: 50%;
  }
  .md\:max-w-half{
    max-width: 50%;
  }
  .md\:flex-p50{
    flex: 0 1 50%;
  }
  .md\:flex-initial{
    flex: 0 1 auto;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .md\:flex-col{
    flex-direction: column;
  }
  .md\:justify-center{
    justify-content: center;
  }
  .md\:gap-15{
    grid-gap: 60px;
    gap: 60px;
  }
  .md\:gap-x-12{
    grid-column-gap: 48px;
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
  .md\:border-l{
    border-left-width: 1px;
  }
  .md\:bg-transparent{
    background-color: transparent;
  }
  .md\:p-12{
    padding: 48px;
  }
  .md\:px-15{
    padding-left: 60px;
    padding-right: 60px;
  }
  .md\:px-6{
    padding-left: 24px;
    padding-right: 24px;
  }
  .md\:py-2{
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .md\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }
  .md\:px-8{
    padding-left: 32px;
    padding-right: 32px;
  }
  .md\:py-8{
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .md\:pl-16{
    padding-left: 64px;
  }
  .md\:pt-\[200px\]{
    padding-top: 200px;
  }
  .md\:pr-\[3\%\]{
    padding-right: 3%;
  }
  .md\:pl-12{
    padding-left: 48px;
  }
  .md\:pb-6{
    padding-bottom: 24px;
  }
  .md\:pl-8{
    padding-left: 32px;
  }
  .md\:text-left{
    text-align: left;
  }
  .md\:text-center{
    text-align: center;
  }
  .md\:text-\[72px\]{
    font-size: 72px;
  }
  .md\:text-6xl{
    font-size: 55px;
  }
  .md\:text-4xl{
    font-size: 40px;
  }
  .md\:text-xl{
    font-size: 24px;
  }
  .md\:text-md{
    font-size: 18px;
  }
  .md\:text-3xl{
    font-size: 32px;
  }
  .md\:text-\[28px\]{
    font-size: 28px;
  }
  .md\:text-teamtailor-pink{
    --tw-text-opacity: 1;
    color: rgba(244, 63, 133, var(--tw-text-opacity));
  }
}
@media (min-width: 1024px){
  .lg\:absolute{
    position: absolute;
  }
  .lg\:top-full{
    top: 100%;
  }
  .lg\:left-\[50\%\]{
    left: 50%;
  }
  .lg\:mb-0{
    margin-bottom: 0;
  }
  .lg\:block{
    display: block;
  }
  .lg\:flex{
    display: flex;
  }
  .lg\:hidden{
    display: none;
  }
  .lg\:h-screen{
    height: 100vh;
  }
  .lg\:h-\[70vh\]{
    height: 70vh;
  }
  .lg\:max-h-\[800px\]{
    max-height: 800px;
  }
  .lg\:min-h-\[700px\]{
    min-height: 700px;
  }
  .lg\:min-h-\[500px\]{
    min-height: 500px;
  }
  .lg\:min-h-\[650px\]{
    min-height: 650px;
  }
  .lg\:w-half{
    width: 50%;
  }
  .lg\:w-\[25\%\]{
    width: 25%;
  }
  .lg\:min-w-\[300px\]{
    min-width: 300px;
  }
  .lg\:min-w-screen-md{
    min-width: 768px;
  }
  .lg\:max-w-\[420px\]{
    max-width: 420px;
  }
  .lg\:max-w-600{
    max-width: 600px;
  }
  .lg\:max-w-\[800px\]{
    max-width: 800px;
  }
  .lg\:flex-1{
    flex: 1 1;
  }
  .lg\:flex-shrink-0{
    flex-shrink: 0;
  }
  .lg\:-translate-x-1\/2{
    --tw-translate-x: -50%;
    transform: var(--tw-transform);
  }
  .lg\:transform{
    transform: var(--tw-transform);
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .lg\:flex-row{
    flex-direction: row;
  }
  .lg\:flex-row-reverse{
    flex-direction: row-reverse;
  }
  .lg\:flex-col{
    flex-direction: column;
  }
  .lg\:gap-x-\[130px\]{
    grid-column-gap: 130px;
    -moz-column-gap: 130px;
         column-gap: 130px;
  }
  .lg\:px-25{
    padding-left: 100px;
    padding-right: 100px;
  }
  .lg\:py-0{
    padding-top: 0;
    padding-bottom: 0;
  }
  .lg\:pt-20{
    padding-top: 80px;
  }
  .lg\:text-left{
    text-align: left;
  }
  .lg\:text-\[72px\]{
    font-size: 72px;
  }
}
@media (min-width: 1280px){
  .xl\:grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .xl\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .xl\:justify-center{
    justify-content: center;
  }.xl\:block-cover-bg-full{background-image:var(--block-bg-background-full)}
}
@media (min-width: 1440px){
  .xxl\:flex{
    display: flex;
  }
  .xxl\:hidden{
    display: none;
  }
  .xxl\:flex-initial{
    flex: 0 1 auto;
  }
  .xxl\:justify-center{
    justify-content: center;
  }
  .xxl\:justify-around{
    justify-content: space-around;
  }
}
@media (min-width: 1920px){
  .\33xl\:justify-center{
    justify-content: center;
  }
}
@media screen and (min-height: 850px){
  .high\:max-h-475{
    max-height: 475px;
  }
}
@media print{
  .print\:hidden{
    display: none;
  }
}
.responsive-video__wrapper {position:relative;padding-top:56.25%;padding-top:var(--aspectRatio, 56.25%)
}.responsive-video__item {position:absolute;top:0;left:0;height:100% !important;width:100% !important
}
.type-select__icon-wrapper{left:12px;height:80px;width:80px}@media (min-width: 640px){.type-select__icon-wrapper{left:32px}}.type-select__icon{pointer-events:none;left:0;height:24px;width:24px;border-radius:9999px;background-color:transparent}.type-select__pulse{height:80px;width:80px;position:absolute;-webkit-animation:pulse 2.2s ease-out infinite;animation:pulse 2.2s ease-out infinite;border-radius:100%;background-color:transparent}.type-select__text{padding-left:80px}@media (min-width: 640px){.type-select__text{padding-left:0}}@-webkit-keyframes pulse{0%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(225,225,225,.7)}70%{transform:scale(1);box-shadow:0 0 0 12px rgba(225,225,225,0)}100%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(225,225,225,0)}}@keyframes pulse{0%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(225,225,225,.7)}70%{transform:scale(1);box-shadow:0 0 0 12px rgba(225,225,225,0)}100%{transform:scale(0.95);box-shadow:0 0 0 0 rgba(225,225,225,0)}}
.auto-join__form__email:empty:before{display:block;content:attr(placeholder);pointer-events:none}
.text-infographic-number{color:rgba(var(--company-secondary-text-color), 1);color:var(--infographic-text-color, rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1)))}
.leaflet-control-zoom {border-width: 0 !important
}.leaflet-control-zoom a {display: flex !important;align-items: center !important;justify-content: center !important;background-color: rgba(var(--company-secondary-bg-color), 1) !important;background-color: rgba(var(--company-secondary-bg-color), var(--tw-bg-opacity, 1)) !important;line-height: 1 !important;color: rgba(var(--company-secondary-text-color), 1) !important;color: rgba(var(--company-secondary-text-color), var(--tw-text-opacity, 1)) !important
}
:root{--scrollbar-width: 0px}.modal{pointer-events: none;opacity: 0}.modal--open{pointer-events: auto;opacity: 1}.modal__container{overflow: hidden}.modal__container--hide-scrollbar{width:calc(100vw - 0px);width:calc(100vw - var(--scrollbar-width))}
.ba-videorecorder-container{width:100%}

/*# sourceMappingURL=careersite-223b01ff.css.map*/