/* /AnimationComponent/Animation.razor.rz.scp.css */
/*!
* animate.css - https://animate.style/
* Version - 4.0.0
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
.animate__animated[b-axv3vqqe3z] {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite[b-axv3vqqe3z] {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1[b-axv3vqqe3z] {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2[b-axv3vqqe3z] {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3[b-axv3vqqe3z] {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s[b-axv3vqqe3z] {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s[b-axv3vqqe3z] {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s[b-axv3vqqe3z] {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s[b-axv3vqqe3z] {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s[b-axv3vqqe3z] {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster[b-axv3vqqe3z] {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast[b-axv3vqqe3z] {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow[b-axv3vqqe3z] {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower[b-axv3vqqe3z] {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated[b-axv3vqqe3z] {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out][b-axv3vqqe3z] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce-b-axv3vqqe3z {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce[b-axv3vqqe3z] {
  -webkit-animation-name: bounce;
  animation-name: bounce-b-axv3vqqe3z;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash-b-axv3vqqe3z {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash[b-axv3vqqe3z] {
  -webkit-animation-name: flash;
  animation-name: flash-b-axv3vqqe3z;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse-b-axv3vqqe3z {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse[b-axv3vqqe3z] {
  -webkit-animation-name: pulse;
  animation-name: pulse-b-axv3vqqe3z;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand-b-axv3vqqe3z {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand[b-axv3vqqe3z] {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand-b-axv3vqqe3z;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX-b-axv3vqqe3z {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX[b-axv3vqqe3z] {
  -webkit-animation-name: shakeX;
  animation-name: shakeX-b-axv3vqqe3z;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY-b-axv3vqqe3z {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY[b-axv3vqqe3z] {
  -webkit-animation-name: shakeY;
  animation-name: shakeY-b-axv3vqqe3z;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake-b-axv3vqqe3z {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake[b-axv3vqqe3z] {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake-b-axv3vqqe3z;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing-b-axv3vqqe3z {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing[b-axv3vqqe3z] {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing-b-axv3vqqe3z;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada-b-axv3vqqe3z {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada[b-axv3vqqe3z] {
  -webkit-animation-name: tada;
  animation-name: tada-b-axv3vqqe3z;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble[b-axv3vqqe3z] {
  -webkit-animation-name: wobble;
  animation-name: wobble-b-axv3vqqe3z;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello-b-axv3vqqe3z {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello[b-axv3vqqe3z] {
  -webkit-animation-name: jello;
  animation-name: jello-b-axv3vqqe3z;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat-b-axv3vqqe3z {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat[b-axv3vqqe3z] {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat-b-axv3vqqe3z;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown-b-axv3vqqe3z {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown[b-axv3vqqe3z] {
  -webkit-animation-name: backInDown;
  animation-name: backInDown-b-axv3vqqe3z;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft-b-axv3vqqe3z {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft[b-axv3vqqe3z] {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft-b-axv3vqqe3z;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight-b-axv3vqqe3z {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight[b-axv3vqqe3z] {
  -webkit-animation-name: backInRight;
  animation-name: backInRight-b-axv3vqqe3z;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp-b-axv3vqqe3z {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp[b-axv3vqqe3z] {
  -webkit-animation-name: backInUp;
  animation-name: backInUp-b-axv3vqqe3z;
}

/* Back exists */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown-b-axv3vqqe3z {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown[b-axv3vqqe3z] {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown-b-axv3vqqe3z;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft-b-axv3vqqe3z {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft[b-axv3vqqe3z] {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft-b-axv3vqqe3z;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight-b-axv3vqqe3z {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight[b-axv3vqqe3z] {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight-b-axv3vqqe3z;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp-b-axv3vqqe3z {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp[b-axv3vqqe3z] {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp-b-axv3vqqe3z;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn-b-axv3vqqe3z {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn[b-axv3vqqe3z] {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn-b-axv3vqqe3z;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, var(--delta), 0) scaleY(3);
    transform: translate3d(0, var(--delta), 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown-b-axv3vqqe3z {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, var(--delta), 0) scaleY(3);
    transform: translate3d(0, var(--delta), 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown[b-axv3vqqe3z] {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown-b-axv3vqqe3z;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(var(--delta), 0, 0) scaleX(3);
    transform: translate3d(var(--delta), 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft-b-axv3vqqe3z {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(var(--delta), 0, 0) scaleX(3);
    transform: translate3d(var(--delta), 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft[b-axv3vqqe3z] {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft-b-axv3vqqe3z;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight-b-axv3vqqe3z {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight[b-axv3vqqe3z] {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight-b-axv3vqqe3z;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp-b-axv3vqqe3z {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp[b-axv3vqqe3z] {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp-b-axv3vqqe3z;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut-b-axv3vqqe3z {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut[b-axv3vqqe3z] {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut-b-axv3vqqe3z;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown-b-axv3vqqe3z {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown[b-axv3vqqe3z] {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown-b-axv3vqqe3z;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft-b-axv3vqqe3z {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft[b-axv3vqqe3z] {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft-b-axv3vqqe3z;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight-b-axv3vqqe3z {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight[b-axv3vqqe3z] {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight-b-axv3vqqe3z;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp-b-axv3vqqe3z {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp[b-axv3vqqe3z] {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp-b-axv3vqqe3z;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn-b-axv3vqqe3z {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn[b-axv3vqqe3z] {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft-b-axv3vqqe3z;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight[b-axv3vqqe3z] {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight-b-axv3vqqe3z;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft-b-axv3vqqe3z {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight-b-axv3vqqe3z {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight-b-axv3vqqe3z {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight-b-axv3vqqe3z;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft-b-axv3vqqe3z {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft[b-axv3vqqe3z] {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft-b-axv3vqqe3z;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip-b-axv3vqqe3z {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip[b-axv3vqqe3z] {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip-b-axv3vqqe3z;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX-b-axv3vqqe3z {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX[b-axv3vqqe3z] {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX-b-axv3vqqe3z;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY-b-axv3vqqe3z {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY[b-axv3vqqe3z] {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY-b-axv3vqqe3z;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX-b-axv3vqqe3z {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX[b-axv3vqqe3z] {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX-b-axv3vqqe3z;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY-b-axv3vqqe3z {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY[b-axv3vqqe3z] {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY-b-axv3vqqe3z;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight[b-axv3vqqe3z] {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight-b-axv3vqqe3z;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft[b-axv3vqqe3z] {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft-b-axv3vqqe3z;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight[b-axv3vqqe3z] {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight-b-axv3vqqe3z;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft[b-axv3vqqe3z] {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft-b-axv3vqqe3z;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn-b-axv3vqqe3z {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn[b-axv3vqqe3z] {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn-b-axv3vqqe3z;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft-b-axv3vqqe3z {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft[b-axv3vqqe3z] {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft-b-axv3vqqe3z;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight-b-axv3vqqe3z {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight[b-axv3vqqe3z] {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight-b-axv3vqqe3z;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft-b-axv3vqqe3z {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft[b-axv3vqqe3z] {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft-b-axv3vqqe3z;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight-b-axv3vqqe3z {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight[b-axv3vqqe3z] {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight-b-axv3vqqe3z;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut[b-axv3vqqe3z] {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut-b-axv3vqqe3z;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft[b-axv3vqqe3z] {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft-b-axv3vqqe3z;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight[b-axv3vqqe3z] {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight-b-axv3vqqe3z;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft[b-axv3vqqe3z] {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft-b-axv3vqqe3z;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight[b-axv3vqqe3z] {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight-b-axv3vqqe3z;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge-b-axv3vqqe3z {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge[b-axv3vqqe3z] {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge-b-axv3vqqe3z;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox[b-axv3vqqe3z] {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox-b-axv3vqqe3z;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn[b-axv3vqqe3z] {
  -webkit-animation-name: rollIn;
  animation-name: rollIn-b-axv3vqqe3z;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut[b-axv3vqqe3z] {
  -webkit-animation-name: rollOut;
  animation-name: rollOut-b-axv3vqqe3z;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn[b-axv3vqqe3z] {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn-b-axv3vqqe3z;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown[b-axv3vqqe3z] {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown-b-axv3vqqe3z;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft[b-axv3vqqe3z] {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft-b-axv3vqqe3z;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight[b-axv3vqqe3z] {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight-b-axv3vqqe3z;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp-b-axv3vqqe3z {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp[b-axv3vqqe3z] {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp-b-axv3vqqe3z;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut-b-axv3vqqe3z {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut[b-axv3vqqe3z] {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut-b-axv3vqqe3z;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown-b-axv3vqqe3z {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown[b-axv3vqqe3z] {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown-b-axv3vqqe3z;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft-b-axv3vqqe3z {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft[b-axv3vqqe3z] {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft-b-axv3vqqe3z;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight-b-axv3vqqe3z {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight[b-axv3vqqe3z] {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight-b-axv3vqqe3z;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp-b-axv3vqqe3z {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp[b-axv3vqqe3z] {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp-b-axv3vqqe3z;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown[b-axv3vqqe3z] {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown-b-axv3vqqe3z;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft[b-axv3vqqe3z] {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft-b-axv3vqqe3z;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight[b-axv3vqqe3z] {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight-b-axv3vqqe3z;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp[b-axv3vqqe3z] {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp-b-axv3vqqe3z;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown[b-axv3vqqe3z] {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown-b-axv3vqqe3z;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft[b-axv3vqqe3z] {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft-b-axv3vqqe3z;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight[b-axv3vqqe3z] {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight-b-axv3vqqe3z;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp-b-axv3vqqe3z {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp[b-axv3vqqe3z] {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp-b-axv3vqqe3z;
}
/* /Components/CultureSelector.razor.rz.scp.css */
p.CultureSelector[b-6ztja8ey0o] {
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
p.CultureSelector > div[b-6ztja8ey0o] {
  margin-left: 10px;
  padding: 2px;
}
p.CultureSelector > div.selected[b-6ztja8ey0o] {
  background-color: var(--mud-palette-secondary);
}
p.CultureSelector > div > img[b-6ztja8ey0o] {
  cursor: pointer;
}
/* /Components/FivePillars.razor.rz.scp.css */
div.FivePillars div.mud-paper[b-dz4e24a0z6] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.FivePillars div.mud-paper.label[b-dz4e24a0z6] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.FivePillars div.mud-paper.labelTop[b-dz4e24a0z6] {
  width: 200px !important;
  padding-left: 10px;
}
div.FivePillars div.mud-paper.null[b-dz4e24a0z6] {
  background-color: var(--mud-palette-dark);
}
/* /Components/FormLogin.razor.rz.scp.css */
div.FormLogin[b-1kieravxoa] {
  width: 400px;
}
div.FormLogin > p[b-1kieravxoa] {
  display: flex;
  justify-content: center;
}
/* /Components/FormPerson.razor.rz.scp.css */
div.form_person > form > div.mud-grid > div.mud-grid-item[b-i0c01nyeh2] {
  padding-top: 0px;
  padding-left: 0px;
  min-height: 64px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel[b-i0c01nyeh2] {
  background-color: transparent;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header[b-i0c01nyeh2] {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  color: #AB4974;
  padding: 12px 0px 12px 24px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text > div[b-i0c01nyeh2] {
  align-items: center;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text > div > button[b-i0c01nyeh2] {
  min-width: 32px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text > div > button > span > img[b-i0c01nyeh2] {
  min-height: 32px;
  min-width: 32px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content[b-i0c01nyeh2] {
  padding-right: 0px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header[b-i0c01nyeh2] {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
  align-items: center;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > p[b-i0c01nyeh2] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.5px;
  color: #AB4974;
  width: 100%;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action[b-i0c01nyeh2] {
  display: flex;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action > button[b-i0c01nyeh2] {
  justify-content: end;
  width: 32px;
  height: 32px;
  padding: 0px;
  min-width: 32px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action > button > span > img[b-i0c01nyeh2] {
  width: 32px;
  height: 32px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action > button:nth-child(2n+1)[b-i0c01nyeh2] {
  margin-right: 5px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker[b-i0c01nyeh2] {
  margin-bottom: 25px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container[b-i0c01nyeh2] {
  background-color: white;
  border-radius: 4px 4px 0px 0px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container > div.mud-input[b-i0c01nyeh2] {
  padding-right: 10px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > input[b-i0c01nyeh2] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container > label[b-i0c01nyeh2] {
  margin-left: 10px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control[b-i0c01nyeh2] {
  margin-bottom: 25px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control > div.mud-input-control-input-container[b-i0c01nyeh2] {
  background-color: white;
  border-radius: 4px 4px 0px 0px;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > input[b-i0c01nyeh2] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.form_person > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control > div.mud-input-control-input-container > label[b-i0c01nyeh2] {
  margin-left: 10px;
}
/* /Components/FormPet.razor.rz.scp.css */
div.form_pet > form > div.mud-grid > div.mud-grid-item[b-719bo427ep] {
  padding-top: 0px;
  padding-left: 0px;
  min-height: 64px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel[b-719bo427ep] {
  background-color: transparent;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header[b-719bo427ep] {
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 400;
  color: #AB4974;
  padding: 12px 0px 12px 24px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text > div[b-719bo427ep] {
  align-items: center;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text > div > button[b-719bo427ep] {
  min-width: 32px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text > div > button > span > img[b-719bo427ep] {
  min-height: 32px;
  min-width: 32px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content[b-719bo427ep] {
  padding-right: 0px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header[b-719bo427ep] {
  display: flex;
  flex-direction: row;
  margin-bottom: 25px;
  align-items: center;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > p[b-719bo427ep] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.5px;
  color: #AB4974;
  width: 100%;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action[b-719bo427ep] {
  display: flex;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action > button[b-719bo427ep] {
  justify-content: end;
  width: 32px;
  height: 32px;
  padding: 0px;
  min-width: 32px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action > button > span > img[b-719bo427ep] {
  width: 32px;
  height: 32px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.header > div.action > button:nth-child(2n+1)[b-719bo427ep] {
  margin-right: 5px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker[b-719bo427ep] {
  margin-bottom: 25px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container[b-719bo427ep] {
  background-color: white;
  border-radius: 4px 4px 0px 0px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container > div.mud-input[b-719bo427ep] {
  padding-right: 10px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > input[b-719bo427ep] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-picker > div.mud-input-control > div.mud-input-control-input-container > label[b-719bo427ep] {
  margin-left: 10px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control[b-719bo427ep] {
  margin-bottom: 25px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control > div.mud-input-control-input-container[b-719bo427ep] {
  background-color: white;
  border-radius: 4px 4px 0px 0px;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > input[b-719bo427ep] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.form_pet > form > div.mud-grid > div.mud-grid-item > div.mud-expand-panel > div.mud-collapse-container > div.mud-collapse-wrapper > div.mud-collapse-wrapper-inner > div.mud-expand-panel-content > div.mud-input-control > div.mud-input-control-input-container > label[b-719bo427ep] {
  margin-left: 10px;
}
/* /Components/FormRegister.razor.rz.scp.css */
div.form_register div.mud-select[b-br7pqqzkg2] {
  padding-bottom: 10px;
}
div.form_register div.Table[b-br7pqqzkg2] {
  display: flex;
}
div.form_register div.Table > div.d-inline:first-child[b-br7pqqzkg2] {
  padding-right: 20px;
}
/* /Components/FormUser.razor.rz.scp.css */
div.form-user > div.mud-focus-trap > div.mud-focus-trap-child-container > div.mud-dialog-content > form > div.mud-input-control[b-xv1gf4xdlx] {
  margin-bottom: 25px;
}
div.form-user > div.mud-focus-trap > div.mud-focus-trap-child-container > div.mud-dialog-content > form > div.mud-input-control > div.mud-input-control-input-container[b-xv1gf4xdlx] {
  background-color: white;
  border-radius: 4px 4px 0px 0px;
}
div.form-user > div.mud-focus-trap > div.mud-focus-trap-child-container > div.mud-dialog-content > form > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > input[b-xv1gf4xdlx] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.form-user > div.mud-focus-trap > div.mud-focus-trap-child-container > div.mud-dialog-content > form > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > div.mud-input-slot[b-xv1gf4xdlx] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.form-user > div.mud-focus-trap > div.mud-focus-trap-child-container > div.mud-dialog-content > form > div.mud-input-control > div.mud-input-control-input-container > label[b-xv1gf4xdlx] {
  margin-left: 10px;
}
div.form-user div.mud-select[b-xv1gf4xdlx] {
  padding-bottom: 10px;
}
/* /Components/Identity.razor.rz.scp.css */
div.Identities div.mud-paper[b-g87m40hk2m] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.Identities div.mud-paper.label[b-g87m40hk2m] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.Identities div.mud-paper.labelTop[b-g87m40hk2m] {
  width: 200px !important;
  padding-left: 10px;
}
/* /Components/InclusionGrid.razor.rz.scp.css */
div.InclusionGrid div:nth-child(1)[b-o71rms82pw] {
  position: relative;
  z-index: 100;
}
div.InclusionGrid div:nth-child(2)[b-o71rms82pw] {
  position: relative;
  z-index: 0;
}
div.InclusionGrid div.karma[b-o71rms82pw] {
  text-decoration: overline;
  text-decoration-color: #84BBD6;
}
div.InclusionGrid div.blocage[b-o71rms82pw] {
  text-decoration: overline;
  text-decoration-color: #FFC067;
}
div.InclusionGrid div.mud-paper[b-o71rms82pw] {
  width: 40px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A2BBA8;
  border-radius: 6px 6px 0px 0px;
}
div.InclusionGrid div.mud-paper > p[b-o71rms82pw] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  color: #003D5C;
}
div.InclusionGrid div.mud-paper.Value[b-o71rms82pw] {
  background-color: #AB4974;
  border-radius: 0px 0px 8px 8px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  color: #FFFFFF;
}
/* /Components/LabelValues.razor.rz.scp.css */
div.LabelValue[b-snk5oucfh8] {
  display: flex;
}
div.LabelValue > div[b-snk5oucfh8] {
  z-index: 50;
}
div.LabelValue > div > div.Label[b-snk5oucfh8] {
  width: 200px;
  height: 40px;
  background-color: #A2BBA8;
  border-radius: 6px 0px 0px 6px;
  display: flex;
  cursor: default;
}
div.LabelValue > div > div.Label > div[b-snk5oucfh8] {
  height: 100%;
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  color: #003D5C;
}
div.LabelValue > div > div.Label.disabled[b-snk5oucfh8] {
  background-color: lightgray;
}
div.LabelValue > div > div.Label2[b-snk5oucfh8] {
  width: 200px;
  height: 40px;
  background-color: #A2BBA8;
  border-radius: 6px 0px 0px 6px;
  display: flex;
  align-items: center;
  cursor: default;
}
div.LabelValue > div > div.Label2 > div:nth-child(1)[b-snk5oucfh8] {
  margin-left: 10px;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  color: #003D5C;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.LabelValue > div > div.Label2 > div:nth-child(2)[b-snk5oucfh8] {
  font-size: 12px;
  margin-right: 10px;
  font-style: italic;
}
div.LabelValue > div > div.Label2.disabled[b-snk5oucfh8] {
  background-color: lightgray;
}
div.LabelValue div.Value[b-snk5oucfh8] {
  width: 80px;
  height: 40px;
  background-color: #AB4974;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  z-index: 40;
  margin-left: -40px;
}
div.LabelValue div.Value > div:first-child[b-snk5oucfh8] {
  width: 40px;
  margin: 0px;
}
div.LabelValue div.Value > div:nth-child(2)[b-snk5oucfh8] {
  width: 40px;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  margin: 0px;
}
div.LabelValue div.Value.disabled[b-snk5oucfh8] {
  background-color: darkgray;
}
div.LabelValue div.Master[b-snk5oucfh8] {
  width: 72px;
  height: 40px;
  background-color: #A178E8;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  z-index: 30;
  margin-left: -40px;
}
div.LabelValue div.Master > div:first-child[b-snk5oucfh8] {
  width: 40px;
  margin: 0px;
}
div.LabelValue div.Master > div:nth-child(2)[b-snk5oucfh8] {
  width: 40px;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  margin: 0px;
}
div.LabelValue div.Karmique[b-snk5oucfh8] {
  width: 72px;
  height: 40px;
  background-color: #84BBD6;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  z-index: 20;
  margin-left: -40px;
}
div.LabelValue div.Karmique > div:first-child[b-snk5oucfh8] {
  width: 40px;
  margin: 0px;
}
div.LabelValue div.Karmique > div:nth-child(2)[b-snk5oucfh8] {
  width: 40px;
  color: white;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-family: Montserrat;
  font-weight: 700;
  font-size: 16px;
  margin: 0px;
}
/* /Components/LifeChallenges.razor.rz.scp.css */
div.LifeChallenges div.mud-paper[b-1z2u6p0ji6] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.LifeChallenges div.mud-paper.label[b-1z2u6p0ji6] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.LifeChallenges div.mud-paper.labelTop[b-1z2u6p0ji6] {
  width: 200px !important;
  padding-left: 10px;
}
/* /Components/OtherNumbers.razor.rz.scp.css */
div.OtherNumbers div.mud-paper[b-x7ann31g2b] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.OtherNumbers div.mud-paper.label[b-x7ann31g2b] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.OtherNumbers div.mud-paper.labelTop[b-x7ann31g2b] {
  width: 200px !important;
  padding-left: 10px;
}
div.OtherNumbers div.mud-paper.null[b-x7ann31g2b] {
  background-color: var(--mud-palette-dark);
}
/* /Components/SoulLinks.razor.rz.scp.css */
div.SoulLinks div.mud-expansion-panels > div.mud-expand-panel[b-l9ey93w95k] {
  background-color: #F7F2FA;
}
div.SoulLinks div.mud-paper[b-l9ey93w95k] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.SoulLinks div.mud-paper.label[b-l9ey93w95k] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.SoulLinks div.mud-paper.labelTop[b-l9ey93w95k] {
  width: 200px !important;
  padding-left: 10px;
}
div.SoulLinks div.mud-paper.null[b-l9ey93w95k] {
  background-color: var(--mud-palette-dark);
}
/* /Components/Temporality.razor.rz.scp.css */
div.Temporality div.mud-paper[b-ssp6l5u9s4] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.Temporality div.mud-paper.label[b-ssp6l5u9s4] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.Temporality div.mud-paper.labelDouble[b-ssp6l5u9s4] {
  width: 200px !important;
  height: 105px;
  justify-content: left;
  padding-left: 10px;
}
div.Temporality div.mud-paper.labelTop[b-ssp6l5u9s4] {
  width: 200px !important;
  padding-left: 10px;
}
div.Temporality div.Item[b-ssp6l5u9s4] {
  opacity: 0.6;
}
div.Temporality div.Item.selected[b-ssp6l5u9s4] {
  opacity: 1;
}
div.Temporality div.Item > div > div.LabelValue > div.Label[b-ssp6l5u9s4] {
  border-radius: 0px !important;
}
div.Temporality > p[b-ssp6l5u9s4] {
  width: 280px;
  display: flex;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  color: #003D5C;
}
div.Temporality > p.no-space[b-ssp6l5u9s4] {
  width: 240px;
}
div.Temporality > div.LifeCycle[b-ssp6l5u9s4] {
  height: 140px;
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 10px;
}
div.Temporality > div.LifeCycle > div.Background[b-ssp6l5u9s4] {
  background-color: #B6CEC5;
  border-radius: 8px 0px 0px 8px;
  height: 100%;
  width: 235px;
  position: absolute;
}
div.Temporality > div.LifeCycle > div.Title[b-ssp6l5u9s4] {
  transform-origin: 70px 70px 0;
  transform: rotate(-90deg);
  height: 20px;
  width: 140px;
  display: flex;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #1B6185;
  position: absolute;
  margin-left: 5px;
}
div.Temporality > div.LifeCycle > div.Content[b-ssp6l5u9s4] {
  margin-left: 35px;
}
div.Temporality > div.Realisation[b-ssp6l5u9s4] {
  height: 190px;
  display: flex;
  flex-direction: row;
  position: relative;
  margin-bottom: 10px;
}
div.Temporality > div.Realisation > div.Background[b-ssp6l5u9s4] {
  background-color: #B6CEC5;
  border-radius: 8px 0px 0px 8px;
  height: 100%;
  width: 235px;
  position: absolute;
}
div.Temporality > div.Realisation > div.Title[b-ssp6l5u9s4] {
  transform-origin: 95px 95px 0;
  transform: rotate(-90deg);
  height: 20px;
  width: 190px;
  display: flex;
  justify-content: center;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 14px;
  color: #1B6185;
  position: absolute;
  margin-left: 5px;
}
div.Temporality > div.Realisation > div.Content[b-ssp6l5u9s4] {
  margin-left: 35px;
}
div.Temporality > div.animate__animated > div.LabelValue[b-ssp6l5u9s4] {
  margin-left: 35px;
}
div.Temporality > div.animate__animated > div.LabelValue.no-space[b-ssp6l5u9s4] {
  margin-left: 0px;
}
/* /Components/ThreePillars.razor.rz.scp.css */
div.ThreePillars div.mud-paper[b-0md4kpve4m] {
  width: 200px;
  height: 50px;
  justify-content: center;
  align-items: center;
  margin-bottom: 5px;
}
div.ThreePillars div.mud-paper.label[b-0md4kpve4m] {
  width: 200px !important;
  justify-content: left;
  padding-left: 10px;
}
div.ThreePillars div.mud-paper.labelTop[b-0md4kpve4m] {
  width: 200px !important;
  padding-left: 10px;
}
/* /Layout/LoginLayout.razor.rz.scp.css */
div.mud-main-content[b-h16vx35kuz] {
  padding-top: 0px;
  display: flex;
  align-items: center;
}

div.mud-progress-circular[b-h16vx35kuz] {
  color: #872E6C !important;
}

/*> div.mud-layout {
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}*/
/* /Layout/MainLayout.razor.rz.scp.css */
.mud-popover:has(.mud-picker)[b-3duag0c8t6] {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

div.mud-drawer-content[b-3duag0c8t6] {
  min-height: 300px;
  position: relative;
}
div.mud-drawer-content > div.logo[b-3duag0c8t6] {
  position: absolute;
  bottom: 0px;
  left: 10px;
  width: 215px;
  height: 108px;
  background-image: url("images/logo.png");
  background-size: 215px 108px;
  background-position: 0px 0px;
  background-repeat: no-repeat;
}

/*div.mud-layout {
    background-image: url("../images/background.png");
    background-repeat: no-repeat;
    background-size: cover;
}
*/
div.content[b-3duag0c8t6] {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0px 0px 0px 0px;
  margin: 0px;
  margin-top: calc(var(--mud-appbar-height) - var(--mud-appbar-height) / 8);
  height: calc(100% - (var(--mud-appbar-height) - var(--mud-appbar-height) / 8));
}

div.mud-dialog[b-3duag0c8t6] {
  background-color: #f7f2fa !important;
  min-width: 300px;
}

div.mud-dialog-title > h6[b-3duag0c8t6] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  color: #AB4974;
}

@media (min-width: 600px) {
  div.content[b-3duag0c8t6] {
    margin-top: var(--mud-appbar-height);
    height: calc(100% - var(--mud-appbar-height));
  }
}
div.mud-main-content[b-3duag0c8t6] {
  height: 100%;
}

div.mud-progress-circular[b-3duag0c8t6] {
  color: #872E6C !important;
}

h5.title[b-3duag0c8t6] {
  font-family: Montserrat;
  font-size: 22px;
}

@media (max-width: 500px) {
  h5.title[b-3duag0c8t6] {
    font-size: 18px;
  }
}
p.username[b-3duag0c8t6] {
  font-family: Montserrat;
  font-weight: normal;
  font-size: 12px;
  font-style: italic;
  padding-right: 12px;
}

@media (max-width: 430px) {
  p.username[b-3duag0c8t6] {
    display: none;
  }
}
.page[b-3duag0c8t6] {
  position: relative;
  display: flex;
  flex-direction: column;
}

main[b-3duag0c8t6] {
  flex: 1;
}

.sidebar[b-3duag0c8t6] {
  background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-3duag0c8t6] {
  background-color: #f7f7f7;
  border-bottom: 1px solid #d6d5d5;
  justify-content: flex-end;
  height: 3.5rem;
  display: flex;
  align-items: center;
}

.top-row[b-3duag0c8t6]  a, .top-row[b-3duag0c8t6]  .btn-link {
  white-space: nowrap;
  margin-left: 1.5rem;
  text-decoration: none;
}

.top-row[b-3duag0c8t6]  a:hover, .top-row[b-3duag0c8t6]  .btn-link:hover {
  text-decoration: underline;
}

.top-row[b-3duag0c8t6]  a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640.98px) {
  .top-row[b-3duag0c8t6] {
    justify-content: space-between;
  }
  .top-row[b-3duag0c8t6]  a, .top-row[b-3duag0c8t6]  .btn-link {
    margin-left: 0;
  }
}
@media (min-width: 641px) {
  .page[b-3duag0c8t6] {
    flex-direction: row;
  }
  .sidebar[b-3duag0c8t6] {
    width: 250px;
    height: 100vh;
    position: sticky;
    top: 0;
  }
  .top-row[b-3duag0c8t6] {
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .top-row.auth[b-3duag0c8t6]  a:first-child {
    flex: 1;
    text-align: right;
    width: 0;
  }
  .top-row[b-3duag0c8t6], article[b-3duag0c8t6] {
    padding-left: 2rem !important;
    padding-right: 1.5rem !important;
  }
}
/* /Layout/NavMenu.razor.rz.scp.css */
nav.mud-nav-group[b-mcm6iska29] {
  color: #872E6C;
}
nav.mud-nav-group svg[b-mcm6iska29] {
  fill: #872E6C !important;
}
nav.mud-nav-group > button > div[b-mcm6iska29] {
  font-family: Montserrat;
}
nav.mud-nav-group a.mud-nav-link > div[b-mcm6iska29] {
  font-family: Montserrat;
}

div.mud-drawer-content[b-mcm6iska29] {
  min-height: 450px;
}
div.mud-drawer-content > div.mud-paper[b-mcm6iska29] {
  background-color: #F7F2FA;
  height: 100%;
}
p.CultureSelector[b-mcm6iska29] {
  display: none !important;
  justify-content: center;
}

.navbar-toggler[b-mcm6iska29] {
  background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-mcm6iska29] {
  height: 3.5rem;
  background-color: rgba(0, 0, 0, 0.4);
}

.navbar-brand[b-mcm6iska29] {
  font-size: 1.1rem;
}

.bi[b-mcm6iska29] {
  display: inline-block;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
  top: -1px;
  background-size: cover;
}

.bi-house-door-fill-nav-menu[b-mcm6iska29] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-mcm6iska29] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-mcm6iska29] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-mcm6iska29] {
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-mcm6iska29] {
  padding-top: 1rem;
}

.nav-item:last-of-type[b-mcm6iska29] {
  padding-bottom: 1rem;
}

.nav-item[b-mcm6iska29]  a {
  color: #d7d7d7;
  border-radius: 4px;
  height: 3rem;
  display: flex;
  align-items: center;
  line-height: 3rem;
}

.nav-item[b-mcm6iska29]  a.active {
  background-color: rgba(255, 255, 255, 0.37);
  color: white;
}

.nav-item[b-mcm6iska29]  a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

@media (min-width: 641px) {
  .navbar-toggler[b-mcm6iska29] {
    display: none;
  }
  .collapse[b-mcm6iska29] {
    /* Never collapse the sidebar for wide screens */
    display: block;
  }
  .nav-scrollable[b-mcm6iska29] {
    /* Allow sidebar to scroll for tall menus */
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
  }
}
/* /Pages/Consultations.razor.rz.scp.css */
div.mud-layout:has(> aside.mud-drawer + div.mud-main-content > div.content > div.consultations)[b-0j8qpktufp] {
  background-image: none;
}

div.consultations[b-0j8qpktufp] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 24px;
  min-width: 300px;
  /*    @media(max-width:700px) {
      padding-left: 10px;
      padding-right: 10px;

      > div.mud-table {
          min-width: 300px;
          justify-self: center;
      }
  }

  @media (max-width:600px) {
      > div.mud-table {
          min-width: 300px;
          justify-self: center;
      }

      div.mud-toolbar {
          display: flex;
          flex-direction: column;
      }
  }*/
}
div.consultations div.mud-table[b-0j8qpktufp] {
  border-radius: 16px !important;
}
div.consultations td.action[b-0j8qpktufp] {
  display: flex;
  padding-right: 0px !important;
}
div.consultations td.action > div.empty[b-0j8qpktufp] {
  width: 20px;
  height: 20px;
  padding: 0px;
  min-width: 30px;
}
div.consultations button[b-0j8qpktufp] {
  width: 20px;
  height: 20px;
  padding: 0px;
  min-width: 32px;
}
div.consultations button > span.mud-button-label > img.update[b-0j8qpktufp] {
  filter: invert(55%) sepia(86%) saturate(1897%) hue-rotate(221deg) brightness(94%) contrast(92%);
}
div.consultations button > span.mud-button-label > img.pdf[b-0j8qpktufp] {
  filter: invert(55%) sepia(86%) saturate(1897%) hue-rotate(221deg) brightness(94%) contrast(92%);
}
div.consultations button:disabled > span.mud-button-label > img[b-0j8qpktufp] {
  filter: invert(68%) sepia(0%) saturate(26%) hue-rotate(177deg) brightness(99%) contrast(82%);
}
div.consultations div.mud-grid[b-0j8qpktufp] {
  width: 700px;
  margin-left: 0px;
  height: 100%;
  font-size: 1rem !important;
}
div.consultations div.mud-grid > div.mud-grid-item[b-0j8qpktufp] {
  padding: 25px !important;
  border-radius: 16px;
  background-color: #F7F2FA;
}
div.consultations div.mud-grid > div.mud-grid-item > div.header[b-0j8qpktufp] {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 35px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.header > p[b-0j8qpktufp] {
  width: 100%;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #A46090;
}
div.consultations div.mud-grid > div.mud-grid-item > div.header > a[b-0j8qpktufp] {
  justify-content: end;
  width: 24px;
  height: 24px;
  padding: 0px;
  min-width: 24px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container[b-0j8qpktufp] {
  border-radius: 8px 8px 0px 0px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head[b-0j8qpktufp] {
  background-color: #a2bba8 !important;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr[b-0j8qpktufp] {
  height: 10px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th[b-0j8qpktufp] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: white;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:nth-child(1)[b-0j8qpktufp] {
  width: 160px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:last-child[b-0j8qpktufp] {
  width: 60px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:last-child > span[b-0j8qpktufp] {
  justify-content: center;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr[b-0j8qpktufp] {
  background-color: #d9d9d9;
  height: 39px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr > td[b-0j8qpktufp] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #222222;
  padding-bottom: 11px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr[b-0j8qpktufp] {
  position: relative;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr[b-0j8qpktufp]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #F7F2FA;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr:last-child[b-0j8qpktufp] {
  height: 34px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr:last-child > td[b-0j8qpktufp] {
  padding-bottom: 6px;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr:last-child[b-0j8qpktufp]::after {
  content: "";
  height: 0px;
  background-color: transparent;
}
div.consultations div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-pagination[b-0j8qpktufp] {
  display: block;
  background-color: #a2bba8 !important;
  height: 14px;
  border-radius: 0px 0px 8px 8px;
}
div.consultations div.mud-grid > div.mud-grid-item[b-0j8qpktufp]::after {
  content: " ";
  display: block;
  background-color: #a2bba8 !important;
  height: 14px;
  border-radius: 0px 0px 8px 8px;
}
@media (max-width: 800px) {
  div.consultations > div.mud-grid[b-0j8qpktufp] {
    width: 480px;
  }
}

@media (max-width: 800px) {
  div.consultations[b-0j8qpktufp] {
    width: 480px;
  }
}
@media (max-width: 480px) {
  div.consultations[b-0j8qpktufp] {
    margin-left: 150px;
  }
}
/* /Pages/Consultation/CreateOrUpdate.razor.rz.scp.css */
div.mud-layout:has(> aside.mud-drawer + div.mud-main-content > div.content > div.consultation-create)[b-o0be21bm3d] {
  background-image: none;
}

div.DisplayErrors[b-o0be21bm3d] {
  padding-bottom: 15px;
}

div.consultation-create[b-o0be21bm3d] {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 34px;
  width: 700px;
  /*    @media(max-width:760px) {
      > div.mud-grid {
          max-width: 500px;
      }
  }

  @media(max-width:560px) {
      > div.mud-grid {
          max-width: 300px;
      }
  }*/
}
div.consultation-create > div.mud-grid[b-o0be21bm3d] {
  width: 700px;
  font-size: 1rem !important;
  margin-left: 0px;
  background-color: #FFFFFF;
}
div.consultation-create > div.mud-grid > div.mud-grid-item[b-o0be21bm3d] {
  padding: 25px 25px 0px 25px !important;
  border-radius: 16px;
  background-color: #F7F2FA;
  margin-bottom: 10px;
}
div.consultation-create > div.mud-grid > div.mud-grid-item > div.mud-expand-panel[b-o0be21bm3d] {
  background-color: transparent;
}
div.consultation-create > div.mud-grid > div.mud-grid-item > div.header[b-o0be21bm3d] {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 35px;
}
div.consultation-create > div.mud-grid > div.mud-grid-item > div.header > p[b-o0be21bm3d] {
  width: 100%;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #A46090;
}
div.consultation-create > div.mud-grid > div.mud-grid-item > div.header > a[b-o0be21bm3d] {
  justify-content: end;
  width: 24px;
  height: 24px;
  padding: 0px;
  min-width: 24px;
}
div.consultation-create > div.mud-grid > div.mud-grid-item:last-child[b-o0be21bm3d] {
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0px !important;
  margin-bottom: 0px;
}
div.consultation-create > div.mud-grid > div.mud-grid-item:last-child > div > button[b-o0be21bm3d] {
  background-color: #a178e8;
  margin-left: 5px !important;
  margin-bottom: 10px !important;
}
div.consultation-create > div.mud-grid > div.mud-grid-item:last-child > div > button > span[b-o0be21bm3d] {
  color: #FFFFFF;
}
div.consultation-create > div.mud-grid > div.mud-grid-item:last-child > div > button > span > img[b-o0be21bm3d] {
  height: 24px !important;
}
@media (max-width: 800px) {
  div.consultation-create > div.mud-grid[b-o0be21bm3d] {
    width: 480px;
  }
}

@media (max-width: 800px) {
  div.consultation-create[b-o0be21bm3d] {
    width: 480px;
  }
}
@media (max-width: 480px) {
  div.consultation-create[b-o0be21bm3d] {
    margin-left: 150px;
  }
}
/* /Pages/Default.razor.rz.scp.css */
div.Results[b-5ngkzd7j18] {
  display: flex;
  justify-content: center;
}
div.Results div.mud-grid[b-5ngkzd7j18] {
  max-width: 700px;
  margin-top: -10px;
  margin-left: 0px;
}
div.Results div.mud-grid > div.mud-grid-item[b-5ngkzd7j18] {
  padding-top: 0px !important;
  padding-left: 0px !important;
  border-radius: 16px;
  background-color: #F7F2FA;
}
div.Results div.mud-grid > div.mud-grid-item.header[b-5ngkzd7j18] {
  border-radius: 16px 16px 0px 0px;
}
div.Results div.mud-grid > div.mud-grid-item.middle[b-5ngkzd7j18] {
  border-radius: unset;
}
div.Results div.mud-grid > div.mud-grid-item.middle > div.mud-paper[b-5ngkzd7j18] {
  border-radius: unset;
}
div.Results div.mud-grid > div.mud-grid-item.footer[b-5ngkzd7j18] {
  border-radius: 0px 0px 16px 16px;
}
div.Results div.mud-grid > div.mud-grid-item.footer > div.mud-paper > div.mud-card-content[b-5ngkzd7j18] {
  border-radius: 0px 0px 16px 16px;
}
div.Results div.mud-grid > div.mud-grid-item.separator[b-5ngkzd7j18] {
  background-color: #FFFFFF !important;
  height: 15px;
}
div.Results div.mud-grid > div.mud-grid-item > div.mud-paper[b-5ngkzd7j18] {
  border-radius: 16px;
  background-color: #F7F2FA;
}
div.Results div.mud-grid > div.mud-grid-item > div.mud-paper > div.mud-card-content[b-5ngkzd7j18] {
  background-color: #F7F2FA;
}
div.Results div.mud-grid > div.mud-grid-item > div.mud-paper > div.mud-card-content > div.mud-expand-panel[b-5ngkzd7j18] {
  background-color: #F7F2FA;
}
div.Results div.mud-card-header[b-5ngkzd7j18] {
  font-weight: bolder;
  font-size: 18px;
}
div.Results div.mud-expand-panel-text[b-5ngkzd7j18] {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
}
/* /Pages/Home.razor.rz.scp.css */
div.home[b-vr8qhgyogz] {
  height: 100%;
  width: 100%;
  /*    background-image: url("images/background.avif");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;*/
  /*@media (min-width:800px) and (max-width:1080px) {
      > div.presentation-bloc {
          > div {
              > div.presentation {
                  flex-direction: row;
              }
          }
      }
  }*/
}
div.home > div.title-bloc[b-vr8qhgyogz] {
  padding: 0px 50px 0px 50px;
  background-color: #dfdff2;
}
div.home > div.title-bloc > div[b-vr8qhgyogz] {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
div.home > div.title-bloc > div > div.title[b-vr8qhgyogz] {
  color: #994F83;
  font-weight: 600;
  font-family: "Nunito";
  font-size: 45px;
}
div.home > div.title-bloc > div > div.sub-title[b-vr8qhgyogz] {
  padding-top: 30px;
  color: #994F83;
  font-weight: 600;
  font-family: "Nunito";
  font-size: 18px;
}
div.home > div.title-bloc > div > div.sub-title > strong[b-vr8qhgyogz] {
  font-weight: 800;
}
div.home > div.presentation-bloc[b-vr8qhgyogz] {
  padding: 35px 50px 0px 50px;
  background-color: #dfdff2;
}
div.home > div.presentation-bloc > div[b-vr8qhgyogz] {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
div.home > div.presentation-bloc > div > div.presentation[b-vr8qhgyogz] {
  display: flex;
  flex-direction: row;
  gap: 45px;
}
div.home > div.presentation-bloc > div > div.presentation > div[b-vr8qhgyogz] {
  flex: 1;
  justify-self: center;
  align-self: center;
}
div.home > div.presentation-bloc > div > div.presentation > div > img[b-vr8qhgyogz] {
  max-width: 100%;
  height: auto;
  border-radius: 25px;
}
div.home > div.presentation-bloc > div > div.presentation > div.text[b-vr8qhgyogz] {
  font-family: "PT Sans";
  font-size: 19px;
}
div.home > div.presentation-bloc > div > div.presentation > div.text > div.paragraph[b-vr8qhgyogz] {
  padding-bottom: 20px;
}
div.home > div.presentation-bloc > div > div.presentation > div.text > div.paragraph > strong[b-vr8qhgyogz] {
  color: #994F83;
  font-weight: normal;
}
div.home > div.presentation-bloc > div > div.action[b-vr8qhgyogz] {
  display: flex;
  flex-direction: row;
  padding: 50px 0px 50px 0px;
  gap: 40px;
  justify-content: center;
}
div.home > div.presentation-bloc > div > div.action .mud-button[b-vr8qhgyogz] {
  border-radius: 25px !important;
  text-transform: none !important;
  min-height: 50px;
  flex: 1;
  max-width: 270px;
}
div.home > div.presentation-bloc > div > div.action .mud-button > span[b-vr8qhgyogz] {
  font-weight: bolder;
  font-size: 15px;
  font-family: "PT Sans" !important;
}
div.home > div.presentation-bloc > div > div.action .mud-button:nth-child(1)[b-vr8qhgyogz] {
  color: black;
  background-color: #a178e8;
}
div.home > div.presentation-bloc > div > div.action .mud-button:nth-child(2)[b-vr8qhgyogz] {
  color: #a178e8;
  border: 2px solid #a178e8;
  background-color: #f7f2fa;
}
div.home > div.free-bloc[b-vr8qhgyogz] {
  padding: 65px 50px 0px 50px;
  background-color: #f7f3fb;
}
div.home > div.free-bloc > div[b-vr8qhgyogz] {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
div.home > div.free-bloc > div > div.request-free-trial[b-vr8qhgyogz] {
  display: flex;
  flex-direction: column;
}
div.home > div.free-bloc > div > div.request-free-trial > div.title[b-vr8qhgyogz] {
  color: #994F83;
  font-weight: 600;
  font-family: "Nunito";
  font-size: 45px;
}
div.home > div.free-bloc > div > div.request-free-trial > div.content[b-vr8qhgyogz] {
  font-size: 20px;
  font-family: "PT Sans";
  align-items: start !important;
  margin-top: 30px !important;
}
div.home > div.free-bloc > div > div.action[b-vr8qhgyogz] {
  padding: 30px 0px 50px 0px;
}
div.home > div.free-bloc > div > div.action .mud-button[b-vr8qhgyogz] {
  border-radius: 25px !important;
  text-transform: none !important;
  min-height: 50px;
}
div.home > div.free-bloc > div > div.action .mud-button > span[b-vr8qhgyogz] {
  font-weight: bolder;
  font-size: 15px;
  font-family: "PT Sans";
}
div.home > div.free-bloc > div > div.action .mud-button:nth-child(1)[b-vr8qhgyogz] {
  color: White;
  background-color: #a178e8;
}
div.home > div.prices-bloc[b-vr8qhgyogz] {
  padding: 65px 50px 0px 50px;
  background-color: #fefafb;
}
div.home > div.prices-bloc > div[b-vr8qhgyogz] {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
div.home > div.prices-bloc > div > div.title[b-vr8qhgyogz] {
  color: #994F83;
  font-weight: 600;
  font-family: "Nunito";
  font-size: 45px;
}
div.home > div.prices-bloc > div > div.offers[b-vr8qhgyogz] {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 30px 0px 15px 0px;
  justify-content: center;
}
div.home > div.prices-bloc > div > div.offers > div.frame[b-vr8qhgyogz] {
  flex: 1;
  padding: 15px;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  max-width: 400px;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.title[b-vr8qhgyogz] {
  color: #994F83;
  font-weight: 600;
  font-family: "Nunito";
  font-size: 25px;
  text-align: center;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content[b-vr8qhgyogz] {
  font-size: 18px;
  font-family: "PT Sans";
  align-items: start !important;
  margin-top: 30px !important;
  text-align: center;
  height: inherit !important;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content > div[b-vr8qhgyogz] {
  padding-bottom: 10px;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content > div > strong[b-vr8qhgyogz] {
  color: #994f83;
  font-weight: normal;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content > ul[b-vr8qhgyogz] {
  list-style-type: none;
  list-style-position: inside;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content > ul > li[b-vr8qhgyogz] {
  text-align: start;
  position: relative;
  padding-left: 30px;
  padding-bottom: 10px;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content > ul > li > strong[b-vr8qhgyogz] {
  color: #994f83;
  font-weight: normal;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.content > ul > li[b-vr8qhgyogz]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #8651e1;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.action[b-vr8qhgyogz] {
  padding: 30px 0px 30px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.action .mud-button[b-vr8qhgyogz] {
  border-radius: 25px !important;
  text-transform: none !important;
  min-height: 50px;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.action .mud-button > span[b-vr8qhgyogz] {
  font-weight: bolder;
  font-size: 15px;
  font-family: "PT Sans";
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.action .mud-button:nth-child(1)[b-vr8qhgyogz] {
  color: White;
  background-color: #a178e8;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.discount[b-vr8qhgyogz] {
  font-size: 15px;
  font-family: "PT Sans";
}
div.home > div.prices-bloc > div > div.offers > div.frame > hr[b-vr8qhgyogz] {
  margin: 20px 0px 20px 0px;
  width: 70%;
  height: 2px;
  background-color: #7f7d7d;
  margin-left: auto;
  margin-right: auto;
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.credits[b-vr8qhgyogz] {
  font-size: 18px;
  font-family: "PT Sans";
}
div.home > div.prices-bloc > div > div.offers > div.frame > div.credits > strong[b-vr8qhgyogz] {
  color: #a983e9;
  font-weight: normal;
}
div.home > div.prices-bloc > div > div.offers > div.frame:nth-child(1)[b-vr8qhgyogz] {
  border-color: #994f83;
}
div.home > div.prices-bloc > div > div.offers > div.frame:nth-child(2)[b-vr8qhgyogz] {
  border-color: #a2bba8;
}
div.home > div.prices-bloc > div > div.offers > div.frame:nth-child(3)[b-vr8qhgyogz] {
  border-color: #a178e8;
}
@media (max-width: 799px) {
  div.home > div.presentation-bloc > div > div.presentation[b-vr8qhgyogz] {
    flex-direction: column;
  }
  div.home > div.prices-bloc > div > div.offers[b-vr8qhgyogz] {
    flex-direction: column;
    align-items: center;
  }
}
/* /Pages/Login.razor.rz.scp.css */
div.login[b-w47fas4b3r] {
  background-color: transparent;
}
div.login button.validate[b-w47fas4b3r] {
  background-color: #A178E8;
  height: 50px;
}
div.login button.validate > span[b-w47fas4b3r] {
  font-family: Inter;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
}
div.login > div.container[b-w47fas4b3r] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
div.login > div.container > div.title[b-w47fas4b3r] {
  text-align: end;
  width: 1186px;
  color: #872E6C;
  font-family: Inter;
  font-weight: 400;
  font-size: 48px;
  background-color: transparent;
}
div.login > div.container > div.content[b-w47fas4b3r] {
  width: 1186px;
  height: 450px;
  display: flex;
  flex-direction: row;
  padding-top: 0px;
}
div.login > div.container > div.content > div.left[b-w47fas4b3r] {
  width: 593px;
  height: 100%;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
div.login > div.container > div.content > div.left > div[b-w47fas4b3r] {
  width: 400px;
  position: relative;
}
div.login > div.container > div.content > div.left > div > div:nth-child(1)[b-w47fas4b3r] {
  font-family: Inter;
  font-weight: 700;
  font-size: 30px;
  color: #a46090;
  padding-bottom: 50px;
}
div.login > div.container > div.content > div.left > div > div:nth-child(2)[b-w47fas4b3r] {
  position: absolute;
  top: 50px;
}
div.login > div.container > div.content > div.left > div > div:nth-child(3) > form > div.mud-input-control[b-w47fas4b3r] {
  margin-bottom: 25px;
}
div.login > div.container > div.content > div.left > div > div:nth-child(3) > form > div.mud-input-control > div.mud-input-control-input-container[b-w47fas4b3r] {
  background-color: white;
  border-radius: 4px 4px 0px 0px;
}
div.login > div.container > div.content > div.left > div > div:nth-child(3) > form > div.mud-input-control > div.mud-input-control-input-container > div.mud-input > input[b-w47fas4b3r] {
  padding: 10px;
  font-family: Roboto;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #872E6C;
}
div.login > div.container > div.content > div.left > div > div:nth-child(3) > form > div.mud-input-control > div.mud-input-control-input-container > label[b-w47fas4b3r] {
  margin-left: 10px;
}
div.login > div.container > div.content > div.right[b-w47fas4b3r] {
  width: 593px;
  height: 100%;
  background-color: #A2BBA8;
  background-image: url("images/logo.png");
  background-size: 577px 267px;
  background-position: 0px 120px;
  background-repeat: no-repeat;
}
@media (max-width: 1200px) {
  div.login > div.container > div.content > div.left[b-w47fas4b3r] {
    width: 320px;
  }
  div.login > div.container > div.content > div.right[b-w47fas4b3r] {
    display: none;
  }
}
@media (min-width: 600px) {
  div.login > div.container > div.content[b-w47fas4b3r] {
    margin-top: 0px;
  }
}
div.login > div.container > div.footer[b-w47fas4b3r] {
  text-align: end;
  width: 1186px;
  font-family: Inter;
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
}
@media (max-width: 1200px) {
  div.login > div.container > div.title[b-w47fas4b3r] {
    width: 320px;
    font-size: 30px;
  }
  div.login > div.container > div.content[b-w47fas4b3r] {
    width: 320px;
  }
  div.login > div.container > div.content > div.left > div[b-w47fas4b3r] {
    width: 320px;
    position: relative;
  }
  div.login > div.container > div.content > div.left > div > div:nth-child(1)[b-w47fas4b3r] {
    font-size: 25px;
  }
  div.login > div.container > div.footer[b-w47fas4b3r] {
    width: 320px;
  }
}
/* /Pages/Results.razor.rz.scp.css */
div.mud-layout:has(> aside.mud-drawer + div.mud-main-content > div.content > div.results)[b-wwak0s8s18] {
  background-image: none;
}

div.results[b-wwak0s8s18] {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 39px;
  width: 700px;
}
div.results div.mud-card-header[b-wwak0s8s18] {
  color: #872E6C;
}
div.results div.mud-expand-panel > div.mud-expand-panel-header > div.mud-expand-panel-text[b-wwak0s8s18] {
  color: #872E6C;
}
div.results div.mud-expand-panel.mud-disabled > div.mud-expand-panel-header > div.mud-expand-panel-text[b-wwak0s8s18] {
  color: var(--mud-palette-text-disabled);
}
div.results div.mud-expand-panel.mud-panel-expanded[b-wwak0s8s18] {
  margin: 0px !important;
}
div.results div.mud-card-header[b-wwak0s8s18] {
  font-family: Montserrat;
}
div.results div.mud-grid[b-wwak0s8s18] {
  width: 700px;
  margin-left: 0px;
}
div.results div.mud-grid > div.mud-grid-item[b-wwak0s8s18] {
  padding-top: 0px !important;
  padding-left: 0px !important;
  border-radius: 16px;
  background-color: #F7F2FA;
}
div.results div.mud-grid > div.mud-grid-item.header[b-wwak0s8s18] {
  border-start-start-radius: 16px;
  border-start-end-radius: 16px;
  /*border-radius: 16px 16px 0px 0px;*/
}
div.results div.mud-grid > div.mud-grid-item.middle[b-wwak0s8s18] {
  border-radius: unset;
}
div.results div.mud-grid > div.mud-grid-item.middle > div.mud-paper[b-wwak0s8s18] {
  border-radius: unset;
}
div.results div.mud-grid > div.mud-grid-item.footer[b-wwak0s8s18] {
  border-radius: 0px 0px 0px 0px;
}
div.results div.mud-grid > div.mud-grid-item.footer > div.mud-paper > div.mud-card-content[b-wwak0s8s18] {
  border-radius: 0px 0px 0px 0px;
}
div.results div.mud-grid > div.mud-grid-item.separator[b-wwak0s8s18] {
  background-color: #FFFFFF !important;
  height: 15px;
}
div.results div.mud-grid > div.mud-grid-item > div.mud-paper[b-wwak0s8s18] {
  border-radius: 16px;
  background-color: #F7F2FA;
}
div.results div.mud-grid > div.mud-grid-item > div.mud-paper > div.mud-card-content[b-wwak0s8s18] {
  background-color: #F7F2FA;
}
div.results div.mud-grid > div.mud-grid-item > div.mud-paper > div.mud-card-content > div.mud-tooltip-root[b-wwak0s8s18] {
  width: 100%;
}
div.results div.mud-grid > div.mud-grid-item > div.mud-paper > div.mud-card-content > div.mud-tooltip-root > div.mud-expand-panel[b-wwak0s8s18] {
  background-color: transparent;
}
div.results div.mud-grid > div.mud-grid-item > div.mud-paper > div.mud-card-content > div.mud-expand-panel[b-wwak0s8s18] {
  background-color: transparent;
}
div.results div.mud-grid > div.mud-grid-item:nth-last-child(2)[b-wwak0s8s18] {
  border-end-start-radius: 16px !important;
  border-end-end-radius: 16px !important;
}
div.results div.mud-grid > div.mud-grid-item:nth-last-child(2) > div.mud-paper[b-wwak0s8s18] {
  border-end-start-radius: 16px !important;
  border-end-end-radius: 16px !important;
}
div.results div.mud-grid > div.mud-grid-item:nth-last-child(2) > div.mud-paper > div.mud-card-content[b-wwak0s8s18] {
  border-end-start-radius: 16px !important;
  border-end-end-radius: 16px !important;
}
@media (max-width: 800px) {
  div.results > div.mud-grid[b-wwak0s8s18] {
    width: 480px;
  }
}
div.results div.mud-card-header[b-wwak0s8s18] {
  font-weight: bolder;
  font-size: 18px;
}
div.results div.mud-expand-panel-text[b-wwak0s8s18] {
  font-family: Inter;
  font-weight: 600;
  font-size: 16px;
}

@media (max-width: 800px) {
  div.results[b-wwak0s8s18] {
    width: 480px;
  }
}
@media (max-width: 480px) {
  div.results[b-wwak0s8s18] {
    margin-left: 150px;
  }
}
/* /Pages/Users.razor.rz.scp.css */
div.mud-layout:has(> aside.mud-drawer + div.mud-main-content > div.content > div.users)[b-j6eq7c6wy6] {
  background-image: none;
}

div.users[b-j6eq7c6wy6] {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
  min-width: 300px;
}
div.users > div.mud-table[b-j6eq7c6wy6] {
  min-width: 700px;
  justify-self: center;
}
div.users td.action[b-j6eq7c6wy6] {
  padding: 0px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 34px;
}
div.users button[b-j6eq7c6wy6] {
  width: 20px;
  height: 20px;
  padding: 0px;
  min-width: 20px;
}
div.users button > span.mud-button-label > img.update[b-j6eq7c6wy6] {
  filter: invert(55%) sepia(86%) saturate(1897%) hue-rotate(221deg) brightness(94%) contrast(92%);
}
div.users div.mud-grid[b-j6eq7c6wy6] {
  max-width: 700px;
  margin-left: 0px;
  height: 100%;
  font-size: 1rem !important;
  margin-top: 0px;
}
div.users div.mud-grid > div.mud-grid-item[b-j6eq7c6wy6] {
  padding: 25px !important;
  border-radius: 16px;
  background-color: #F7F2FA;
}
div.users div.mud-grid > div.mud-grid-item > div.header[b-j6eq7c6wy6] {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 35px;
}
div.users div.mud-grid > div.mud-grid-item > div.header > p[b-j6eq7c6wy6] {
  width: 100%;
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #A46090;
}
div.users div.mud-grid > div.mud-grid-item > div.header > button[b-j6eq7c6wy6] {
  justify-content: end;
  width: 24px;
  height: 24px;
  padding: 0px;
  min-width: 24px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table[b-j6eq7c6wy6] {
  border-radius: 8px 8px 8px 8px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container[b-j6eq7c6wy6] {
  border-radius: 8px 8px 0px 0px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head[b-j6eq7c6wy6] {
  background-color: #a2bba8 !important;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr[b-j6eq7c6wy6] {
  height: 10px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th[b-j6eq7c6wy6] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 10px;
  line-height: 20px;
  color: white;
  padding-right: 5px;
  padding-left: 5px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:nth-child(1)[b-j6eq7c6wy6] {
  width: 160px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:nth-child(2)[b-j6eq7c6wy6] {
  width: 260px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:nth-child(3)[b-j6eq7c6wy6] {
  width: 150px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > thead.mud-table-head > tr > th:nth-child(4) > span[b-j6eq7c6wy6] {
  justify-content: center;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr[b-j6eq7c6wy6] {
  background-color: #d9d9d9;
  height: 39px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr > td[b-j6eq7c6wy6] {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: #222222;
  padding-bottom: 11px;
  padding-right: 5px;
  padding-left: 5px;
  white-space: nowrap;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr > td:nth-child(1)[b-j6eq7c6wy6] {
  width: 150px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr > td:nth-child(2)[b-j6eq7c6wy6] {
  width: 250px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr > td:nth-child(3)[b-j6eq7c6wy6] {
  width: 150px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr > td:nth-child(4)[b-j6eq7c6wy6] {
  margin-left: 10px;
  margin-right: 5px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr[b-j6eq7c6wy6] {
  position: relative;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr[b-j6eq7c6wy6]::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background-color: #F7F2FA;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr:last-child[b-j6eq7c6wy6] {
  height: 34px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr:last-child > td[b-j6eq7c6wy6] {
  padding-bottom: 6px;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-container > div.mud-drop-container > table.mud-table-root > tbody.mud-table-body > tr:last-child[b-j6eq7c6wy6]::after {
  content: "";
  height: 0px;
  background-color: transparent;
}
div.users div.mud-grid > div.mud-grid-item > div.mud-table > div.mud-table-pagination[b-j6eq7c6wy6] {
  display: block;
  background-color: #a2bba8 !important;
  height: 14px;
  border-radius: 0px 0px 8px 8px;
}
@media (max-width: 700px) {
  div.users > div.mud-table[b-j6eq7c6wy6] {
    min-width: 600px;
    justify-self: center;
  }
}
@media (max-width: 600px) {
  div.users > div.mud-table[b-j6eq7c6wy6] {
    min-width: 300px;
    justify-self: center;
  }
  div.users div.mud-toolbar[b-j6eq7c6wy6] {
    display: flex;
    flex-direction: column;
  }
}
