
@import 'https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap';
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue:wght@400&display=swap");
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  animation-delay: calc(1s * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  animation-delay: calc(1s * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  animation-delay: calc(1s * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  animation-delay: calc(1s * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  animation-duration: calc(1s / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  animation-duration: calc(1s * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  animation-duration: calc(1s * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  animation-duration: calc(1s * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from,
  20%,
  53%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  14% {
    transform: scale(1.3);
  }

  28% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.3);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

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

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

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

  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

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

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

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

  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

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

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/*! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com
 */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}
[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}
input::-moz-placeholder, textarea::-moz-placeholder{
  color: #6b7280;
  opacity: 1;
}
input::placeholder,textarea::placeholder{
  color: #6b7280;
  opacity: 1;
}
::-webkit-datetime-edit-fields-wrapper{
  padding: 0;
}
::-webkit-date-and-time-value{
  min-height: 1.5em;
  text-align: inherit;
}
::-webkit-datetime-edit{
  display: inline-flex;
}
::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{
  padding-top: 0;
  padding-bottom: 0;
}
select{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}
[multiple],[size]:where(select:not([size="1"])){
  background-image: none;
  background-image: initial;
  background-position: 0 0;
  background-position: initial;
  background-repeat: repeat;
  background-repeat: initial;
  background-size: auto auto;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: inherit;
          print-color-adjust: inherit;
}
[type='checkbox'],[type='radio']{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}
[type='checkbox']{
  border-radius: 0px;
}
[type='radio']{
  border-radius: 100%;
}
[type='checkbox']:focus,[type='radio']:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, var(--tw-shadow);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}
[type='checkbox']:checked,[type='radio']:checked{
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
[type='checkbox']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='checkbox']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='radio']:checked{
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}
@media (forced-colors: active) {
  [type='radio']:checked{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='checkbox']:indeterminate{
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}
@media (forced-colors: active) {
  [type='checkbox']:indeterminate{
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}
[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus{
  border-color: transparent;
  background-color: currentColor;
}
[type='file']{
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: inherit;
  line-height: inherit;
}
[type='file']:focus{
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}
:root{
  ---inherit: inherit;
  ---current: currentColor;
  ---transparent: transparent;
  ---black: #000;
  ---white: #fff;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --gray-950: #030712;
  --zinc-50: #fafafa;
  --zinc-100: #f4f4f5;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --zinc-900: #18181b;
  --zinc-950: #09090b;
  --neutral-50: #f9fafb;
  --neutral-100: #f3f4f6;
  --neutral-200: #e5e7eb;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --neutral-600: #4b5563;
  --neutral-700: #374151;
  --neutral-800: #1f2937;
  --neutral-900: #111827;
  --neutral-950: #030712;
  --stone-50: #fafaf9;
  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;
  --stone-700: #44403c;
  --stone-800: #292524;
  --stone-900: #1c1917;
  --stone-950: #0c0a09;
  --red-50: #fef2f2;
  --red-100: #fee2e2;
  --red-200: #fecaca;
  --red-300: #fca5a5;
  --red-400: #f87171;
  --red-500: #ef4444;
  --red-600: #dc2626;
  --red-700: #b91c1c;
  --red-800: #991b1b;
  --red-900: #7f1d1d;
  --red-950: #450a0a;
  --orange-50: #fff7ed;
  --orange-100: #ffedd5;
  --orange-200: #fed7aa;
  --orange-300: #fdba74;
  --orange-400: #fb923c;
  --orange-500: #f97316;
  --orange-600: #ea580c;
  --orange-700: #c2410c;
  --orange-800: #9a3412;
  --orange-900: #7c2d12;
  --orange-950: #431407;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;
  --amber-950: #451a03;
  --yellow-50: #fefce8;
  --yellow-100: #fef9c3;
  --yellow-200: #fef08a;
  --yellow-300: #fde047;
  --yellow-400: #facc15;
  --yellow-500: #eab308;
  --yellow-600: #ca8a04;
  --yellow-700: #a16207;
  --yellow-800: #854d0e;
  --yellow-900: #713f12;
  --yellow-950: #422006;
  --lime-50: #f7fee7;
  --lime-100: #ecfccb;
  --lime-200: #d9f99d;
  --lime-300: #bef264;
  --lime-400: #a3e635;
  --lime-500: #84cc16;
  --lime-600: #65a30d;
  --lime-700: #4d7c0f;
  --lime-800: #3f6212;
  --lime-900: #365314;
  --lime-950: #1a2e05;
  --green-50: #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-300: #86efac;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --green-950: #052e16;
  --emerald-50: #ecfdf5;
  --emerald-100: #d1fae5;
  --emerald-200: #a7f3d0;
  --emerald-300: #6ee7b7;
  --emerald-400: #34d399;
  --emerald-500: #10b981;
  --emerald-600: #059669;
  --emerald-700: #047857;
  --emerald-800: #065f46;
  --emerald-900: #064e3b;
  --emerald-950: #022c22;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --teal-800: #115e59;
  --teal-900: #134e4a;
  --teal-950: #042f2e;
  --cyan-50: #ecfeff;
  --cyan-100: #cffafe;
  --cyan-200: #a5f3fc;
  --cyan-300: #67e8f9;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-800: #155e75;
  --cyan-900: #164e63;
  --cyan-950: #083344;
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-400: #38bdf8;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-900: #0c4a6e;
  --sky-950: #082f49;
  --blue-50: #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-300: #93c5fd;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-800: #1e40af;
  --blue-900: #1e3a8a;
  --blue-950: #172554;
  --indigo-50: #eef2ff;
  --indigo-100: #e0e7ff;
  --indigo-200: #c7d2fe;
  --indigo-300: #a5b4fc;
  --indigo-400: #818cf8;
  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;
  --indigo-700: #4338ca;
  --indigo-800: #3730a3;
  --indigo-900: #312e81;
  --indigo-950: #1e1b4b;
  --violet-50: #f5f3ff;
  --violet-100: #ede9fe;
  --violet-200: #ddd6fe;
  --violet-300: #c4b5fd;
  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;
  --violet-600: #7c3aed;
  --violet-700: #6d28d9;
  --violet-800: #5b21b6;
  --violet-900: #4c1d95;
  --violet-950: #2e1065;
  --purple-50: #faf5ff;
  --purple-100: #f3e8ff;
  --purple-200: #e9d5ff;
  --purple-300: #d8b4fe;
  --purple-400: #c084fc;
  --purple-500: #a855f7;
  --purple-600: #9333ea;
  --purple-700: #7e22ce;
  --purple-800: #6b21a8;
  --purple-900: #581c87;
  --purple-950: #3b0764;
  --fuchsia-50: #fdf4ff;
  --fuchsia-100: #fae8ff;
  --fuchsia-200: #f5d0fe;
  --fuchsia-300: #f0abfc;
  --fuchsia-400: #e879f9;
  --fuchsia-500: #d946ef;
  --fuchsia-600: #c026d3;
  --fuchsia-700: #a21caf;
  --fuchsia-800: #86198f;
  --fuchsia-900: #701a75;
  --fuchsia-950: #4a044e;
  --pink-50: #fdf2f8;
  --pink-100: #fce7f3;
  --pink-200: #fbcfe8;
  --pink-300: #f9a8d4;
  --pink-400: #f472b6;
  --pink-500: #ec4899;
  --pink-600: #db2777;
  --pink-700: #be185d;
  --pink-800: #9d174d;
  --pink-900: #831843;
  --pink-950: #500724;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-200: #fecdd3;
  --rose-300: #fda4af;
  --rose-400: #fb7185;
  --rose-500: #f43f5e;
  --rose-600: #e11d48;
  --rose-700: #be123c;
  --rose-800: #9f1239;
  --rose-900: #881337;
  --rose-950: #4c0519;
  --primary-50: #E6F2F8;
  --primary-100: #C2DDEE;
  --primary-200: #99C2DB;
  --primary-300: #70A7C8;
  --primary-400: #478CB5;
  --primary-500: #206FA1;
  --primary-600: #185A87;
  --primary-700: #14496F;
  --primary-800: #103A58;
  --primary-900: #0C4A6E;
  --danger-50: #fef2f2;
  --danger-100: #fee2e2;
  --danger-200: #fecaca;
  --danger-300: #fca5a5;
  --danger-400: #f87171;
  --danger-500: #ef4444;
  --danger-600: #dc2626;
  --danger-700: #b91c1c;
  --danger-800: #991b1b;
  --danger-900: #7f1d1d;
  --danger-950: #450a0a;
  --app-stats-emerald-50: #ECFDF5;
  --app-stats-emerald-600: #24A37C;
  --app-stats-gray-25: #FBFCFD;
  --app-stats-gray-50: #FAFAFA;
  --app-stats-gray-100: #F4F4F5;
  --app-stats-gray-200: #E8E8E8;
  --app-stats-gray-250: #E2E8F0;
  --app-stats-gray-600: #7F7F80;
  --app-stats-gray-700: #3F3F46;
  --app-stats-gray-800: #27272A;
  --app-stats-gray-900: #1F2937;
  --app-stats-red-600: #EF4444;
  --twin-sun-gray-50: #f9fafb;
  --twin-sun-gray-100: #f3f4f6;
  --twin-sun-gray-200: #e5e7eb;
  --twin-sun-gray-300: #d1d5db;
  --twin-sun-gray-400: #9ca3af;
  --twin-sun-gray-500: #6b7280;
  --twin-sun-gray-600: #4b5563;
  --twin-sun-gray-700: #2e3a4d;
  --twin-sun-gray-800: #202c3d;
  --twin-sun-gray-900: #141d30;
  --twin-sun-navy-50: #fafdff;
  --twin-sun-navy-100: #e7eaec;
  --twin-sun-navy-200: #b8c0c7;
  --twin-sun-navy-300: #71828f;
  --twin-sun-navy-400: #425869;
  --twin-sun-navy-500: #132e44;
  --twin-sun-navy-600: #11293d;
  --twin-sun-navy-700: #0d2030;
  --twin-sun-navy-800: #0a1722;
  --twin-sun-navy-900: #020507;
  --twin-sun-orange-50: #fff7ed;
  --twin-sun-orange-100: #ffedd5;
  --twin-sun-orange-200: #fed7aa;
  --twin-sun-orange-300: #fdba74;
  --twin-sun-orange-400: #fb923c;
  --twin-sun-orange-500: #ff660d;
  --twin-sun-orange-600: #ea580c;
  --twin-sun-orange-700: #c2410c;
  --twin-sun-orange-800: #9a3412;
  --twin-sun-orange-900: #7c2d12;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .container{
    max-width: 1536px;
  }
}
.prose{
  color: var(--tw-prose-body);
  max-width: 65ch;
}
.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}
.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-links);
  text-decoration: underline;
  font-weight: 500;
}
.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-bold);
  font-weight: 600;
}
.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-alpha;
}
.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-alpha;
}
.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: upper-roman;
}
.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: lower-roman;
}
.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: decimal;
}
.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-inline-start: 1.625em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  font-weight: 400;
  color: var(--tw-prose-counters);
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker{
  color: var(--tw-prose-bullets);
}
.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.25em;
}
.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}
.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-inline-start-width: 0.25rem;
  border-inline-start-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-inline-start: 1em;
}
.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: open-quote;
}
.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: close-quote;
}
.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}
.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 900;
  color: inherit;
}
.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}
.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 800;
  color: inherit;
}
.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}
.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}
.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 700;
  color: inherit;
}
.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  display: block;
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  font-weight: 500;
  font-family: inherit;
  color: var(--tw-prose-kbd);
  box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%);
  font-size: 0.875em;
  border-radius: 0.3125rem;
  padding-top: 0.1875em;
  padding-inline-end: 0.375em;
  padding-bottom: 0.1875em;
  padding-inline-start: 0.375em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: "`";
}
.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: "`";
}
.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.875em;
}
.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
  font-size: 0.9em;
}
.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: inherit;
}
.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-inline-end: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-inline-start: 1.1428571em;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before{
  content: none;
}
.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after{
  content: none;
}
.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  width: 100%;
  table-layout: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}
.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}
.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}
.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-bottom-width: 0;
}
.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: baseline;
}
.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}
.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  vertical-align: top;
}
.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  text-align: start;
}
.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}
.prose{
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-kbd: #111827;
  --tw-prose-kbd-shadows: 17 24 39;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-kbd: #fff;
  --tw-prose-invert-kbd-shadows: 255 255 255;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}
.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
  margin-bottom: 0;
}
.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0.375em;
}
.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
}
.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 1.25em;
}
.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0.5em;
  padding-inline-start: 1.625em;
}
.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-top: 0.5714286em;
  padding-inline-end: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-inline-start: 0.5714286em;
}
.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-start: 0;
}
.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  padding-inline-end: 0;
}
.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 2em;
  margin-bottom: 2em;
}
.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-top: 0;
}
.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)){
  margin-bottom: 0;
}
.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.bottom-0{
  bottom: 0px;
}
.left-0{
  left: 0px;
}
.right-0{
  right: 0px;
}
.top-10{
  top: 40px;
}
.m-8{
  margin: 32px;
}
.mx-3{
  margin-left: 12px;
  margin-right: 12px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.-ml-1{
  margin-left: -4px;
}
.mb-1{
  margin-bottom: 4px;
}
.mb-2{
  margin-bottom: 8px;
}
.mb-3{
  margin-bottom: 12px;
}
.mb-4{
  margin-bottom: 16px;
}
.mb-6{
  margin-bottom: 24px;
}
.ml-2{
  margin-left: 8px;
}
.ml-4{
  margin-left: 16px;
}
.mr-1{
  margin-right: 4px;
}
.mr-2{
  margin-right: 8px;
}
.mt-1{
  margin-top: 4px;
}
.mt-2{
  margin-top: 8px;
}
.mt-4{
  margin-top: 16px;
}
.mt-6{
  margin-top: 24px;
}
.block{
  display: block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.table-row{
  display: table-row;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.list-item{
  display: list-item;
}
.\!hidden{
  display: none !important;
}
.hidden{
  display: none;
}
.h-10{
  height: 40px;
}
.h-12{
  height: 48px;
}
.h-16{
  height: 64px;
}
.h-2{
  height: 8px;
}
.h-3{
  height: 12px;
}
.h-32{
  height: 8rem;
}
.h-4{
  height: 16px;
}
.h-5{
  height: 20px;
}
.h-6{
  height: 24px;
}
.h-8{
  height: 32px;
}
.h-full{
  height: 100%;
}
.w-1\/4{
  width: 25%;
}
.w-10{
  width: 40px;
}
.w-12{
  width: 48px;
}
.w-16{
  width: 64px;
}
.w-3{
  width: 12px;
}
.w-4{
  width: 16px;
}
.w-5{
  width: 20px;
}
.w-6{
  width: 24px;
}
.w-8{
  width: 32px;
}
.w-80{
  width: 20rem;
}
.w-full{
  width: 100%;
}
.min-w-0{
  min-width: 0px;
}
.min-w-32{
  min-width: 8rem;
}
.min-w-36{
  min-width: 9rem;
}
.min-w-48{
  min-width: 12rem;
}
.min-w-full{
  min-width: 100%;
}
.max-w-28{
  max-width: 7rem;
}
.max-w-7xl{
  max-width: 80rem;
}
.max-w-none{
  max-width: none;
}
.max-w-xs{
  max-width: 20rem;
}
.flex-1{
  flex: 1 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.grow{
  flex-grow: 1;
}
.border-collapse{
  border-collapse: collapse;
}
.cursor-pointer{
  cursor: pointer;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-2{
  gap: 8px;
}
.gap-4{
  gap: 16px;
}
.gap-6{
  gap: 24px;
}
.gap-8{
  gap: 32px;
}
.gap-x-4{
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.gap-y-6{
  row-gap: 24px;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(4px * 0);
  margin-right: calc(4px * var(--tw-space-x-reverse));
  margin-left: calc(4px * calc(1 - 0));
  margin-left: calc(4px * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * 0);
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - 0));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(12px * 0);
  margin-right: calc(12px * var(--tw-space-x-reverse));
  margin-left: calc(12px * calc(1 - 0));
  margin-left: calc(12px * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(16px * 0);
  margin-right: calc(16px * var(--tw-space-x-reverse));
  margin-left: calc(16px * calc(1 - 0));
  margin-left: calc(16px * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(4px * calc(1 - 0));
  margin-top: calc(4px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4px * 0);
  margin-bottom: calc(4px * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - 0));
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * 0);
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - 0));
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * 0);
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(32px * calc(1 - 0));
  margin-top: calc(32px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(32px * 0);
  margin-bottom: calc(32px * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.divide-gray-200 > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
  }
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-b-lg{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.border{
  border-width: 1px;
}
.border-2{
  border-width: 2px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-l-2{
  border-left-width: 2px;
}
.border-l-4{
  border-left-width: 4px;
}
.border-t{
  border-top-width: 1px;
}
.border-none{
  border-style: none;
}
.border-blue-200{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-blue-200{
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
  }
}
.border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-blue-500{
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-gray-200{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-gray-300{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
.border-green-200{
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-green-200{
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }
}
.border-orange-200{
  --tw-border-opacity: 1;
  border-color: rgb(254 215 170 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-orange-200{
    border-color: rgb(254 215 170 / var(--tw-border-opacity, 1));
  }
}
.border-purple-200{
  --tw-border-opacity: 1;
  border-color: rgb(233 213 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-purple-200{
    border-color: rgb(233 213 255 / var(--tw-border-opacity, 1));
  }
}
.border-red-300{
  --tw-border-opacity: 1;
  border-color: rgb(252 165 165 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.border-red-300{
    border-color: rgb(252 165 165 / var(--tw-border-opacity, 1));
  }
}
.border-transparent{
  border-color: transparent;
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-black{
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-100{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-blue-100{
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-50{
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-blue-50{
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-blue-600{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-blue-600{
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-gray-100{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-gray-200{
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }
}
.bg-gray-50{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-gray-50{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.bg-green-100{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-green-100{
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }
}
.bg-green-50{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-green-50{
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }
}
.bg-indigo-100{
  --tw-bg-opacity: 1;
  background-color: rgb(224 231 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-indigo-100{
    background-color: rgb(224 231 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-indigo-600{
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-indigo-600{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
  }
}
.bg-orange-100{
  --tw-bg-opacity: 1;
  background-color: rgb(255 237 213 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-orange-100{
    background-color: rgb(255 237 213 / var(--tw-bg-opacity, 1));
  }
}
.bg-orange-50{
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 237 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-orange-50{
    background-color: rgb(255 247 237 / var(--tw-bg-opacity, 1));
  }
}
.bg-purple-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 232 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-purple-100{
    background-color: rgb(243 232 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-purple-50{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-purple-50{
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-red-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-red-100{
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
  }
}
.bg-red-600{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-red-600{
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
  }
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-white{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.bg-yellow-100{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-yellow-100{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }
}
.bg-yellow-400{
  --tw-bg-opacity: 1;
  background-color: rgb(250 204 21 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-yellow-400{
    background-color: rgb(250 204 21 / var(--tw-bg-opacity, 1));
  }
}
.bg-yellow-600{
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-yellow-600{
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
  }
}
.bg-zinc-100{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-zinc-100{
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }
}
.bg-zinc-600{
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.bg-zinc-600{
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
  }
}
.bg-opacity-50{
  --tw-bg-opacity: 0.5;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-2{
  padding: 8px;
}
.p-3{
  padding: 12px;
}
.p-4{
  padding: 16px;
}
.p-6{
  padding: 24px;
}
.p-8{
  padding: 32px;
}
.px-2{
  padding-left: 8px;
  padding-right: 8px;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 12px;
  padding-right: 12px;
}
.px-4{
  padding-left: 16px;
  padding-right: 16px;
}
.px-6{
  padding-left: 24px;
  padding-right: 24px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12{
  padding-top: 48px;
  padding-bottom: 48px;
}
.py-2{
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-3{
  padding-top: 12px;
  padding-bottom: 12px;
}
.py-4{
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-6{
  padding-top: 24px;
  padding-bottom: 24px;
}
.py-8{
  padding-top: 32px;
  padding-bottom: 32px;
}
.pl-1{
  padding-left: 4px;
}
.pl-4{
  padding-left: 16px;
}
.pt-2{
  padding-top: 8px;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl{
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.capitalize{
  text-transform: capitalize;
}
.italic{
  font-style: italic;
}
.leading-relaxed{
  line-height: 1.625;
}
.tracking-wider{
  letter-spacing: 0.05em;
}
.text-blue-600{
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-blue-600{
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }
}
.text-blue-800{
  --tw-text-opacity: 1;
  color: rgb(30 64 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-blue-800{
    color: rgb(30 64 175 / var(--tw-text-opacity, 1));
  }
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-300{
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-400{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-500{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-600{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-700{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.text-gray-800{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-800{
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.text-gray-900{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-gray-900{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.text-green-500{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-green-500{
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }
}
.text-green-600{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-green-600{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.text-green-800{
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-green-800{
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }
}
.text-indigo-800{
  --tw-text-opacity: 1;
  color: rgb(55 48 163 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-indigo-800{
    color: rgb(55 48 163 / var(--tw-text-opacity, 1));
  }
}
.text-inherit{
  color: inherit;
}
.text-orange-800{
  --tw-text-opacity: 1;
  color: rgb(154 52 18 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-orange-800{
    color: rgb(154 52 18 / var(--tw-text-opacity, 1));
  }
}
.text-purple-800{
  --tw-text-opacity: 1;
  color: rgb(107 33 168 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-purple-800{
    color: rgb(107 33 168 / var(--tw-text-opacity, 1));
  }
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-red-500{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-red-600{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.text-red-700{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-red-700{
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }
}
.text-red-800{
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-red-800{
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-white{
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.text-yellow-400{
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-yellow-400{
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }
}
.text-yellow-800{
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-yellow-800{
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.text-zinc-600{
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-zinc-600{
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }
}
.text-zinc-800{
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.text-zinc-800{
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
.underline{
  text-decoration-line: underline;
}
.no-underline{
  text-decoration-line: none;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-shadow{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-500{
  transition-duration: 500ms;
}
/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
.fa {
  font-family: "Font Awesome 6 Free";
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: 900;
  font-weight: var(--fa-style, 900);
}
.fas,
.far,
.fab,
.fa-solid,
.fa-regular,
.fa-brands,
.fa {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-feature-settings: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fas::before,
.far::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-brands::before,
.fa::before {
  content: var(--fa);
}
.fa-classic,
.fas,
.fa-solid,
.far,
.fa-regular {
  font-family: "Font Awesome 6 Free";
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands";
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-2xs {
  font-size: 0.625em;
  line-height: 0.1em;
  vertical-align: 0.225em;
}
.fa-xs {
  font-size: 0.75em;
  line-height: 0.0833333337em;
  vertical-align: 0.125em;
}
.fa-sm {
  font-size: 0.875em;
  line-height: 0.0714285718em;
  vertical-align: 0.0535714295em;
}
.fa-lg {
  font-size: 1.25em;
  line-height: 0.05em;
  vertical-align: -0.075em;
}
.fa-xl {
  font-size: 1.5em;
  line-height: 0.0416666682em;
  vertical-align: -0.125em;
}
.fa-2xl {
  font-size: 2em;
  line-height: 0.03125em;
  vertical-align: -0.1875em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  margin-left: var(--fa-li-margin, 2.5em);
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: calc(-1 * 2em);
  left: calc(-1 * var(--fa-li-width, 2em));
  position: absolute;
  text-align: center;
  width: 2em;
  width: var(--fa-li-width, 2em);
  line-height: inherit;
}
.fa-border {
  border-color: #eee;
  border-color: var(--fa-border-color, #eee);
  border-radius: 0.1em;
  border-radius: var(--fa-border-radius, 0.1em);
  border-style: solid;
  border-style: var(--fa-border-style, solid);
  border-width: 0.08em;
  border-width: var(--fa-border-width, 0.08em);
  padding: 0.2em 0.25em 0.15em;
  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em);
}
.fa-pull-left {
  float: left;
  margin-right: 0.3em;
  margin-right: var(--fa-pull-margin, 0.3em);
}
.fa-pull-right {
  float: right;
  margin-left: 0.3em;
  margin-left: var(--fa-pull-margin, 0.3em);
}
.fa-beat {
  animation-name: fa-beat;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: ease-in-out;
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-bounce {
  animation-name: fa-bounce;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));
}
.fa-fade {
  animation-name: fa-fade;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-beat-fade {
  animation-name: fa-beat-fade;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: cubic-bezier(0.4, 0, 0.6, 1);
  animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));
}
.fa-flip {
  animation-name: fa-flip;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: ease-in-out;
  animation-timing-function: var(--fa-animation-timing, ease-in-out);
}
.fa-shake {
  animation-name: fa-shake;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: linear;
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin {
  animation-name: fa-spin;
  animation-delay: 0s;
  animation-delay: var(--fa-animation-delay, 0s);
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 2s;
  animation-duration: var(--fa-animation-duration, 2s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: linear;
  animation-timing-function: var(--fa-animation-timing, linear);
}
.fa-spin-reverse {
  --fa-animation-direction: reverse;
}
.fa-pulse,
.fa-spin-pulse {
  animation-name: fa-spin;
  animation-direction: normal;
  animation-direction: var(--fa-animation-direction, normal);
  animation-duration: 1s;
  animation-duration: var(--fa-animation-duration, 1s);
  animation-iteration-count: infinite;
  animation-iteration-count: var(--fa-animation-iteration-count, infinite);
  animation-timing-function: steps(8);
  animation-timing-function: var(--fa-animation-timing, steps(8));
}
@media (prefers-reduced-motion: reduce) {
  .fa-beat,
  .fa-bounce,
  .fa-fade,
  .fa-beat-fade,
  .fa-flip,
  .fa-pulse,
  .fa-shake,
  .fa-spin,
  .fa-spin-pulse {
    animation-delay: -1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
    transition-delay: 0s;
    transition-duration: 0s;
  }
}
@keyframes fa-beat {
  0%, 90% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.25);
    transform: scale(var(--fa-beat-scale, 1.25));
  }
}
@keyframes fa-bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
    transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-0.5em);
    transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
    transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-0.125em);
    transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
@keyframes fa-fade {
  50% {
    opacity: 0.4;
    opacity: var(--fa-fade-opacity, 0.4);
  }
}
@keyframes fa-beat-fade {
  0%, 100% {
    opacity: 0.4;
    opacity: var(--fa-beat-fade-opacity, 0.4);
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.125);
    transform: scale(var(--fa-beat-fade-scale, 1.125));
  }
}
@keyframes fa-flip {
  50% {
    transform: rotate3d(0, 1, 0, -180deg);
    transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));
  }
}
@keyframes fa-shake {
  0% {
    transform: rotate(-15deg);
  }
  4% {
    transform: rotate(15deg);
  }
  8%, 24% {
    transform: rotate(-18deg);
  }
  12%, 28% {
    transform: rotate(18deg);
  }
  16% {
    transform: rotate(-22deg);
  }
  20% {
    transform: rotate(22deg);
  }
  32% {
    transform: rotate(-12deg);
  }
  36% {
    transform: rotate(12deg);
  }
  40%, 100% {
    transform: rotate(0deg);
  }
}
@keyframes fa-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.fa-rotate-90 {
  transform: rotate(90deg);
}
.fa-rotate-180 {
  transform: rotate(180deg);
}
.fa-rotate-270 {
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  transform: scale(1, -1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  transform: scale(-1, -1);
}
.fa-rotate-by {
  transform: rotate(0);
  transform: rotate(var(--fa-rotate-angle, 0));
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: auto;
  z-index: var(--fa-stack-z-index, auto);
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
  color: var(--fa-inverse, #fff);
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
readers do not read off random characters that represent icons */
.fa-0 {
  --fa: "\30 ";
}
.fa-1 {
  --fa: "\31 ";
}
.fa-2 {
  --fa: "\32 ";
}
.fa-3 {
  --fa: "\33 ";
}
.fa-4 {
  --fa: "\34 ";
}
.fa-5 {
  --fa: "\35 ";
}
.fa-6 {
  --fa: "\36 ";
}
.fa-7 {
  --fa: "\37 ";
}
.fa-8 {
  --fa: "\38 ";
}
.fa-9 {
  --fa: "\39 ";
}
.fa-fill-drip {
  --fa: "\f576";
}
.fa-arrows-to-circle {
  --fa: "\e4bd";
}
.fa-circle-chevron-right {
  --fa: "\f138";
}
.fa-chevron-circle-right {
  --fa: "\f138";
}
.fa-at {
  --fa: "\@";
}
.fa-trash-can {
  --fa: "\f2ed";
}
.fa-trash-alt {
  --fa: "\f2ed";
}
.fa-text-height {
  --fa: "\f034";
}
.fa-user-xmark {
  --fa: "\f235";
}
.fa-user-times {
  --fa: "\f235";
}
.fa-stethoscope {
  --fa: "\f0f1";
}
.fa-message {
  --fa: "\f27a";
}
.fa-comment-alt {
  --fa: "\f27a";
}
.fa-info {
  --fa: "\f129";
}
.fa-down-left-and-up-right-to-center {
  --fa: "\f422";
}
.fa-compress-alt {
  --fa: "\f422";
}
.fa-explosion {
  --fa: "\e4e9";
}
.fa-file-lines {
  --fa: "\f15c";
}
.fa-file-alt {
  --fa: "\f15c";
}
.fa-file-text {
  --fa: "\f15c";
}
.fa-wave-square {
  --fa: "\f83e";
}
.fa-ring {
  --fa: "\f70b";
}
.fa-building-un {
  --fa: "\e4d9";
}
.fa-dice-three {
  --fa: "\f527";
}
.fa-calendar-days {
  --fa: "\f073";
}
.fa-calendar-alt {
  --fa: "\f073";
}
.fa-anchor-circle-check {
  --fa: "\e4aa";
}
.fa-building-circle-arrow-right {
  --fa: "\e4d1";
}
.fa-volleyball {
  --fa: "\f45f";
}
.fa-volleyball-ball {
  --fa: "\f45f";
}
.fa-arrows-up-to-line {
  --fa: "\e4c2";
}
.fa-sort-down {
  --fa: "\f0dd";
}
.fa-sort-desc {
  --fa: "\f0dd";
}
.fa-circle-minus {
  --fa: "\f056";
}
.fa-minus-circle {
  --fa: "\f056";
}
.fa-door-open {
  --fa: "\f52b";
}
.fa-right-from-bracket {
  --fa: "\f2f5";
}
.fa-sign-out-alt {
  --fa: "\f2f5";
}
.fa-atom {
  --fa: "\f5d2";
}
.fa-soap {
  --fa: "\e06e";
}
.fa-icons {
  --fa: "\f86d";
}
.fa-heart-music-camera-bolt {
  --fa: "\f86d";
}
.fa-microphone-lines-slash {
  --fa: "\f539";
}
.fa-microphone-alt-slash {
  --fa: "\f539";
}
.fa-bridge-circle-check {
  --fa: "\e4c9";
}
.fa-pump-medical {
  --fa: "\e06a";
}
.fa-fingerprint {
  --fa: "\f577";
}
.fa-hand-point-right {
  --fa: "\f0a4";
}
.fa-magnifying-glass-location {
  --fa: "\f689";
}
.fa-search-location {
  --fa: "\f689";
}
.fa-forward-step {
  --fa: "\f051";
}
.fa-step-forward {
  --fa: "\f051";
}
.fa-face-smile-beam {
  --fa: "\f5b8";
}
.fa-smile-beam {
  --fa: "\f5b8";
}
.fa-flag-checkered {
  --fa: "\f11e";
}
.fa-football {
  --fa: "\f44e";
}
.fa-football-ball {
  --fa: "\f44e";
}
.fa-school-circle-exclamation {
  --fa: "\e56c";
}
.fa-crop {
  --fa: "\f125";
}
.fa-angles-down {
  --fa: "\f103";
}
.fa-angle-double-down {
  --fa: "\f103";
}
.fa-users-rectangle {
  --fa: "\e594";
}
.fa-people-roof {
  --fa: "\e537";
}
.fa-people-line {
  --fa: "\e534";
}
.fa-beer-mug-empty {
  --fa: "\f0fc";
}
.fa-beer {
  --fa: "\f0fc";
}
.fa-diagram-predecessor {
  --fa: "\e477";
}
.fa-arrow-up-long {
  --fa: "\f176";
}
.fa-long-arrow-up {
  --fa: "\f176";
}
.fa-fire-flame-simple {
  --fa: "\f46a";
}
.fa-burn {
  --fa: "\f46a";
}
.fa-person {
  --fa: "\f183";
}
.fa-male {
  --fa: "\f183";
}
.fa-laptop {
  --fa: "\f109";
}
.fa-file-csv {
  --fa: "\f6dd";
}
.fa-menorah {
  --fa: "\f676";
}
.fa-truck-plane {
  --fa: "\e58f";
}
.fa-record-vinyl {
  --fa: "\f8d9";
}
.fa-face-grin-stars {
  --fa: "\f587";
}
.fa-grin-stars {
  --fa: "\f587";
}
.fa-bong {
  --fa: "\f55c";
}
.fa-spaghetti-monster-flying {
  --fa: "\f67b";
}
.fa-pastafarianism {
  --fa: "\f67b";
}
.fa-arrow-down-up-across-line {
  --fa: "\e4af";
}
.fa-spoon {
  --fa: "\f2e5";
}
.fa-utensil-spoon {
  --fa: "\f2e5";
}
.fa-jar-wheat {
  --fa: "\e517";
}
.fa-envelopes-bulk {
  --fa: "\f674";
}
.fa-mail-bulk {
  --fa: "\f674";
}
.fa-file-circle-exclamation {
  --fa: "\e4eb";
}
.fa-circle-h {
  --fa: "\f47e";
}
.fa-hospital-symbol {
  --fa: "\f47e";
}
.fa-pager {
  --fa: "\f815";
}
.fa-address-book {
  --fa: "\f2b9";
}
.fa-contact-book {
  --fa: "\f2b9";
}
.fa-strikethrough {
  --fa: "\f0cc";
}
.fa-k {
  --fa: "K";
}
.fa-landmark-flag {
  --fa: "\e51c";
}
.fa-pencil {
  --fa: "\f303";
}
.fa-pencil-alt {
  --fa: "\f303";
}
.fa-backward {
  --fa: "\f04a";
}
.fa-caret-right {
  --fa: "\f0da";
}
.fa-comments {
  --fa: "\f086";
}
.fa-paste {
  --fa: "\f0ea";
}
.fa-file-clipboard {
  --fa: "\f0ea";
}
.fa-code-pull-request {
  --fa: "\e13c";
}
.fa-clipboard-list {
  --fa: "\f46d";
}
.fa-truck-ramp-box {
  --fa: "\f4de";
}
.fa-truck-loading {
  --fa: "\f4de";
}
.fa-user-check {
  --fa: "\f4fc";
}
.fa-vial-virus {
  --fa: "\e597";
}
.fa-sheet-plastic {
  --fa: "\e571";
}
.fa-blog {
  --fa: "\f781";
}
.fa-user-ninja {
  --fa: "\f504";
}
.fa-person-arrow-up-from-line {
  --fa: "\e539";
}
.fa-scroll-torah {
  --fa: "\f6a0";
}
.fa-torah {
  --fa: "\f6a0";
}
.fa-broom-ball {
  --fa: "\f458";
}
.fa-quidditch {
  --fa: "\f458";
}
.fa-quidditch-broom-ball {
  --fa: "\f458";
}
.fa-toggle-off {
  --fa: "\f204";
}
.fa-box-archive {
  --fa: "\f187";
}
.fa-archive {
  --fa: "\f187";
}
.fa-person-drowning {
  --fa: "\e545";
}
.fa-arrow-down-9-1 {
  --fa: "\f886";
}
.fa-sort-numeric-desc {
  --fa: "\f886";
}
.fa-sort-numeric-down-alt {
  --fa: "\f886";
}
.fa-face-grin-tongue-squint {
  --fa: "\f58a";
}
.fa-grin-tongue-squint {
  --fa: "\f58a";
}
.fa-spray-can {
  --fa: "\f5bd";
}
.fa-truck-monster {
  --fa: "\f63b";
}
.fa-w {
  --fa: "W";
}
.fa-earth-africa {
  --fa: "\f57c";
}
.fa-globe-africa {
  --fa: "\f57c";
}
.fa-rainbow {
  --fa: "\f75b";
}
.fa-circle-notch {
  --fa: "\f1ce";
}
.fa-tablet-screen-button {
  --fa: "\f3fa";
}
.fa-tablet-alt {
  --fa: "\f3fa";
}
.fa-paw {
  --fa: "\f1b0";
}
.fa-cloud {
  --fa: "\f0c2";
}
.fa-trowel-bricks {
  --fa: "\e58a";
}
.fa-face-flushed {
  --fa: "\f579";
}
.fa-flushed {
  --fa: "\f579";
}
.fa-hospital-user {
  --fa: "\f80d";
}
.fa-tent-arrow-left-right {
  --fa: "\e57f";
}
.fa-gavel {
  --fa: "\f0e3";
}
.fa-legal {
  --fa: "\f0e3";
}
.fa-binoculars {
  --fa: "\f1e5";
}
.fa-microphone-slash {
  --fa: "\f131";
}
.fa-box-tissue {
  --fa: "\e05b";
}
.fa-motorcycle {
  --fa: "\f21c";
}
.fa-bell-concierge {
  --fa: "\f562";
}
.fa-concierge-bell {
  --fa: "\f562";
}
.fa-pen-ruler {
  --fa: "\f5ae";
}
.fa-pencil-ruler {
  --fa: "\f5ae";
}
.fa-people-arrows {
  --fa: "\e068";
}
.fa-people-arrows-left-right {
  --fa: "\e068";
}
.fa-mars-and-venus-burst {
  --fa: "\e523";
}
.fa-square-caret-right {
  --fa: "\f152";
}
.fa-caret-square-right {
  --fa: "\f152";
}
.fa-scissors {
  --fa: "\f0c4";
}
.fa-cut {
  --fa: "\f0c4";
}
.fa-sun-plant-wilt {
  --fa: "\e57a";
}
.fa-toilets-portable {
  --fa: "\e584";
}
.fa-hockey-puck {
  --fa: "\f453";
}
.fa-table {
  --fa: "\f0ce";
}
.fa-magnifying-glass-arrow-right {
  --fa: "\e521";
}
.fa-tachograph-digital {
  --fa: "\f566";
}
.fa-digital-tachograph {
  --fa: "\f566";
}
.fa-users-slash {
  --fa: "\e073";
}
.fa-clover {
  --fa: "\e139";
}
.fa-reply {
  --fa: "\f3e5";
}
.fa-mail-reply {
  --fa: "\f3e5";
}
.fa-star-and-crescent {
  --fa: "\f699";
}
.fa-house-fire {
  --fa: "\e50c";
}
.fa-square-minus {
  --fa: "\f146";
}
.fa-minus-square {
  --fa: "\f146";
}
.fa-helicopter {
  --fa: "\f533";
}
.fa-compass {
  --fa: "\f14e";
}
.fa-square-caret-down {
  --fa: "\f150";
}
.fa-caret-square-down {
  --fa: "\f150";
}
.fa-file-circle-question {
  --fa: "\e4ef";
}
.fa-laptop-code {
  --fa: "\f5fc";
}
.fa-swatchbook {
  --fa: "\f5c3";
}
.fa-prescription-bottle {
  --fa: "\f485";
}
.fa-bars {
  --fa: "\f0c9";
}
.fa-navicon {
  --fa: "\f0c9";
}
.fa-people-group {
  --fa: "\e533";
}
.fa-hourglass-end {
  --fa: "\f253";
}
.fa-hourglass-3 {
  --fa: "\f253";
}
.fa-heart-crack {
  --fa: "\f7a9";
}
.fa-heart-broken {
  --fa: "\f7a9";
}
.fa-square-up-right {
  --fa: "\f360";
}
.fa-external-link-square-alt {
  --fa: "\f360";
}
.fa-face-kiss-beam {
  --fa: "\f597";
}
.fa-kiss-beam {
  --fa: "\f597";
}
.fa-film {
  --fa: "\f008";
}
.fa-ruler-horizontal {
  --fa: "\f547";
}
.fa-people-robbery {
  --fa: "\e536";
}
.fa-lightbulb {
  --fa: "\f0eb";
}
.fa-caret-left {
  --fa: "\f0d9";
}
.fa-circle-exclamation {
  --fa: "\f06a";
}
.fa-exclamation-circle {
  --fa: "\f06a";
}
.fa-school-circle-xmark {
  --fa: "\e56d";
}
.fa-arrow-right-from-bracket {
  --fa: "\f08b";
}
.fa-sign-out {
  --fa: "\f08b";
}
.fa-circle-chevron-down {
  --fa: "\f13a";
}
.fa-chevron-circle-down {
  --fa: "\f13a";
}
.fa-unlock-keyhole {
  --fa: "\f13e";
}
.fa-unlock-alt {
  --fa: "\f13e";
}
.fa-cloud-showers-heavy {
  --fa: "\f740";
}
.fa-headphones-simple {
  --fa: "\f58f";
}
.fa-headphones-alt {
  --fa: "\f58f";
}
.fa-sitemap {
  --fa: "\f0e8";
}
.fa-circle-dollar-to-slot {
  --fa: "\f4b9";
}
.fa-donate {
  --fa: "\f4b9";
}
.fa-memory {
  --fa: "\f538";
}
.fa-road-spikes {
  --fa: "\e568";
}
.fa-fire-burner {
  --fa: "\e4f1";
}
.fa-flag {
  --fa: "\f024";
}
.fa-hanukiah {
  --fa: "\f6e6";
}
.fa-feather {
  --fa: "\f52d";
}
.fa-volume-low {
  --fa: "\f027";
}
.fa-volume-down {
  --fa: "\f027";
}
.fa-comment-slash {
  --fa: "\f4b3";
}
.fa-cloud-sun-rain {
  --fa: "\f743";
}
.fa-compress {
  --fa: "\f066";
}
.fa-wheat-awn {
  --fa: "\e2cd";
}
.fa-wheat-alt {
  --fa: "\e2cd";
}
.fa-ankh {
  --fa: "\f644";
}
.fa-hands-holding-child {
  --fa: "\e4fa";
}
.fa-asterisk {
  --fa: "\*";
}
.fa-square-check {
  --fa: "\f14a";
}
.fa-check-square {
  --fa: "\f14a";
}
.fa-peseta-sign {
  --fa: "\e221";
}
.fa-heading {
  --fa: "\f1dc";
}
.fa-header {
  --fa: "\f1dc";
}
.fa-ghost {
  --fa: "\f6e2";
}
.fa-list {
  --fa: "\f03a";
}
.fa-list-squares {
  --fa: "\f03a";
}
.fa-square-phone-flip {
  --fa: "\f87b";
}
.fa-phone-square-alt {
  --fa: "\f87b";
}
.fa-cart-plus {
  --fa: "\f217";
}
.fa-gamepad {
  --fa: "\f11b";
}
.fa-circle-dot {
  --fa: "\f192";
}
.fa-dot-circle {
  --fa: "\f192";
}
.fa-face-dizzy {
  --fa: "\f567";
}
.fa-dizzy {
  --fa: "\f567";
}
.fa-egg {
  --fa: "\f7fb";
}
.fa-house-medical-circle-xmark {
  --fa: "\e513";
}
.fa-campground {
  --fa: "\f6bb";
}
.fa-folder-plus {
  --fa: "\f65e";
}
.fa-futbol {
  --fa: "\f1e3";
}
.fa-futbol-ball {
  --fa: "\f1e3";
}
.fa-soccer-ball {
  --fa: "\f1e3";
}
.fa-paintbrush {
  --fa: "\f1fc";
}
.fa-paint-brush {
  --fa: "\f1fc";
}
.fa-lock {
  --fa: "\f023";
}
.fa-gas-pump {
  --fa: "\f52f";
}
.fa-hot-tub-person {
  --fa: "\f593";
}
.fa-hot-tub {
  --fa: "\f593";
}
.fa-map-location {
  --fa: "\f59f";
}
.fa-map-marked {
  --fa: "\f59f";
}
.fa-house-flood-water {
  --fa: "\e50e";
}
.fa-tree {
  --fa: "\f1bb";
}
.fa-bridge-lock {
  --fa: "\e4cc";
}
.fa-sack-dollar {
  --fa: "\f81d";
}
.fa-pen-to-square {
  --fa: "\f044";
}
.fa-edit {
  --fa: "\f044";
}
.fa-car-side {
  --fa: "\f5e4";
}
.fa-share-nodes {
  --fa: "\f1e0";
}
.fa-share-alt {
  --fa: "\f1e0";
}
.fa-heart-circle-minus {
  --fa: "\e4ff";
}
.fa-hourglass-half {
  --fa: "\f252";
}
.fa-hourglass-2 {
  --fa: "\f252";
}
.fa-microscope {
  --fa: "\f610";
}
.fa-sink {
  --fa: "\e06d";
}
.fa-bag-shopping {
  --fa: "\f290";
}
.fa-shopping-bag {
  --fa: "\f290";
}
.fa-arrow-down-z-a {
  --fa: "\f881";
}
.fa-sort-alpha-desc {
  --fa: "\f881";
}
.fa-sort-alpha-down-alt {
  --fa: "\f881";
}
.fa-mitten {
  --fa: "\f7b5";
}
.fa-person-rays {
  --fa: "\e54d";
}
.fa-users {
  --fa: "\f0c0";
}
.fa-eye-slash {
  --fa: "\f070";
}
.fa-flask-vial {
  --fa: "\e4f3";
}
.fa-hand {
  --fa: "\f256";
}
.fa-hand-paper {
  --fa: "\f256";
}
.fa-om {
  --fa: "\f679";
}
.fa-worm {
  --fa: "\e599";
}
.fa-house-circle-xmark {
  --fa: "\e50b";
}
.fa-plug {
  --fa: "\f1e6";
}
.fa-chevron-up {
  --fa: "\f077";
}
.fa-hand-spock {
  --fa: "\f259";
}
.fa-stopwatch {
  --fa: "\f2f2";
}
.fa-face-kiss {
  --fa: "\f596";
}
.fa-kiss {
  --fa: "\f596";
}
.fa-bridge-circle-xmark {
  --fa: "\e4cb";
}
.fa-face-grin-tongue {
  --fa: "\f589";
}
.fa-grin-tongue {
  --fa: "\f589";
}
.fa-chess-bishop {
  --fa: "\f43a";
}
.fa-face-grin-wink {
  --fa: "\f58c";
}
.fa-grin-wink {
  --fa: "\f58c";
}
.fa-ear-deaf {
  --fa: "\f2a4";
}
.fa-deaf {
  --fa: "\f2a4";
}
.fa-deafness {
  --fa: "\f2a4";
}
.fa-hard-of-hearing {
  --fa: "\f2a4";
}
.fa-road-circle-check {
  --fa: "\e564";
}
.fa-dice-five {
  --fa: "\f523";
}
.fa-square-rss {
  --fa: "\f143";
}
.fa-rss-square {
  --fa: "\f143";
}
.fa-land-mine-on {
  --fa: "\e51b";
}
.fa-i-cursor {
  --fa: "\f246";
}
.fa-stamp {
  --fa: "\f5bf";
}
.fa-stairs {
  --fa: "\e289";
}
.fa-i {
  --fa: "I";
}
.fa-hryvnia-sign {
  --fa: "\f6f2";
}
.fa-hryvnia {
  --fa: "\f6f2";
}
.fa-pills {
  --fa: "\f484";
}
.fa-face-grin-wide {
  --fa: "\f581";
}
.fa-grin-alt {
  --fa: "\f581";
}
.fa-tooth {
  --fa: "\f5c9";
}
.fa-v {
  --fa: "V";
}
.fa-bangladeshi-taka-sign {
  --fa: "\e2e6";
}
.fa-bicycle {
  --fa: "\f206";
}
.fa-staff-snake {
  --fa: "\e579";
}
.fa-rod-asclepius {
  --fa: "\e579";
}
.fa-rod-snake {
  --fa: "\e579";
}
.fa-staff-aesculapius {
  --fa: "\e579";
}
.fa-head-side-cough-slash {
  --fa: "\e062";
}
.fa-truck-medical {
  --fa: "\f0f9";
}
.fa-ambulance {
  --fa: "\f0f9";
}
.fa-wheat-awn-circle-exclamation {
  --fa: "\e598";
}
.fa-snowman {
  --fa: "\f7d0";
}
.fa-mortar-pestle {
  --fa: "\f5a7";
}
.fa-road-barrier {
  --fa: "\e562";
}
.fa-school {
  --fa: "\f549";
}
.fa-igloo {
  --fa: "\f7ae";
}
.fa-joint {
  --fa: "\f595";
}
.fa-angle-right {
  --fa: "\f105";
}
.fa-horse {
  --fa: "\f6f0";
}
.fa-q {
  --fa: "Q";
}
.fa-g {
  --fa: "G";
}
.fa-notes-medical {
  --fa: "\f481";
}
.fa-temperature-half {
  --fa: "\f2c9";
}
.fa-temperature-2 {
  --fa: "\f2c9";
}
.fa-thermometer-2 {
  --fa: "\f2c9";
}
.fa-thermometer-half {
  --fa: "\f2c9";
}
.fa-dong-sign {
  --fa: "\e169";
}
.fa-capsules {
  --fa: "\f46b";
}
.fa-poo-storm {
  --fa: "\f75a";
}
.fa-poo-bolt {
  --fa: "\f75a";
}
.fa-face-frown-open {
  --fa: "\f57a";
}
.fa-frown-open {
  --fa: "\f57a";
}
.fa-hand-point-up {
  --fa: "\f0a6";
}
.fa-money-bill {
  --fa: "\f0d6";
}
.fa-bookmark {
  --fa: "\f02e";
}
.fa-align-justify {
  --fa: "\f039";
}
.fa-umbrella-beach {
  --fa: "\f5ca";
}
.fa-helmet-un {
  --fa: "\e503";
}
.fa-bullseye {
  --fa: "\f140";
}
.fa-bacon {
  --fa: "\f7e5";
}
.fa-hand-point-down {
  --fa: "\f0a7";
}
.fa-arrow-up-from-bracket {
  --fa: "\e09a";
}
.fa-folder {
  --fa: "\f07b";
}
.fa-folder-blank {
  --fa: "\f07b";
}
.fa-file-waveform {
  --fa: "\f478";
}
.fa-file-medical-alt {
  --fa: "\f478";
}
.fa-radiation {
  --fa: "\f7b9";
}
.fa-chart-simple {
  --fa: "\e473";
}
.fa-mars-stroke {
  --fa: "\f229";
}
.fa-vial {
  --fa: "\f492";
}
.fa-gauge {
  --fa: "\f624";
}
.fa-dashboard {
  --fa: "\f624";
}
.fa-gauge-med {
  --fa: "\f624";
}
.fa-tachometer-alt-average {
  --fa: "\f624";
}
.fa-wand-magic-sparkles {
  --fa: "\e2ca";
}
.fa-magic-wand-sparkles {
  --fa: "\e2ca";
}
.fa-e {
  --fa: "E";
}
.fa-pen-clip {
  --fa: "\f305";
}
.fa-pen-alt {
  --fa: "\f305";
}
.fa-bridge-circle-exclamation {
  --fa: "\e4ca";
}
.fa-user {
  --fa: "\f007";
}
.fa-school-circle-check {
  --fa: "\e56b";
}
.fa-dumpster {
  --fa: "\f793";
}
.fa-van-shuttle {
  --fa: "\f5b6";
}
.fa-shuttle-van {
  --fa: "\f5b6";
}
.fa-building-user {
  --fa: "\e4da";
}
.fa-square-caret-left {
  --fa: "\f191";
}
.fa-caret-square-left {
  --fa: "\f191";
}
.fa-highlighter {
  --fa: "\f591";
}
.fa-key {
  --fa: "\f084";
}
.fa-bullhorn {
  --fa: "\f0a1";
}
.fa-globe {
  --fa: "\f0ac";
}
.fa-synagogue {
  --fa: "\f69b";
}
.fa-person-half-dress {
  --fa: "\e548";
}
.fa-road-bridge {
  --fa: "\e563";
}
.fa-location-arrow {
  --fa: "\f124";
}
.fa-c {
  --fa: "C";
}
.fa-tablet-button {
  --fa: "\f10a";
}
.fa-building-lock {
  --fa: "\e4d6";
}
.fa-pizza-slice {
  --fa: "\f818";
}
.fa-money-bill-wave {
  --fa: "\f53a";
}
.fa-chart-area {
  --fa: "\f1fe";
}
.fa-area-chart {
  --fa: "\f1fe";
}
.fa-house-flag {
  --fa: "\e50d";
}
.fa-person-circle-minus {
  --fa: "\e540";
}
.fa-ban {
  --fa: "\f05e";
}
.fa-cancel {
  --fa: "\f05e";
}
.fa-camera-rotate {
  --fa: "\e0d8";
}
.fa-spray-can-sparkles {
  --fa: "\f5d0";
}
.fa-air-freshener {
  --fa: "\f5d0";
}
.fa-star {
  --fa: "\f005";
}
.fa-repeat {
  --fa: "\f363";
}
.fa-cross {
  --fa: "\f654";
}
.fa-box {
  --fa: "\f466";
}
.fa-venus-mars {
  --fa: "\f228";
}
.fa-arrow-pointer {
  --fa: "\f245";
}
.fa-mouse-pointer {
  --fa: "\f245";
}
.fa-maximize {
  --fa: "\f31e";
}
.fa-expand-arrows-alt {
  --fa: "\f31e";
}
.fa-charging-station {
  --fa: "\f5e7";
}
.fa-shapes {
  --fa: "\f61f";
}
.fa-triangle-circle-square {
  --fa: "\f61f";
}
.fa-shuffle {
  --fa: "\f074";
}
.fa-random {
  --fa: "\f074";
}
.fa-person-running {
  --fa: "\f70c";
}
.fa-running {
  --fa: "\f70c";
}
.fa-mobile-retro {
  --fa: "\e527";
}
.fa-grip-lines-vertical {
  --fa: "\f7a5";
}
.fa-spider {
  --fa: "\f717";
}
.fa-hands-bound {
  --fa: "\e4f9";
}
.fa-file-invoice-dollar {
  --fa: "\f571";
}
.fa-plane-circle-exclamation {
  --fa: "\e556";
}
.fa-x-ray {
  --fa: "\f497";
}
.fa-spell-check {
  --fa: "\f891";
}
.fa-slash {
  --fa: "\f715";
}
.fa-computer-mouse {
  --fa: "\f8cc";
}
.fa-mouse {
  --fa: "\f8cc";
}
.fa-arrow-right-to-bracket {
  --fa: "\f090";
}
.fa-sign-in {
  --fa: "\f090";
}
.fa-shop-slash {
  --fa: "\e070";
}
.fa-store-alt-slash {
  --fa: "\e070";
}
.fa-server {
  --fa: "\f233";
}
.fa-virus-covid-slash {
  --fa: "\e4a9";
}
.fa-shop-lock {
  --fa: "\e4a5";
}
.fa-hourglass-start {
  --fa: "\f251";
}
.fa-hourglass-1 {
  --fa: "\f251";
}
.fa-blender-phone {
  --fa: "\f6b6";
}
.fa-building-wheat {
  --fa: "\e4db";
}
.fa-person-breastfeeding {
  --fa: "\e53a";
}
.fa-right-to-bracket {
  --fa: "\f2f6";
}
.fa-sign-in-alt {
  --fa: "\f2f6";
}
.fa-venus {
  --fa: "\f221";
}
.fa-passport {
  --fa: "\f5ab";
}
.fa-thumbtack-slash {
  --fa: "\e68f";
}
.fa-thumb-tack-slash {
  --fa: "\e68f";
}
.fa-heart-pulse {
  --fa: "\f21e";
}
.fa-heartbeat {
  --fa: "\f21e";
}
.fa-people-carry-box {
  --fa: "\f4ce";
}
.fa-people-carry {
  --fa: "\f4ce";
}
.fa-temperature-high {
  --fa: "\f769";
}
.fa-microchip {
  --fa: "\f2db";
}
.fa-crown {
  --fa: "\f521";
}
.fa-weight-hanging {
  --fa: "\f5cd";
}
.fa-xmarks-lines {
  --fa: "\e59a";
}
.fa-file-prescription {
  --fa: "\f572";
}
.fa-weight-scale {
  --fa: "\f496";
}
.fa-weight {
  --fa: "\f496";
}
.fa-user-group {
  --fa: "\f500";
}
.fa-user-friends {
  --fa: "\f500";
}
.fa-arrow-up-a-z {
  --fa: "\f15e";
}
.fa-sort-alpha-up {
  --fa: "\f15e";
}
.fa-chess-knight {
  --fa: "\f441";
}
.fa-face-laugh-squint {
  --fa: "\f59b";
}
.fa-laugh-squint {
  --fa: "\f59b";
}
.fa-wheelchair {
  --fa: "\f193";
}
.fa-circle-arrow-up {
  --fa: "\f0aa";
}
.fa-arrow-circle-up {
  --fa: "\f0aa";
}
.fa-toggle-on {
  --fa: "\f205";
}
.fa-person-walking {
  --fa: "\f554";
}
.fa-walking {
  --fa: "\f554";
}
.fa-l {
  --fa: "L";
}
.fa-fire {
  --fa: "\f06d";
}
.fa-bed-pulse {
  --fa: "\f487";
}
.fa-procedures {
  --fa: "\f487";
}
.fa-shuttle-space {
  --fa: "\f197";
}
.fa-space-shuttle {
  --fa: "\f197";
}
.fa-face-laugh {
  --fa: "\f599";
}
.fa-laugh {
  --fa: "\f599";
}
.fa-folder-open {
  --fa: "\f07c";
}
.fa-heart-circle-plus {
  --fa: "\e500";
}
.fa-code-fork {
  --fa: "\e13b";
}
.fa-city {
  --fa: "\f64f";
}
.fa-microphone-lines {
  --fa: "\f3c9";
}
.fa-microphone-alt {
  --fa: "\f3c9";
}
.fa-pepper-hot {
  --fa: "\f816";
}
.fa-unlock {
  --fa: "\f09c";
}
.fa-colon-sign {
  --fa: "\e140";
}
.fa-headset {
  --fa: "\f590";
}
.fa-store-slash {
  --fa: "\e071";
}
.fa-road-circle-xmark {
  --fa: "\e566";
}
.fa-user-minus {
  --fa: "\f503";
}
.fa-mars-stroke-up {
  --fa: "\f22a";
}
.fa-mars-stroke-v {
  --fa: "\f22a";
}
.fa-champagne-glasses {
  --fa: "\f79f";
}
.fa-glass-cheers {
  --fa: "\f79f";
}
.fa-clipboard {
  --fa: "\f328";
}
.fa-house-circle-exclamation {
  --fa: "\e50a";
}
.fa-file-arrow-up {
  --fa: "\f574";
}
.fa-file-upload {
  --fa: "\f574";
}
.fa-wifi {
  --fa: "\f1eb";
}
.fa-wifi-3 {
  --fa: "\f1eb";
}
.fa-wifi-strong {
  --fa: "\f1eb";
}
.fa-bath {
  --fa: "\f2cd";
}
.fa-bathtub {
  --fa: "\f2cd";
}
.fa-underline {
  --fa: "\f0cd";
}
.fa-user-pen {
  --fa: "\f4ff";
}
.fa-user-edit {
  --fa: "\f4ff";
}
.fa-signature {
  --fa: "\f5b7";
}
.fa-stroopwafel {
  --fa: "\f551";
}
.fa-bold {
  --fa: "\f032";
}
.fa-anchor-lock {
  --fa: "\e4ad";
}
.fa-building-ngo {
  --fa: "\e4d7";
}
.fa-manat-sign {
  --fa: "\e1d5";
}
.fa-not-equal {
  --fa: "\f53e";
}
.fa-border-top-left {
  --fa: "\f853";
}
.fa-border-style {
  --fa: "\f853";
}
.fa-map-location-dot {
  --fa: "\f5a0";
}
.fa-map-marked-alt {
  --fa: "\f5a0";
}
.fa-jedi {
  --fa: "\f669";
}
.fa-square-poll-vertical {
  --fa: "\f681";
}
.fa-poll {
  --fa: "\f681";
}
.fa-mug-hot {
  --fa: "\f7b6";
}
.fa-car-battery {
  --fa: "\f5df";
}
.fa-battery-car {
  --fa: "\f5df";
}
.fa-gift {
  --fa: "\f06b";
}
.fa-dice-two {
  --fa: "\f528";
}
.fa-chess-queen {
  --fa: "\f445";
}
.fa-glasses {
  --fa: "\f530";
}
.fa-chess-board {
  --fa: "\f43c";
}
.fa-building-circle-check {
  --fa: "\e4d2";
}
.fa-person-chalkboard {
  --fa: "\e53d";
}
.fa-mars-stroke-right {
  --fa: "\f22b";
}
.fa-mars-stroke-h {
  --fa: "\f22b";
}
.fa-hand-back-fist {
  --fa: "\f255";
}
.fa-hand-rock {
  --fa: "\f255";
}
.fa-square-caret-up {
  --fa: "\f151";
}
.fa-caret-square-up {
  --fa: "\f151";
}
.fa-cloud-showers-water {
  --fa: "\e4e4";
}
.fa-chart-bar {
  --fa: "\f080";
}
.fa-bar-chart {
  --fa: "\f080";
}
.fa-hands-bubbles {
  --fa: "\e05e";
}
.fa-hands-wash {
  --fa: "\e05e";
}
.fa-less-than-equal {
  --fa: "\f537";
}
.fa-train {
  --fa: "\f238";
}
.fa-eye-low-vision {
  --fa: "\f2a8";
}
.fa-low-vision {
  --fa: "\f2a8";
}
.fa-crow {
  --fa: "\f520";
}
.fa-sailboat {
  --fa: "\e445";
}
.fa-window-restore {
  --fa: "\f2d2";
}
.fa-square-plus {
  --fa: "\f0fe";
}
.fa-plus-square {
  --fa: "\f0fe";
}
.fa-torii-gate {
  --fa: "\f6a1";
}
.fa-frog {
  --fa: "\f52e";
}
.fa-bucket {
  --fa: "\e4cf";
}
.fa-image {
  --fa: "\f03e";
}
.fa-microphone {
  --fa: "\f130";
}
.fa-cow {
  --fa: "\f6c8";
}
.fa-caret-up {
  --fa: "\f0d8";
}
.fa-screwdriver {
  --fa: "\f54a";
}
.fa-folder-closed {
  --fa: "\e185";
}
.fa-house-tsunami {
  --fa: "\e515";
}
.fa-square-nfi {
  --fa: "\e576";
}
.fa-arrow-up-from-ground-water {
  --fa: "\e4b5";
}
.fa-martini-glass {
  --fa: "\f57b";
}
.fa-glass-martini-alt {
  --fa: "\f57b";
}
.fa-square-binary {
  --fa: "\e69b";
}
.fa-rotate-left {
  --fa: "\f2ea";
}
.fa-rotate-back {
  --fa: "\f2ea";
}
.fa-rotate-backward {
  --fa: "\f2ea";
}
.fa-undo-alt {
  --fa: "\f2ea";
}
.fa-table-columns {
  --fa: "\f0db";
}
.fa-columns {
  --fa: "\f0db";
}
.fa-lemon {
  --fa: "\f094";
}
.fa-head-side-mask {
  --fa: "\e063";
}
.fa-handshake {
  --fa: "\f2b5";
}
.fa-gem {
  --fa: "\f3a5";
}
.fa-dolly {
  --fa: "\f472";
}
.fa-dolly-box {
  --fa: "\f472";
}
.fa-smoking {
  --fa: "\f48d";
}
.fa-minimize {
  --fa: "\f78c";
}
.fa-compress-arrows-alt {
  --fa: "\f78c";
}
.fa-monument {
  --fa: "\f5a6";
}
.fa-snowplow {
  --fa: "\f7d2";
}
.fa-angles-right {
  --fa: "\f101";
}
.fa-angle-double-right {
  --fa: "\f101";
}
.fa-cannabis {
  --fa: "\f55f";
}
.fa-circle-play {
  --fa: "\f144";
}
.fa-play-circle {
  --fa: "\f144";
}
.fa-tablets {
  --fa: "\f490";
}
.fa-ethernet {
  --fa: "\f796";
}
.fa-euro-sign {
  --fa: "\f153";
}
.fa-eur {
  --fa: "\f153";
}
.fa-euro {
  --fa: "\f153";
}
.fa-chair {
  --fa: "\f6c0";
}
.fa-circle-check {
  --fa: "\f058";
}
.fa-check-circle {
  --fa: "\f058";
}
.fa-circle-stop {
  --fa: "\f28d";
}
.fa-stop-circle {
  --fa: "\f28d";
}
.fa-compass-drafting {
  --fa: "\f568";
}
.fa-drafting-compass {
  --fa: "\f568";
}
.fa-plate-wheat {
  --fa: "\e55a";
}
.fa-icicles {
  --fa: "\f7ad";
}
.fa-person-shelter {
  --fa: "\e54f";
}
.fa-neuter {
  --fa: "\f22c";
}
.fa-id-badge {
  --fa: "\f2c1";
}
.fa-marker {
  --fa: "\f5a1";
}
.fa-face-laugh-beam {
  --fa: "\f59a";
}
.fa-laugh-beam {
  --fa: "\f59a";
}
.fa-helicopter-symbol {
  --fa: "\e502";
}
.fa-universal-access {
  --fa: "\f29a";
}
.fa-circle-chevron-up {
  --fa: "\f139";
}
.fa-chevron-circle-up {
  --fa: "\f139";
}
.fa-lari-sign {
  --fa: "\e1c8";
}
.fa-volcano {
  --fa: "\f770";
}
.fa-person-walking-dashed-line-arrow-right {
  --fa: "\e553";
}
.fa-sterling-sign {
  --fa: "\f154";
}
.fa-gbp {
  --fa: "\f154";
}
.fa-pound-sign {
  --fa: "\f154";
}
.fa-viruses {
  --fa: "\e076";
}
.fa-square-person-confined {
  --fa: "\e577";
}
.fa-user-tie {
  --fa: "\f508";
}
.fa-arrow-down-long {
  --fa: "\f175";
}
.fa-long-arrow-down {
  --fa: "\f175";
}
.fa-tent-arrow-down-to-line {
  --fa: "\e57e";
}
.fa-certificate {
  --fa: "\f0a3";
}
.fa-reply-all {
  --fa: "\f122";
}
.fa-mail-reply-all {
  --fa: "\f122";
}
.fa-suitcase {
  --fa: "\f0f2";
}
.fa-person-skating {
  --fa: "\f7c5";
}
.fa-skating {
  --fa: "\f7c5";
}
.fa-filter-circle-dollar {
  --fa: "\f662";
}
.fa-funnel-dollar {
  --fa: "\f662";
}
.fa-camera-retro {
  --fa: "\f083";
}
.fa-circle-arrow-down {
  --fa: "\f0ab";
}
.fa-arrow-circle-down {
  --fa: "\f0ab";
}
.fa-file-import {
  --fa: "\f56f";
}
.fa-arrow-right-to-file {
  --fa: "\f56f";
}
.fa-square-arrow-up-right {
  --fa: "\f14c";
}
.fa-external-link-square {
  --fa: "\f14c";
}
.fa-box-open {
  --fa: "\f49e";
}
.fa-scroll {
  --fa: "\f70e";
}
.fa-spa {
  --fa: "\f5bb";
}
.fa-location-pin-lock {
  --fa: "\e51f";
}
.fa-pause {
  --fa: "\f04c";
}
.fa-hill-avalanche {
  --fa: "\e507";
}
.fa-temperature-empty {
  --fa: "\f2cb";
}
.fa-temperature-0 {
  --fa: "\f2cb";
}
.fa-thermometer-0 {
  --fa: "\f2cb";
}
.fa-thermometer-empty {
  --fa: "\f2cb";
}
.fa-bomb {
  --fa: "\f1e2";
}
.fa-registered {
  --fa: "\f25d";
}
.fa-address-card {
  --fa: "\f2bb";
}
.fa-contact-card {
  --fa: "\f2bb";
}
.fa-vcard {
  --fa: "\f2bb";
}
.fa-scale-unbalanced-flip {
  --fa: "\f516";
}
.fa-balance-scale-right {
  --fa: "\f516";
}
.fa-subscript {
  --fa: "\f12c";
}
.fa-diamond-turn-right {
  --fa: "\f5eb";
}
.fa-directions {
  --fa: "\f5eb";
}
.fa-burst {
  --fa: "\e4dc";
}
.fa-house-laptop {
  --fa: "\e066";
}
.fa-laptop-house {
  --fa: "\e066";
}
.fa-face-tired {
  --fa: "\f5c8";
}
.fa-tired {
  --fa: "\f5c8";
}
.fa-money-bills {
  --fa: "\e1f3";
}
.fa-smog {
  --fa: "\f75f";
}
.fa-crutch {
  --fa: "\f7f7";
}
.fa-cloud-arrow-up {
  --fa: "\f0ee";
}
.fa-cloud-upload {
  --fa: "\f0ee";
}
.fa-cloud-upload-alt {
  --fa: "\f0ee";
}
.fa-palette {
  --fa: "\f53f";
}
.fa-arrows-turn-right {
  --fa: "\e4c0";
}
.fa-vest {
  --fa: "\e085";
}
.fa-ferry {
  --fa: "\e4ea";
}
.fa-arrows-down-to-people {
  --fa: "\e4b9";
}
.fa-seedling {
  --fa: "\f4d8";
}
.fa-sprout {
  --fa: "\f4d8";
}
.fa-left-right {
  --fa: "\f337";
}
.fa-arrows-alt-h {
  --fa: "\f337";
}
.fa-boxes-packing {
  --fa: "\e4c7";
}
.fa-circle-arrow-left {
  --fa: "\f0a8";
}
.fa-arrow-circle-left {
  --fa: "\f0a8";
}
.fa-group-arrows-rotate {
  --fa: "\e4f6";
}
.fa-bowl-food {
  --fa: "\e4c6";
}
.fa-candy-cane {
  --fa: "\f786";
}
.fa-arrow-down-wide-short {
  --fa: "\f160";
}
.fa-sort-amount-asc {
  --fa: "\f160";
}
.fa-sort-amount-down {
  --fa: "\f160";
}
.fa-cloud-bolt {
  --fa: "\f76c";
}
.fa-thunderstorm {
  --fa: "\f76c";
}
.fa-text-slash {
  --fa: "\f87d";
}
.fa-remove-format {
  --fa: "\f87d";
}
.fa-face-smile-wink {
  --fa: "\f4da";
}
.fa-smile-wink {
  --fa: "\f4da";
}
.fa-file-word {
  --fa: "\f1c2";
}
.fa-file-powerpoint {
  --fa: "\f1c4";
}
.fa-arrows-left-right {
  --fa: "\f07e";
}
.fa-arrows-h {
  --fa: "\f07e";
}
.fa-house-lock {
  --fa: "\e510";
}
.fa-cloud-arrow-down {
  --fa: "\f0ed";
}
.fa-cloud-download {
  --fa: "\f0ed";
}
.fa-cloud-download-alt {
  --fa: "\f0ed";
}
.fa-children {
  --fa: "\e4e1";
}
.fa-chalkboard {
  --fa: "\f51b";
}
.fa-blackboard {
  --fa: "\f51b";
}
.fa-user-large-slash {
  --fa: "\f4fa";
}
.fa-user-alt-slash {
  --fa: "\f4fa";
}
.fa-envelope-open {
  --fa: "\f2b6";
}
.fa-handshake-simple-slash {
  --fa: "\e05f";
}
.fa-handshake-alt-slash {
  --fa: "\e05f";
}
.fa-mattress-pillow {
  --fa: "\e525";
}
.fa-guarani-sign {
  --fa: "\e19a";
}
.fa-arrows-rotate {
  --fa: "\f021";
}
.fa-refresh {
  --fa: "\f021";
}
.fa-sync {
  --fa: "\f021";
}
.fa-fire-extinguisher {
  --fa: "\f134";
}
.fa-cruzeiro-sign {
  --fa: "\e152";
}
.fa-greater-than-equal {
  --fa: "\f532";
}
.fa-shield-halved {
  --fa: "\f3ed";
}
.fa-shield-alt {
  --fa: "\f3ed";
}
.fa-book-atlas {
  --fa: "\f558";
}
.fa-atlas {
  --fa: "\f558";
}
.fa-virus {
  --fa: "\e074";
}
.fa-envelope-circle-check {
  --fa: "\e4e8";
}
.fa-layer-group {
  --fa: "\f5fd";
}
.fa-arrows-to-dot {
  --fa: "\e4be";
}
.fa-archway {
  --fa: "\f557";
}
.fa-heart-circle-check {
  --fa: "\e4fd";
}
.fa-house-chimney-crack {
  --fa: "\f6f1";
}
.fa-house-damage {
  --fa: "\f6f1";
}
.fa-file-zipper {
  --fa: "\f1c6";
}
.fa-file-archive {
  --fa: "\f1c6";
}
.fa-square {
  --fa: "\f0c8";
}
.fa-martini-glass-empty {
  --fa: "\f000";
}
.fa-glass-martini {
  --fa: "\f000";
}
.fa-couch {
  --fa: "\f4b8";
}
.fa-cedi-sign {
  --fa: "\e0df";
}
.fa-italic {
  --fa: "\f033";
}
.fa-table-cells-column-lock {
  --fa: "\e678";
}
.fa-church {
  --fa: "\f51d";
}
.fa-comments-dollar {
  --fa: "\f653";
}
.fa-democrat {
  --fa: "\f747";
}
.fa-z {
  --fa: "Z";
}
.fa-person-skiing {
  --fa: "\f7c9";
}
.fa-skiing {
  --fa: "\f7c9";
}
.fa-road-lock {
  --fa: "\e567";
}
.fa-a {
  --fa: "A";
}
.fa-temperature-arrow-down {
  --fa: "\e03f";
}
.fa-temperature-down {
  --fa: "\e03f";
}
.fa-feather-pointed {
  --fa: "\f56b";
}
.fa-feather-alt {
  --fa: "\f56b";
}
.fa-p {
  --fa: "P";
}
.fa-snowflake {
  --fa: "\f2dc";
}
.fa-newspaper {
  --fa: "\f1ea";
}
.fa-rectangle-ad {
  --fa: "\f641";
}
.fa-ad {
  --fa: "\f641";
}
.fa-circle-arrow-right {
  --fa: "\f0a9";
}
.fa-arrow-circle-right {
  --fa: "\f0a9";
}
.fa-filter-circle-xmark {
  --fa: "\e17b";
}
.fa-locust {
  --fa: "\e520";
}
.fa-sort {
  --fa: "\f0dc";
}
.fa-unsorted {
  --fa: "\f0dc";
}
.fa-list-ol {
  --fa: "\f0cb";
}
.fa-list-1-2 {
  --fa: "\f0cb";
}
.fa-list-numeric {
  --fa: "\f0cb";
}
.fa-person-dress-burst {
  --fa: "\e544";
}
.fa-money-check-dollar {
  --fa: "\f53d";
}
.fa-money-check-alt {
  --fa: "\f53d";
}
.fa-vector-square {
  --fa: "\f5cb";
}
.fa-bread-slice {
  --fa: "\f7ec";
}
.fa-language {
  --fa: "\f1ab";
}
.fa-face-kiss-wink-heart {
  --fa: "\f598";
}
.fa-kiss-wink-heart {
  --fa: "\f598";
}
.fa-filter {
  --fa: "\f0b0";
}
.fa-question {
  --fa: "\?";
}
.fa-file-signature {
  --fa: "\f573";
}
.fa-up-down-left-right {
  --fa: "\f0b2";
}
.fa-arrows-alt {
  --fa: "\f0b2";
}
.fa-house-chimney-user {
  --fa: "\e065";
}
.fa-hand-holding-heart {
  --fa: "\f4be";
}
.fa-puzzle-piece {
  --fa: "\f12e";
}
.fa-money-check {
  --fa: "\f53c";
}
.fa-star-half-stroke {
  --fa: "\f5c0";
}
.fa-star-half-alt {
  --fa: "\f5c0";
}
.fa-code {
  --fa: "\f121";
}
.fa-whiskey-glass {
  --fa: "\f7a0";
}
.fa-glass-whiskey {
  --fa: "\f7a0";
}
.fa-building-circle-exclamation {
  --fa: "\e4d3";
}
.fa-magnifying-glass-chart {
  --fa: "\e522";
}
.fa-arrow-up-right-from-square {
  --fa: "\f08e";
}
.fa-external-link {
  --fa: "\f08e";
}
.fa-cubes-stacked {
  --fa: "\e4e6";
}
.fa-won-sign {
  --fa: "\f159";
}
.fa-krw {
  --fa: "\f159";
}
.fa-won {
  --fa: "\f159";
}
.fa-virus-covid {
  --fa: "\e4a8";
}
.fa-austral-sign {
  --fa: "\e0a9";
}
.fa-f {
  --fa: "F";
}
.fa-leaf {
  --fa: "\f06c";
}
.fa-road {
  --fa: "\f018";
}
.fa-taxi {
  --fa: "\f1ba";
}
.fa-cab {
  --fa: "\f1ba";
}
.fa-person-circle-plus {
  --fa: "\e541";
}
.fa-chart-pie {
  --fa: "\f200";
}
.fa-pie-chart {
  --fa: "\f200";
}
.fa-bolt-lightning {
  --fa: "\e0b7";
}
.fa-sack-xmark {
  --fa: "\e56a";
}
.fa-file-excel {
  --fa: "\f1c3";
}
.fa-file-contract {
  --fa: "\f56c";
}
.fa-fish-fins {
  --fa: "\e4f2";
}
.fa-building-flag {
  --fa: "\e4d5";
}
.fa-face-grin-beam {
  --fa: "\f582";
}
.fa-grin-beam {
  --fa: "\f582";
}
.fa-object-ungroup {
  --fa: "\f248";
}
.fa-poop {
  --fa: "\f619";
}
.fa-location-pin {
  --fa: "\f041";
}
.fa-map-marker {
  --fa: "\f041";
}
.fa-kaaba {
  --fa: "\f66b";
}
.fa-toilet-paper {
  --fa: "\f71e";
}
.fa-helmet-safety {
  --fa: "\f807";
}
.fa-hard-hat {
  --fa: "\f807";
}
.fa-hat-hard {
  --fa: "\f807";
}
.fa-eject {
  --fa: "\f052";
}
.fa-circle-right {
  --fa: "\f35a";
}
.fa-arrow-alt-circle-right {
  --fa: "\f35a";
}
.fa-plane-circle-check {
  --fa: "\e555";
}
.fa-face-rolling-eyes {
  --fa: "\f5a5";
}
.fa-meh-rolling-eyes {
  --fa: "\f5a5";
}
.fa-object-group {
  --fa: "\f247";
}
.fa-chart-line {
  --fa: "\f201";
}
.fa-line-chart {
  --fa: "\f201";
}
.fa-mask-ventilator {
  --fa: "\e524";
}
.fa-arrow-right {
  --fa: "\f061";
}
.fa-signs-post {
  --fa: "\f277";
}
.fa-map-signs {
  --fa: "\f277";
}
.fa-cash-register {
  --fa: "\f788";
}
.fa-person-circle-question {
  --fa: "\e542";
}
.fa-h {
  --fa: "H";
}
.fa-tarp {
  --fa: "\e57b";
}
.fa-screwdriver-wrench {
  --fa: "\f7d9";
}
.fa-tools {
  --fa: "\f7d9";
}
.fa-arrows-to-eye {
  --fa: "\e4bf";
}
.fa-plug-circle-bolt {
  --fa: "\e55b";
}
.fa-heart {
  --fa: "\f004";
}
.fa-mars-and-venus {
  --fa: "\f224";
}
.fa-house-user {
  --fa: "\e1b0";
}
.fa-home-user {
  --fa: "\e1b0";
}
.fa-dumpster-fire {
  --fa: "\f794";
}
.fa-house-crack {
  --fa: "\e3b1";
}
.fa-martini-glass-citrus {
  --fa: "\f561";
}
.fa-cocktail {
  --fa: "\f561";
}
.fa-face-surprise {
  --fa: "\f5c2";
}
.fa-surprise {
  --fa: "\f5c2";
}
.fa-bottle-water {
  --fa: "\e4c5";
}
.fa-circle-pause {
  --fa: "\f28b";
}
.fa-pause-circle {
  --fa: "\f28b";
}
.fa-toilet-paper-slash {
  --fa: "\e072";
}
.fa-apple-whole {
  --fa: "\f5d1";
}
.fa-apple-alt {
  --fa: "\f5d1";
}
.fa-kitchen-set {
  --fa: "\e51a";
}
.fa-r {
  --fa: "R";
}
.fa-temperature-quarter {
  --fa: "\f2ca";
}
.fa-temperature-1 {
  --fa: "\f2ca";
}
.fa-thermometer-1 {
  --fa: "\f2ca";
}
.fa-thermometer-quarter {
  --fa: "\f2ca";
}
.fa-cube {
  --fa: "\f1b2";
}
.fa-bitcoin-sign {
  --fa: "\e0b4";
}
.fa-shield-dog {
  --fa: "\e573";
}
.fa-solar-panel {
  --fa: "\f5ba";
}
.fa-lock-open {
  --fa: "\f3c1";
}
.fa-elevator {
  --fa: "\e16d";
}
.fa-money-bill-transfer {
  --fa: "\e528";
}
.fa-money-bill-trend-up {
  --fa: "\e529";
}
.fa-house-flood-water-circle-arrow-right {
  --fa: "\e50f";
}
.fa-square-poll-horizontal {
  --fa: "\f682";
}
.fa-poll-h {
  --fa: "\f682";
}
.fa-circle {
  --fa: "\f111";
}
.fa-backward-fast {
  --fa: "\f049";
}
.fa-fast-backward {
  --fa: "\f049";
}
.fa-recycle {
  --fa: "\f1b8";
}
.fa-user-astronaut {
  --fa: "\f4fb";
}
.fa-plane-slash {
  --fa: "\e069";
}
.fa-trademark {
  --fa: "\f25c";
}
.fa-basketball {
  --fa: "\f434";
}
.fa-basketball-ball {
  --fa: "\f434";
}
.fa-satellite-dish {
  --fa: "\f7c0";
}
.fa-circle-up {
  --fa: "\f35b";
}
.fa-arrow-alt-circle-up {
  --fa: "\f35b";
}
.fa-mobile-screen-button {
  --fa: "\f3cd";
}
.fa-mobile-alt {
  --fa: "\f3cd";
}
.fa-volume-high {
  --fa: "\f028";
}
.fa-volume-up {
  --fa: "\f028";
}
.fa-users-rays {
  --fa: "\e593";
}
.fa-wallet {
  --fa: "\f555";
}
.fa-clipboard-check {
  --fa: "\f46c";
}
.fa-file-audio {
  --fa: "\f1c7";
}
.fa-burger {
  --fa: "\f805";
}
.fa-hamburger {
  --fa: "\f805";
}
.fa-wrench {
  --fa: "\f0ad";
}
.fa-bugs {
  --fa: "\e4d0";
}
.fa-rupee-sign {
  --fa: "\f156";
}
.fa-rupee {
  --fa: "\f156";
}
.fa-file-image {
  --fa: "\f1c5";
}
.fa-circle-question {
  --fa: "\f059";
}
.fa-question-circle {
  --fa: "\f059";
}
.fa-plane-departure {
  --fa: "\f5b0";
}
.fa-handshake-slash {
  --fa: "\e060";
}
.fa-book-bookmark {
  --fa: "\e0bb";
}
.fa-code-branch {
  --fa: "\f126";
}
.fa-hat-cowboy {
  --fa: "\f8c0";
}
.fa-bridge {
  --fa: "\e4c8";
}
.fa-phone-flip {
  --fa: "\f879";
}
.fa-phone-alt {
  --fa: "\f879";
}
.fa-truck-front {
  --fa: "\e2b7";
}
.fa-cat {
  --fa: "\f6be";
}
.fa-anchor-circle-exclamation {
  --fa: "\e4ab";
}
.fa-truck-field {
  --fa: "\e58d";
}
.fa-route {
  --fa: "\f4d7";
}
.fa-clipboard-question {
  --fa: "\e4e3";
}
.fa-panorama {
  --fa: "\e209";
}
.fa-comment-medical {
  --fa: "\f7f5";
}
.fa-teeth-open {
  --fa: "\f62f";
}
.fa-file-circle-minus {
  --fa: "\e4ed";
}
.fa-tags {
  --fa: "\f02c";
}
.fa-wine-glass {
  --fa: "\f4e3";
}
.fa-forward-fast {
  --fa: "\f050";
}
.fa-fast-forward {
  --fa: "\f050";
}
.fa-face-meh-blank {
  --fa: "\f5a4";
}
.fa-meh-blank {
  --fa: "\f5a4";
}
.fa-square-parking {
  --fa: "\f540";
}
.fa-parking {
  --fa: "\f540";
}
.fa-house-signal {
  --fa: "\e012";
}
.fa-bars-progress {
  --fa: "\f828";
}
.fa-tasks-alt {
  --fa: "\f828";
}
.fa-faucet-drip {
  --fa: "\e006";
}
.fa-cart-flatbed {
  --fa: "\f474";
}
.fa-dolly-flatbed {
  --fa: "\f474";
}
.fa-ban-smoking {
  --fa: "\f54d";
}
.fa-smoking-ban {
  --fa: "\f54d";
}
.fa-terminal {
  --fa: "\f120";
}
.fa-mobile-button {
  --fa: "\f10b";
}
.fa-house-medical-flag {
  --fa: "\e514";
}
.fa-basket-shopping {
  --fa: "\f291";
}
.fa-shopping-basket {
  --fa: "\f291";
}
.fa-tape {
  --fa: "\f4db";
}
.fa-bus-simple {
  --fa: "\f55e";
}
.fa-bus-alt {
  --fa: "\f55e";
}
.fa-eye {
  --fa: "\f06e";
}
.fa-face-sad-cry {
  --fa: "\f5b3";
}
.fa-sad-cry {
  --fa: "\f5b3";
}
.fa-audio-description {
  --fa: "\f29e";
}
.fa-person-military-to-person {
  --fa: "\e54c";
}
.fa-file-shield {
  --fa: "\e4f0";
}
.fa-user-slash {
  --fa: "\f506";
}
.fa-pen {
  --fa: "\f304";
}
.fa-tower-observation {
  --fa: "\e586";
}
.fa-file-code {
  --fa: "\f1c9";
}
.fa-signal {
  --fa: "\f012";
}
.fa-signal-5 {
  --fa: "\f012";
}
.fa-signal-perfect {
  --fa: "\f012";
}
.fa-bus {
  --fa: "\f207";
}
.fa-heart-circle-xmark {
  --fa: "\e501";
}
.fa-house-chimney {
  --fa: "\e3af";
}
.fa-home-lg {
  --fa: "\e3af";
}
.fa-window-maximize {
  --fa: "\f2d0";
}
.fa-face-frown {
  --fa: "\f119";
}
.fa-frown {
  --fa: "\f119";
}
.fa-prescription {
  --fa: "\f5b1";
}
.fa-shop {
  --fa: "\f54f";
}
.fa-store-alt {
  --fa: "\f54f";
}
.fa-floppy-disk {
  --fa: "\f0c7";
}
.fa-save {
  --fa: "\f0c7";
}
.fa-vihara {
  --fa: "\f6a7";
}
.fa-scale-unbalanced {
  --fa: "\f515";
}
.fa-balance-scale-left {
  --fa: "\f515";
}
.fa-sort-up {
  --fa: "\f0de";
}
.fa-sort-asc {
  --fa: "\f0de";
}
.fa-comment-dots {
  --fa: "\f4ad";
}
.fa-commenting {
  --fa: "\f4ad";
}
.fa-plant-wilt {
  --fa: "\e5aa";
}
.fa-diamond {
  --fa: "\f219";
}
.fa-face-grin-squint {
  --fa: "\f585";
}
.fa-grin-squint {
  --fa: "\f585";
}
.fa-hand-holding-dollar {
  --fa: "\f4c0";
}
.fa-hand-holding-usd {
  --fa: "\f4c0";
}
.fa-chart-diagram {
  --fa: "\e695";
}
.fa-bacterium {
  --fa: "\e05a";
}
.fa-hand-pointer {
  --fa: "\f25a";
}
.fa-drum-steelpan {
  --fa: "\f56a";
}
.fa-hand-scissors {
  --fa: "\f257";
}
.fa-hands-praying {
  --fa: "\f684";
}
.fa-praying-hands {
  --fa: "\f684";
}
.fa-arrow-rotate-right {
  --fa: "\f01e";
}
.fa-arrow-right-rotate {
  --fa: "\f01e";
}
.fa-arrow-rotate-forward {
  --fa: "\f01e";
}
.fa-redo {
  --fa: "\f01e";
}
.fa-biohazard {
  --fa: "\f780";
}
.fa-location-crosshairs {
  --fa: "\f601";
}
.fa-location {
  --fa: "\f601";
}
.fa-mars-double {
  --fa: "\f227";
}
.fa-child-dress {
  --fa: "\e59c";
}
.fa-users-between-lines {
  --fa: "\e591";
}
.fa-lungs-virus {
  --fa: "\e067";
}
.fa-face-grin-tears {
  --fa: "\f588";
}
.fa-grin-tears {
  --fa: "\f588";
}
.fa-phone {
  --fa: "\f095";
}
.fa-calendar-xmark {
  --fa: "\f273";
}
.fa-calendar-times {
  --fa: "\f273";
}
.fa-child-reaching {
  --fa: "\e59d";
}
.fa-head-side-virus {
  --fa: "\e064";
}
.fa-user-gear {
  --fa: "\f4fe";
}
.fa-user-cog {
  --fa: "\f4fe";
}
.fa-arrow-up-1-9 {
  --fa: "\f163";
}
.fa-sort-numeric-up {
  --fa: "\f163";
}
.fa-door-closed {
  --fa: "\f52a";
}
.fa-shield-virus {
  --fa: "\e06c";
}
.fa-dice-six {
  --fa: "\f526";
}
.fa-mosquito-net {
  --fa: "\e52c";
}
.fa-file-fragment {
  --fa: "\e697";
}
.fa-bridge-water {
  --fa: "\e4ce";
}
.fa-person-booth {
  --fa: "\f756";
}
.fa-text-width {
  --fa: "\f035";
}
.fa-hat-wizard {
  --fa: "\f6e8";
}
.fa-pen-fancy {
  --fa: "\f5ac";
}
.fa-person-digging {
  --fa: "\f85e";
}
.fa-digging {
  --fa: "\f85e";
}
.fa-trash {
  --fa: "\f1f8";
}
.fa-gauge-simple {
  --fa: "\f629";
}
.fa-gauge-simple-med {
  --fa: "\f629";
}
.fa-tachometer-average {
  --fa: "\f629";
}
.fa-book-medical {
  --fa: "\f7e6";
}
.fa-poo {
  --fa: "\f2fe";
}
.fa-quote-right {
  --fa: "\f10e";
}
.fa-quote-right-alt {
  --fa: "\f10e";
}
.fa-shirt {
  --fa: "\f553";
}
.fa-t-shirt {
  --fa: "\f553";
}
.fa-tshirt {
  --fa: "\f553";
}
.fa-cubes {
  --fa: "\f1b3";
}
.fa-divide {
  --fa: "\f529";
}
.fa-tenge-sign {
  --fa: "\f7d7";
}
.fa-tenge {
  --fa: "\f7d7";
}
.fa-headphones {
  --fa: "\f025";
}
.fa-hands-holding {
  --fa: "\f4c2";
}
.fa-hands-clapping {
  --fa: "\e1a8";
}
.fa-republican {
  --fa: "\f75e";
}
.fa-arrow-left {
  --fa: "\f060";
}
.fa-person-circle-xmark {
  --fa: "\e543";
}
.fa-ruler {
  --fa: "\f545";
}
.fa-align-left {
  --fa: "\f036";
}
.fa-dice-d6 {
  --fa: "\f6d1";
}
.fa-restroom {
  --fa: "\f7bd";
}
.fa-j {
  --fa: "J";
}
.fa-users-viewfinder {
  --fa: "\e595";
}
.fa-file-video {
  --fa: "\f1c8";
}
.fa-up-right-from-square {
  --fa: "\f35d";
}
.fa-external-link-alt {
  --fa: "\f35d";
}
.fa-table-cells {
  --fa: "\f00a";
}
.fa-th {
  --fa: "\f00a";
}
.fa-file-pdf {
  --fa: "\f1c1";
}
.fa-book-bible {
  --fa: "\f647";
}
.fa-bible {
  --fa: "\f647";
}
.fa-o {
  --fa: "O";
}
.fa-suitcase-medical {
  --fa: "\f0fa";
}
.fa-medkit {
  --fa: "\f0fa";
}
.fa-user-secret {
  --fa: "\f21b";
}
.fa-otter {
  --fa: "\f700";
}
.fa-person-dress {
  --fa: "\f182";
}
.fa-female {
  --fa: "\f182";
}
.fa-comment-dollar {
  --fa: "\f651";
}
.fa-business-time {
  --fa: "\f64a";
}
.fa-briefcase-clock {
  --fa: "\f64a";
}
.fa-table-cells-large {
  --fa: "\f009";
}
.fa-th-large {
  --fa: "\f009";
}
.fa-book-tanakh {
  --fa: "\f827";
}
.fa-tanakh {
  --fa: "\f827";
}
.fa-phone-volume {
  --fa: "\f2a0";
}
.fa-volume-control-phone {
  --fa: "\f2a0";
}
.fa-hat-cowboy-side {
  --fa: "\f8c1";
}
.fa-clipboard-user {
  --fa: "\f7f3";
}
.fa-child {
  --fa: "\f1ae";
}
.fa-lira-sign {
  --fa: "\f195";
}
.fa-satellite {
  --fa: "\f7bf";
}
.fa-plane-lock {
  --fa: "\e558";
}
.fa-tag {
  --fa: "\f02b";
}
.fa-comment {
  --fa: "\f075";
}
.fa-cake-candles {
  --fa: "\f1fd";
}
.fa-birthday-cake {
  --fa: "\f1fd";
}
.fa-cake {
  --fa: "\f1fd";
}
.fa-envelope {
  --fa: "\f0e0";
}
.fa-angles-up {
  --fa: "\f102";
}
.fa-angle-double-up {
  --fa: "\f102";
}
.fa-paperclip {
  --fa: "\f0c6";
}
.fa-arrow-right-to-city {
  --fa: "\e4b3";
}
.fa-ribbon {
  --fa: "\f4d6";
}
.fa-lungs {
  --fa: "\f604";
}
.fa-arrow-up-9-1 {
  --fa: "\f887";
}
.fa-sort-numeric-up-alt {
  --fa: "\f887";
}
.fa-litecoin-sign {
  --fa: "\e1d3";
}
.fa-border-none {
  --fa: "\f850";
}
.fa-circle-nodes {
  --fa: "\e4e2";
}
.fa-parachute-box {
  --fa: "\f4cd";
}
.fa-indent {
  --fa: "\f03c";
}
.fa-truck-field-un {
  --fa: "\e58e";
}
.fa-hourglass {
  --fa: "\f254";
}
.fa-hourglass-empty {
  --fa: "\f254";
}
.fa-mountain {
  --fa: "\f6fc";
}
.fa-user-doctor {
  --fa: "\f0f0";
}
.fa-user-md {
  --fa: "\f0f0";
}
.fa-circle-info {
  --fa: "\f05a";
}
.fa-info-circle {
  --fa: "\f05a";
}
.fa-cloud-meatball {
  --fa: "\f73b";
}
.fa-camera {
  --fa: "\f030";
}
.fa-camera-alt {
  --fa: "\f030";
}
.fa-square-virus {
  --fa: "\e578";
}
.fa-meteor {
  --fa: "\f753";
}
.fa-car-on {
  --fa: "\e4dd";
}
.fa-sleigh {
  --fa: "\f7cc";
}
.fa-arrow-down-1-9 {
  --fa: "\f162";
}
.fa-sort-numeric-asc {
  --fa: "\f162";
}
.fa-sort-numeric-down {
  --fa: "\f162";
}
.fa-hand-holding-droplet {
  --fa: "\f4c1";
}
.fa-hand-holding-water {
  --fa: "\f4c1";
}
.fa-water {
  --fa: "\f773";
}
.fa-calendar-check {
  --fa: "\f274";
}
.fa-braille {
  --fa: "\f2a1";
}
.fa-prescription-bottle-medical {
  --fa: "\f486";
}
.fa-prescription-bottle-alt {
  --fa: "\f486";
}
.fa-landmark {
  --fa: "\f66f";
}
.fa-truck {
  --fa: "\f0d1";
}
.fa-crosshairs {
  --fa: "\f05b";
}
.fa-person-cane {
  --fa: "\e53c";
}
.fa-tent {
  --fa: "\e57d";
}
.fa-vest-patches {
  --fa: "\e086";
}
.fa-check-double {
  --fa: "\f560";
}
.fa-arrow-down-a-z {
  --fa: "\f15d";
}
.fa-sort-alpha-asc {
  --fa: "\f15d";
}
.fa-sort-alpha-down {
  --fa: "\f15d";
}
.fa-money-bill-wheat {
  --fa: "\e52a";
}
.fa-cookie {
  --fa: "\f563";
}
.fa-arrow-rotate-left {
  --fa: "\f0e2";
}
.fa-arrow-left-rotate {
  --fa: "\f0e2";
}
.fa-arrow-rotate-back {
  --fa: "\f0e2";
}
.fa-arrow-rotate-backward {
  --fa: "\f0e2";
}
.fa-undo {
  --fa: "\f0e2";
}
.fa-hard-drive {
  --fa: "\f0a0";
}
.fa-hdd {
  --fa: "\f0a0";
}
.fa-face-grin-squint-tears {
  --fa: "\f586";
}
.fa-grin-squint-tears {
  --fa: "\f586";
}
.fa-dumbbell {
  --fa: "\f44b";
}
.fa-rectangle-list {
  --fa: "\f022";
}
.fa-list-alt {
  --fa: "\f022";
}
.fa-tarp-droplet {
  --fa: "\e57c";
}
.fa-house-medical-circle-check {
  --fa: "\e511";
}
.fa-person-skiing-nordic {
  --fa: "\f7ca";
}
.fa-skiing-nordic {
  --fa: "\f7ca";
}
.fa-calendar-plus {
  --fa: "\f271";
}
.fa-plane-arrival {
  --fa: "\f5af";
}
.fa-circle-left {
  --fa: "\f359";
}
.fa-arrow-alt-circle-left {
  --fa: "\f359";
}
.fa-train-subway {
  --fa: "\f239";
}
.fa-subway {
  --fa: "\f239";
}
.fa-chart-gantt {
  --fa: "\e0e4";
}
.fa-indian-rupee-sign {
  --fa: "\e1bc";
}
.fa-indian-rupee {
  --fa: "\e1bc";
}
.fa-inr {
  --fa: "\e1bc";
}
.fa-crop-simple {
  --fa: "\f565";
}
.fa-crop-alt {
  --fa: "\f565";
}
.fa-money-bill-1 {
  --fa: "\f3d1";
}
.fa-money-bill-alt {
  --fa: "\f3d1";
}
.fa-left-long {
  --fa: "\f30a";
}
.fa-long-arrow-alt-left {
  --fa: "\f30a";
}
.fa-dna {
  --fa: "\f471";
}
.fa-virus-slash {
  --fa: "\e075";
}
.fa-minus {
  --fa: "\f068";
}
.fa-subtract {
  --fa: "\f068";
}
.fa-chess {
  --fa: "\f439";
}
.fa-arrow-left-long {
  --fa: "\f177";
}
.fa-long-arrow-left {
  --fa: "\f177";
}
.fa-plug-circle-check {
  --fa: "\e55c";
}
.fa-street-view {
  --fa: "\f21d";
}
.fa-franc-sign {
  --fa: "\e18f";
}
.fa-volume-off {
  --fa: "\f026";
}
.fa-hands-asl-interpreting {
  --fa: "\f2a3";
}
.fa-american-sign-language-interpreting {
  --fa: "\f2a3";
}
.fa-asl-interpreting {
  --fa: "\f2a3";
}
.fa-hands-american-sign-language-interpreting {
  --fa: "\f2a3";
}
.fa-gear {
  --fa: "\f013";
}
.fa-cog {
  --fa: "\f013";
}
.fa-droplet-slash {
  --fa: "\f5c7";
}
.fa-tint-slash {
  --fa: "\f5c7";
}
.fa-mosque {
  --fa: "\f678";
}
.fa-mosquito {
  --fa: "\e52b";
}
.fa-star-of-david {
  --fa: "\f69a";
}
.fa-person-military-rifle {
  --fa: "\e54b";
}
.fa-cart-shopping {
  --fa: "\f07a";
}
.fa-shopping-cart {
  --fa: "\f07a";
}
.fa-vials {
  --fa: "\f493";
}
.fa-plug-circle-plus {
  --fa: "\e55f";
}
.fa-place-of-worship {
  --fa: "\f67f";
}
.fa-grip-vertical {
  --fa: "\f58e";
}
.fa-hexagon-nodes {
  --fa: "\e699";
}
.fa-arrow-turn-up {
  --fa: "\f148";
}
.fa-level-up {
  --fa: "\f148";
}
.fa-u {
  --fa: "U";
}
.fa-square-root-variable {
  --fa: "\f698";
}
.fa-square-root-alt {
  --fa: "\f698";
}
.fa-clock {
  --fa: "\f017";
}
.fa-clock-four {
  --fa: "\f017";
}
.fa-backward-step {
  --fa: "\f048";
}
.fa-step-backward {
  --fa: "\f048";
}
.fa-pallet {
  --fa: "\f482";
}
.fa-faucet {
  --fa: "\e005";
}
.fa-baseball-bat-ball {
  --fa: "\f432";
}
.fa-s {
  --fa: "S";
}
.fa-timeline {
  --fa: "\e29c";
}
.fa-keyboard {
  --fa: "\f11c";
}
.fa-caret-down {
  --fa: "\f0d7";
}
.fa-house-chimney-medical {
  --fa: "\f7f2";
}
.fa-clinic-medical {
  --fa: "\f7f2";
}
.fa-temperature-three-quarters {
  --fa: "\f2c8";
}
.fa-temperature-3 {
  --fa: "\f2c8";
}
.fa-thermometer-3 {
  --fa: "\f2c8";
}
.fa-thermometer-three-quarters {
  --fa: "\f2c8";
}
.fa-mobile-screen {
  --fa: "\f3cf";
}
.fa-mobile-android-alt {
  --fa: "\f3cf";
}
.fa-plane-up {
  --fa: "\e22d";
}
.fa-piggy-bank {
  --fa: "\f4d3";
}
.fa-battery-half {
  --fa: "\f242";
}
.fa-battery-3 {
  --fa: "\f242";
}
.fa-mountain-city {
  --fa: "\e52e";
}
.fa-coins {
  --fa: "\f51e";
}
.fa-khanda {
  --fa: "\f66d";
}
.fa-sliders {
  --fa: "\f1de";
}
.fa-sliders-h {
  --fa: "\f1de";
}
.fa-folder-tree {
  --fa: "\f802";
}
.fa-network-wired {
  --fa: "\f6ff";
}
.fa-map-pin {
  --fa: "\f276";
}
.fa-hamsa {
  --fa: "\f665";
}
.fa-cent-sign {
  --fa: "\e3f5";
}
.fa-flask {
  --fa: "\f0c3";
}
.fa-person-pregnant {
  --fa: "\e31e";
}
.fa-wand-sparkles {
  --fa: "\f72b";
}
.fa-ellipsis-vertical {
  --fa: "\f142";
}
.fa-ellipsis-v {
  --fa: "\f142";
}
.fa-ticket {
  --fa: "\f145";
}
.fa-power-off {
  --fa: "\f011";
}
.fa-right-long {
  --fa: "\f30b";
}
.fa-long-arrow-alt-right {
  --fa: "\f30b";
}
.fa-flag-usa {
  --fa: "\f74d";
}
.fa-laptop-file {
  --fa: "\e51d";
}
.fa-tty {
  --fa: "\f1e4";
}
.fa-teletype {
  --fa: "\f1e4";
}
.fa-diagram-next {
  --fa: "\e476";
}
.fa-person-rifle {
  --fa: "\e54e";
}
.fa-house-medical-circle-exclamation {
  --fa: "\e512";
}
.fa-closed-captioning {
  --fa: "\f20a";
}
.fa-person-hiking {
  --fa: "\f6ec";
}
.fa-hiking {
  --fa: "\f6ec";
}
.fa-venus-double {
  --fa: "\f226";
}
.fa-images {
  --fa: "\f302";
}
.fa-calculator {
  --fa: "\f1ec";
}
.fa-people-pulling {
  --fa: "\e535";
}
.fa-n {
  --fa: "N";
}
.fa-cable-car {
  --fa: "\f7da";
}
.fa-tram {
  --fa: "\f7da";
}
.fa-cloud-rain {
  --fa: "\f73d";
}
.fa-building-circle-xmark {
  --fa: "\e4d4";
}
.fa-ship {
  --fa: "\f21a";
}
.fa-arrows-down-to-line {
  --fa: "\e4b8";
}
.fa-download {
  --fa: "\f019";
}
.fa-face-grin {
  --fa: "\f580";
}
.fa-grin {
  --fa: "\f580";
}
.fa-delete-left {
  --fa: "\f55a";
}
.fa-backspace {
  --fa: "\f55a";
}
.fa-eye-dropper {
  --fa: "\f1fb";
}
.fa-eye-dropper-empty {
  --fa: "\f1fb";
}
.fa-eyedropper {
  --fa: "\f1fb";
}
.fa-file-circle-check {
  --fa: "\e5a0";
}
.fa-forward {
  --fa: "\f04e";
}
.fa-mobile {
  --fa: "\f3ce";
}
.fa-mobile-android {
  --fa: "\f3ce";
}
.fa-mobile-phone {
  --fa: "\f3ce";
}
.fa-face-meh {
  --fa: "\f11a";
}
.fa-meh {
  --fa: "\f11a";
}
.fa-align-center {
  --fa: "\f037";
}
.fa-book-skull {
  --fa: "\f6b7";
}
.fa-book-dead {
  --fa: "\f6b7";
}
.fa-id-card {
  --fa: "\f2c2";
}
.fa-drivers-license {
  --fa: "\f2c2";
}
.fa-outdent {
  --fa: "\f03b";
}
.fa-dedent {
  --fa: "\f03b";
}
.fa-heart-circle-exclamation {
  --fa: "\e4fe";
}
.fa-house {
  --fa: "\f015";
}
.fa-home {
  --fa: "\f015";
}
.fa-home-alt {
  --fa: "\f015";
}
.fa-home-lg-alt {
  --fa: "\f015";
}
.fa-calendar-week {
  --fa: "\f784";
}
.fa-laptop-medical {
  --fa: "\f812";
}
.fa-b {
  --fa: "B";
}
.fa-file-medical {
  --fa: "\f477";
}
.fa-dice-one {
  --fa: "\f525";
}
.fa-kiwi-bird {
  --fa: "\f535";
}
.fa-arrow-right-arrow-left {
  --fa: "\f0ec";
}
.fa-exchange {
  --fa: "\f0ec";
}
.fa-rotate-right {
  --fa: "\f2f9";
}
.fa-redo-alt {
  --fa: "\f2f9";
}
.fa-rotate-forward {
  --fa: "\f2f9";
}
.fa-utensils {
  --fa: "\f2e7";
}
.fa-cutlery {
  --fa: "\f2e7";
}
.fa-arrow-up-wide-short {
  --fa: "\f161";
}
.fa-sort-amount-up {
  --fa: "\f161";
}
.fa-mill-sign {
  --fa: "\e1ed";
}
.fa-bowl-rice {
  --fa: "\e2eb";
}
.fa-skull {
  --fa: "\f54c";
}
.fa-tower-broadcast {
  --fa: "\f519";
}
.fa-broadcast-tower {
  --fa: "\f519";
}
.fa-truck-pickup {
  --fa: "\f63c";
}
.fa-up-long {
  --fa: "\f30c";
}
.fa-long-arrow-alt-up {
  --fa: "\f30c";
}
.fa-stop {
  --fa: "\f04d";
}
.fa-code-merge {
  --fa: "\f387";
}
.fa-upload {
  --fa: "\f093";
}
.fa-hurricane {
  --fa: "\f751";
}
.fa-mound {
  --fa: "\e52d";
}
.fa-toilet-portable {
  --fa: "\e583";
}
.fa-compact-disc {
  --fa: "\f51f";
}
.fa-file-arrow-down {
  --fa: "\f56d";
}
.fa-file-download {
  --fa: "\f56d";
}
.fa-caravan {
  --fa: "\f8ff";
}
.fa-shield-cat {
  --fa: "\e572";
}
.fa-bolt {
  --fa: "\f0e7";
}
.fa-zap {
  --fa: "\f0e7";
}
.fa-glass-water {
  --fa: "\e4f4";
}
.fa-oil-well {
  --fa: "\e532";
}
.fa-vault {
  --fa: "\e2c5";
}
.fa-mars {
  --fa: "\f222";
}
.fa-toilet {
  --fa: "\f7d8";
}
.fa-plane-circle-xmark {
  --fa: "\e557";
}
.fa-yen-sign {
  --fa: "\f157";
}
.fa-cny {
  --fa: "\f157";
}
.fa-jpy {
  --fa: "\f157";
}
.fa-rmb {
  --fa: "\f157";
}
.fa-yen {
  --fa: "\f157";
}
.fa-ruble-sign {
  --fa: "\f158";
}
.fa-rouble {
  --fa: "\f158";
}
.fa-rub {
  --fa: "\f158";
}
.fa-ruble {
  --fa: "\f158";
}
.fa-sun {
  --fa: "\f185";
}
.fa-guitar {
  --fa: "\f7a6";
}
.fa-face-laugh-wink {
  --fa: "\f59c";
}
.fa-laugh-wink {
  --fa: "\f59c";
}
.fa-horse-head {
  --fa: "\f7ab";
}
.fa-bore-hole {
  --fa: "\e4c3";
}
.fa-industry {
  --fa: "\f275";
}
.fa-circle-down {
  --fa: "\f358";
}
.fa-arrow-alt-circle-down {
  --fa: "\f358";
}
.fa-arrows-turn-to-dots {
  --fa: "\e4c1";
}
.fa-florin-sign {
  --fa: "\e184";
}
.fa-arrow-down-short-wide {
  --fa: "\f884";
}
.fa-sort-amount-desc {
  --fa: "\f884";
}
.fa-sort-amount-down-alt {
  --fa: "\f884";
}
.fa-less-than {
  --fa: "\<";
}
.fa-angle-down {
  --fa: "\f107";
}
.fa-car-tunnel {
  --fa: "\e4de";
}
.fa-head-side-cough {
  --fa: "\e061";
}
.fa-grip-lines {
  --fa: "\f7a4";
}
.fa-thumbs-down {
  --fa: "\f165";
}
.fa-user-lock {
  --fa: "\f502";
}
.fa-arrow-right-long {
  --fa: "\f178";
}
.fa-long-arrow-right {
  --fa: "\f178";
}
.fa-anchor-circle-xmark {
  --fa: "\e4ac";
}
.fa-ellipsis {
  --fa: "\f141";
}
.fa-ellipsis-h {
  --fa: "\f141";
}
.fa-chess-pawn {
  --fa: "\f443";
}
.fa-kit-medical {
  --fa: "\f479";
}
.fa-first-aid {
  --fa: "\f479";
}
.fa-person-through-window {
  --fa: "\e5a9";
}
.fa-toolbox {
  --fa: "\f552";
}
.fa-hands-holding-circle {
  --fa: "\e4fb";
}
.fa-bug {
  --fa: "\f188";
}
.fa-credit-card {
  --fa: "\f09d";
}
.fa-credit-card-alt {
  --fa: "\f09d";
}
.fa-car {
  --fa: "\f1b9";
}
.fa-automobile {
  --fa: "\f1b9";
}
.fa-hand-holding-hand {
  --fa: "\e4f7";
}
.fa-book-open-reader {
  --fa: "\f5da";
}
.fa-book-reader {
  --fa: "\f5da";
}
.fa-mountain-sun {
  --fa: "\e52f";
}
.fa-arrows-left-right-to-line {
  --fa: "\e4ba";
}
.fa-dice-d20 {
  --fa: "\f6cf";
}
.fa-truck-droplet {
  --fa: "\e58c";
}
.fa-file-circle-xmark {
  --fa: "\e5a1";
}
.fa-temperature-arrow-up {
  --fa: "\e040";
}
.fa-temperature-up {
  --fa: "\e040";
}
.fa-medal {
  --fa: "\f5a2";
}
.fa-bed {
  --fa: "\f236";
}
.fa-square-h {
  --fa: "\f0fd";
}
.fa-h-square {
  --fa: "\f0fd";
}
.fa-podcast {
  --fa: "\f2ce";
}
.fa-temperature-full {
  --fa: "\f2c7";
}
.fa-temperature-4 {
  --fa: "\f2c7";
}
.fa-thermometer-4 {
  --fa: "\f2c7";
}
.fa-thermometer-full {
  --fa: "\f2c7";
}
.fa-bell {
  --fa: "\f0f3";
}
.fa-superscript {
  --fa: "\f12b";
}
.fa-plug-circle-xmark {
  --fa: "\e560";
}
.fa-star-of-life {
  --fa: "\f621";
}
.fa-phone-slash {
  --fa: "\f3dd";
}
.fa-paint-roller {
  --fa: "\f5aa";
}
.fa-handshake-angle {
  --fa: "\f4c4";
}
.fa-hands-helping {
  --fa: "\f4c4";
}
.fa-location-dot {
  --fa: "\f3c5";
}
.fa-map-marker-alt {
  --fa: "\f3c5";
}
.fa-file {
  --fa: "\f15b";
}
.fa-greater-than {
  --fa: "\>";
}
.fa-person-swimming {
  --fa: "\f5c4";
}
.fa-swimmer {
  --fa: "\f5c4";
}
.fa-arrow-down {
  --fa: "\f063";
}
.fa-droplet {
  --fa: "\f043";
}
.fa-tint {
  --fa: "\f043";
}
.fa-eraser {
  --fa: "\f12d";
}
.fa-earth-americas {
  --fa: "\f57d";
}
.fa-earth {
  --fa: "\f57d";
}
.fa-earth-america {
  --fa: "\f57d";
}
.fa-globe-americas {
  --fa: "\f57d";
}
.fa-person-burst {
  --fa: "\e53b";
}
.fa-dove {
  --fa: "\f4ba";
}
.fa-battery-empty {
  --fa: "\f244";
}
.fa-battery-0 {
  --fa: "\f244";
}
.fa-socks {
  --fa: "\f696";
}
.fa-inbox {
  --fa: "\f01c";
}
.fa-section {
  --fa: "\e447";
}
.fa-gauge-high {
  --fa: "\f625";
}
.fa-tachometer-alt {
  --fa: "\f625";
}
.fa-tachometer-alt-fast {
  --fa: "\f625";
}
.fa-envelope-open-text {
  --fa: "\f658";
}
.fa-hospital {
  --fa: "\f0f8";
}
.fa-hospital-alt {
  --fa: "\f0f8";
}
.fa-hospital-wide {
  --fa: "\f0f8";
}
.fa-wine-bottle {
  --fa: "\f72f";
}
.fa-chess-rook {
  --fa: "\f447";
}
.fa-bars-staggered {
  --fa: "\f550";
}
.fa-reorder {
  --fa: "\f550";
}
.fa-stream {
  --fa: "\f550";
}
.fa-dharmachakra {
  --fa: "\f655";
}
.fa-hotdog {
  --fa: "\f80f";
}
.fa-person-walking-with-cane {
  --fa: "\f29d";
}
.fa-blind {
  --fa: "\f29d";
}
.fa-drum {
  --fa: "\f569";
}
.fa-ice-cream {
  --fa: "\f810";
}
.fa-heart-circle-bolt {
  --fa: "\e4fc";
}
.fa-fax {
  --fa: "\f1ac";
}
.fa-paragraph {
  --fa: "\f1dd";
}
.fa-check-to-slot {
  --fa: "\f772";
}
.fa-vote-yea {
  --fa: "\f772";
}
.fa-star-half {
  --fa: "\f089";
}
.fa-boxes-stacked {
  --fa: "\f468";
}
.fa-boxes {
  --fa: "\f468";
}
.fa-boxes-alt {
  --fa: "\f468";
}
.fa-link {
  --fa: "\f0c1";
}
.fa-chain {
  --fa: "\f0c1";
}
.fa-ear-listen {
  --fa: "\f2a2";
}
.fa-assistive-listening-systems {
  --fa: "\f2a2";
}
.fa-tree-city {
  --fa: "\e587";
}
.fa-play {
  --fa: "\f04b";
}
.fa-font {
  --fa: "\f031";
}
.fa-table-cells-row-lock {
  --fa: "\e67a";
}
.fa-rupiah-sign {
  --fa: "\e23d";
}
.fa-magnifying-glass {
  --fa: "\f002";
}
.fa-search {
  --fa: "\f002";
}
.fa-table-tennis-paddle-ball {
  --fa: "\f45d";
}
.fa-ping-pong-paddle-ball {
  --fa: "\f45d";
}
.fa-table-tennis {
  --fa: "\f45d";
}
.fa-person-dots-from-line {
  --fa: "\f470";
}
.fa-diagnoses {
  --fa: "\f470";
}
.fa-trash-can-arrow-up {
  --fa: "\f82a";
}
.fa-trash-restore-alt {
  --fa: "\f82a";
}
.fa-naira-sign {
  --fa: "\e1f6";
}
.fa-cart-arrow-down {
  --fa: "\f218";
}
.fa-walkie-talkie {
  --fa: "\f8ef";
}
.fa-file-pen {
  --fa: "\f31c";
}
.fa-file-edit {
  --fa: "\f31c";
}
.fa-receipt {
  --fa: "\f543";
}
.fa-square-pen {
  --fa: "\f14b";
}
.fa-pen-square {
  --fa: "\f14b";
}
.fa-pencil-square {
  --fa: "\f14b";
}
.fa-suitcase-rolling {
  --fa: "\f5c1";
}
.fa-person-circle-exclamation {
  --fa: "\e53f";
}
.fa-chevron-down {
  --fa: "\f078";
}
.fa-battery-full {
  --fa: "\f240";
}
.fa-battery {
  --fa: "\f240";
}
.fa-battery-5 {
  --fa: "\f240";
}
.fa-skull-crossbones {
  --fa: "\f714";
}
.fa-code-compare {
  --fa: "\e13a";
}
.fa-list-ul {
  --fa: "\f0ca";
}
.fa-list-dots {
  --fa: "\f0ca";
}
.fa-school-lock {
  --fa: "\e56f";
}
.fa-tower-cell {
  --fa: "\e585";
}
.fa-down-long {
  --fa: "\f309";
}
.fa-long-arrow-alt-down {
  --fa: "\f309";
}
.fa-ranking-star {
  --fa: "\e561";
}
.fa-chess-king {
  --fa: "\f43f";
}
.fa-person-harassing {
  --fa: "\e549";
}
.fa-brazilian-real-sign {
  --fa: "\e46c";
}
.fa-landmark-dome {
  --fa: "\f752";
}
.fa-landmark-alt {
  --fa: "\f752";
}
.fa-arrow-up {
  --fa: "\f062";
}
.fa-tv {
  --fa: "\f26c";
}
.fa-television {
  --fa: "\f26c";
}
.fa-tv-alt {
  --fa: "\f26c";
}
.fa-shrimp {
  --fa: "\e448";
}
.fa-list-check {
  --fa: "\f0ae";
}
.fa-tasks {
  --fa: "\f0ae";
}
.fa-jug-detergent {
  --fa: "\e519";
}
.fa-circle-user {
  --fa: "\f2bd";
}
.fa-user-circle {
  --fa: "\f2bd";
}
.fa-user-shield {
  --fa: "\f505";
}
.fa-wind {
  --fa: "\f72e";
}
.fa-car-burst {
  --fa: "\f5e1";
}
.fa-car-crash {
  --fa: "\f5e1";
}
.fa-y {
  --fa: "Y";
}
.fa-person-snowboarding {
  --fa: "\f7ce";
}
.fa-snowboarding {
  --fa: "\f7ce";
}
.fa-truck-fast {
  --fa: "\f48b";
}
.fa-shipping-fast {
  --fa: "\f48b";
}
.fa-fish {
  --fa: "\f578";
}
.fa-user-graduate {
  --fa: "\f501";
}
.fa-circle-half-stroke {
  --fa: "\f042";
}
.fa-adjust {
  --fa: "\f042";
}
.fa-clapperboard {
  --fa: "\e131";
}
.fa-circle-radiation {
  --fa: "\f7ba";
}
.fa-radiation-alt {
  --fa: "\f7ba";
}
.fa-baseball {
  --fa: "\f433";
}
.fa-baseball-ball {
  --fa: "\f433";
}
.fa-jet-fighter-up {
  --fa: "\e518";
}
.fa-diagram-project {
  --fa: "\f542";
}
.fa-project-diagram {
  --fa: "\f542";
}
.fa-copy {
  --fa: "\f0c5";
}
.fa-volume-xmark {
  --fa: "\f6a9";
}
.fa-volume-mute {
  --fa: "\f6a9";
}
.fa-volume-times {
  --fa: "\f6a9";
}
.fa-hand-sparkles {
  --fa: "\e05d";
}
.fa-grip {
  --fa: "\f58d";
}
.fa-grip-horizontal {
  --fa: "\f58d";
}
.fa-share-from-square {
  --fa: "\f14d";
}
.fa-share-square {
  --fa: "\f14d";
}
.fa-child-combatant {
  --fa: "\e4e0";
}
.fa-child-rifle {
  --fa: "\e4e0";
}
.fa-gun {
  --fa: "\e19b";
}
.fa-square-phone {
  --fa: "\f098";
}
.fa-phone-square {
  --fa: "\f098";
}
.fa-plus {
  --fa: "\+";
}
.fa-add {
  --fa: "\+";
}
.fa-expand {
  --fa: "\f065";
}
.fa-computer {
  --fa: "\e4e5";
}
.fa-xmark {
  --fa: "\f00d";
}
.fa-close {
  --fa: "\f00d";
}
.fa-multiply {
  --fa: "\f00d";
}
.fa-remove {
  --fa: "\f00d";
}
.fa-times {
  --fa: "\f00d";
}
.fa-arrows-up-down-left-right {
  --fa: "\f047";
}
.fa-arrows {
  --fa: "\f047";
}
.fa-chalkboard-user {
  --fa: "\f51c";
}
.fa-chalkboard-teacher {
  --fa: "\f51c";
}
.fa-peso-sign {
  --fa: "\e222";
}
.fa-building-shield {
  --fa: "\e4d8";
}
.fa-baby {
  --fa: "\f77c";
}
.fa-users-line {
  --fa: "\e592";
}
.fa-quote-left {
  --fa: "\f10d";
}
.fa-quote-left-alt {
  --fa: "\f10d";
}
.fa-tractor {
  --fa: "\f722";
}
.fa-trash-arrow-up {
  --fa: "\f829";
}
.fa-trash-restore {
  --fa: "\f829";
}
.fa-arrow-down-up-lock {
  --fa: "\e4b0";
}
.fa-lines-leaning {
  --fa: "\e51e";
}
.fa-ruler-combined {
  --fa: "\f546";
}
.fa-copyright {
  --fa: "\f1f9";
}
.fa-equals {
  --fa: "\=";
}
.fa-blender {
  --fa: "\f517";
}
.fa-teeth {
  --fa: "\f62e";
}
.fa-shekel-sign {
  --fa: "\f20b";
}
.fa-ils {
  --fa: "\f20b";
}
.fa-shekel {
  --fa: "\f20b";
}
.fa-sheqel {
  --fa: "\f20b";
}
.fa-sheqel-sign {
  --fa: "\f20b";
}
.fa-map {
  --fa: "\f279";
}
.fa-rocket {
  --fa: "\f135";
}
.fa-photo-film {
  --fa: "\f87c";
}
.fa-photo-video {
  --fa: "\f87c";
}
.fa-folder-minus {
  --fa: "\f65d";
}
.fa-hexagon-nodes-bolt {
  --fa: "\e69a";
}
.fa-store {
  --fa: "\f54e";
}
.fa-arrow-trend-up {
  --fa: "\e098";
}
.fa-plug-circle-minus {
  --fa: "\e55e";
}
.fa-sign-hanging {
  --fa: "\f4d9";
}
.fa-sign {
  --fa: "\f4d9";
}
.fa-bezier-curve {
  --fa: "\f55b";
}
.fa-bell-slash {
  --fa: "\f1f6";
}
.fa-tablet {
  --fa: "\f3fb";
}
.fa-tablet-android {
  --fa: "\f3fb";
}
.fa-school-flag {
  --fa: "\e56e";
}
.fa-fill {
  --fa: "\f575";
}
.fa-angle-up {
  --fa: "\f106";
}
.fa-drumstick-bite {
  --fa: "\f6d7";
}
.fa-holly-berry {
  --fa: "\f7aa";
}
.fa-chevron-left {
  --fa: "\f053";
}
.fa-bacteria {
  --fa: "\e059";
}
.fa-hand-lizard {
  --fa: "\f258";
}
.fa-notdef {
  --fa: "\e1fe";
}
.fa-disease {
  --fa: "\f7fa";
}
.fa-briefcase-medical {
  --fa: "\f469";
}
.fa-genderless {
  --fa: "\f22d";
}
.fa-chevron-right {
  --fa: "\f054";
}
.fa-retweet {
  --fa: "\f079";
}
.fa-car-rear {
  --fa: "\f5de";
}
.fa-car-alt {
  --fa: "\f5de";
}
.fa-pump-soap {
  --fa: "\e06b";
}
.fa-video-slash {
  --fa: "\f4e2";
}
.fa-battery-quarter {
  --fa: "\f243";
}
.fa-battery-2 {
  --fa: "\f243";
}
.fa-radio {
  --fa: "\f8d7";
}
.fa-baby-carriage {
  --fa: "\f77d";
}
.fa-carriage-baby {
  --fa: "\f77d";
}
.fa-traffic-light {
  --fa: "\f637";
}
.fa-thermometer {
  --fa: "\f491";
}
.fa-vr-cardboard {
  --fa: "\f729";
}
.fa-hand-middle-finger {
  --fa: "\f806";
}
.fa-percent {
  --fa: "\%";
}
.fa-percentage {
  --fa: "\%";
}
.fa-truck-moving {
  --fa: "\f4df";
}
.fa-glass-water-droplet {
  --fa: "\e4f5";
}
.fa-display {
  --fa: "\e163";
}
.fa-face-smile {
  --fa: "\f118";
}
.fa-smile {
  --fa: "\f118";
}
.fa-thumbtack {
  --fa: "\f08d";
}
.fa-thumb-tack {
  --fa: "\f08d";
}
.fa-trophy {
  --fa: "\f091";
}
.fa-person-praying {
  --fa: "\f683";
}
.fa-pray {
  --fa: "\f683";
}
.fa-hammer {
  --fa: "\f6e3";
}
.fa-hand-peace {
  --fa: "\f25b";
}
.fa-rotate {
  --fa: "\f2f1";
}
.fa-sync-alt {
  --fa: "\f2f1";
}
.fa-spinner {
  --fa: "\f110";
}
.fa-robot {
  --fa: "\f544";
}
.fa-peace {
  --fa: "\f67c";
}
.fa-gears {
  --fa: "\f085";
}
.fa-cogs {
  --fa: "\f085";
}
.fa-warehouse {
  --fa: "\f494";
}
.fa-arrow-up-right-dots {
  --fa: "\e4b7";
}
.fa-splotch {
  --fa: "\f5bc";
}
.fa-face-grin-hearts {
  --fa: "\f584";
}
.fa-grin-hearts {
  --fa: "\f584";
}
.fa-dice-four {
  --fa: "\f524";
}
.fa-sim-card {
  --fa: "\f7c4";
}
.fa-transgender {
  --fa: "\f225";
}
.fa-transgender-alt {
  --fa: "\f225";
}
.fa-mercury {
  --fa: "\f223";
}
.fa-arrow-turn-down {
  --fa: "\f149";
}
.fa-level-down {
  --fa: "\f149";
}
.fa-person-falling-burst {
  --fa: "\e547";
}
.fa-award {
  --fa: "\f559";
}
.fa-ticket-simple {
  --fa: "\f3ff";
}
.fa-ticket-alt {
  --fa: "\f3ff";
}
.fa-building {
  --fa: "\f1ad";
}
.fa-angles-left {
  --fa: "\f100";
}
.fa-angle-double-left {
  --fa: "\f100";
}
.fa-qrcode {
  --fa: "\f029";
}
.fa-clock-rotate-left {
  --fa: "\f1da";
}
.fa-history {
  --fa: "\f1da";
}
.fa-face-grin-beam-sweat {
  --fa: "\f583";
}
.fa-grin-beam-sweat {
  --fa: "\f583";
}
.fa-file-export {
  --fa: "\f56e";
}
.fa-arrow-right-from-file {
  --fa: "\f56e";
}
.fa-shield {
  --fa: "\f132";
}
.fa-shield-blank {
  --fa: "\f132";
}
.fa-arrow-up-short-wide {
  --fa: "\f885";
}
.fa-sort-amount-up-alt {
  --fa: "\f885";
}
.fa-comment-nodes {
  --fa: "\e696";
}
.fa-house-medical {
  --fa: "\e3b2";
}
.fa-golf-ball-tee {
  --fa: "\f450";
}
.fa-golf-ball {
  --fa: "\f450";
}
.fa-circle-chevron-left {
  --fa: "\f137";
}
.fa-chevron-circle-left {
  --fa: "\f137";
}
.fa-house-chimney-window {
  --fa: "\e00d";
}
.fa-pen-nib {
  --fa: "\f5ad";
}
.fa-tent-arrow-turn-left {
  --fa: "\e580";
}
.fa-tents {
  --fa: "\e582";
}
.fa-wand-magic {
  --fa: "\f0d0";
}
.fa-magic {
  --fa: "\f0d0";
}
.fa-dog {
  --fa: "\f6d3";
}
.fa-carrot {
  --fa: "\f787";
}
.fa-moon {
  --fa: "\f186";
}
.fa-wine-glass-empty {
  --fa: "\f5ce";
}
.fa-wine-glass-alt {
  --fa: "\f5ce";
}
.fa-cheese {
  --fa: "\f7ef";
}
.fa-yin-yang {
  --fa: "\f6ad";
}
.fa-music {
  --fa: "\f001";
}
.fa-code-commit {
  --fa: "\f386";
}
.fa-temperature-low {
  --fa: "\f76b";
}
.fa-person-biking {
  --fa: "\f84a";
}
.fa-biking {
  --fa: "\f84a";
}
.fa-broom {
  --fa: "\f51a";
}
.fa-shield-heart {
  --fa: "\e574";
}
.fa-gopuram {
  --fa: "\f664";
}
.fa-earth-oceania {
  --fa: "\e47b";
}
.fa-globe-oceania {
  --fa: "\e47b";
}
.fa-square-xmark {
  --fa: "\f2d3";
}
.fa-times-square {
  --fa: "\f2d3";
}
.fa-xmark-square {
  --fa: "\f2d3";
}
.fa-hashtag {
  --fa: "\#";
}
.fa-up-right-and-down-left-from-center {
  --fa: "\f424";
}
.fa-expand-alt {
  --fa: "\f424";
}
.fa-oil-can {
  --fa: "\f613";
}
.fa-t {
  --fa: "T";
}
.fa-hippo {
  --fa: "\f6ed";
}
.fa-chart-column {
  --fa: "\e0e3";
}
.fa-infinity {
  --fa: "\f534";
}
.fa-vial-circle-check {
  --fa: "\e596";
}
.fa-person-arrow-down-to-line {
  --fa: "\e538";
}
.fa-voicemail {
  --fa: "\f897";
}
.fa-fan {
  --fa: "\f863";
}
.fa-person-walking-luggage {
  --fa: "\e554";
}
.fa-up-down {
  --fa: "\f338";
}
.fa-arrows-alt-v {
  --fa: "\f338";
}
.fa-cloud-moon-rain {
  --fa: "\f73c";
}
.fa-calendar {
  --fa: "\f133";
}
.fa-trailer {
  --fa: "\e041";
}
.fa-bahai {
  --fa: "\f666";
}
.fa-haykal {
  --fa: "\f666";
}
.fa-sd-card {
  --fa: "\f7c2";
}
.fa-dragon {
  --fa: "\f6d5";
}
.fa-shoe-prints {
  --fa: "\f54b";
}
.fa-circle-plus {
  --fa: "\f055";
}
.fa-plus-circle {
  --fa: "\f055";
}
.fa-face-grin-tongue-wink {
  --fa: "\f58b";
}
.fa-grin-tongue-wink {
  --fa: "\f58b";
}
.fa-hand-holding {
  --fa: "\f4bd";
}
.fa-plug-circle-exclamation {
  --fa: "\e55d";
}
.fa-link-slash {
  --fa: "\f127";
}
.fa-chain-broken {
  --fa: "\f127";
}
.fa-chain-slash {
  --fa: "\f127";
}
.fa-unlink {
  --fa: "\f127";
}
.fa-clone {
  --fa: "\f24d";
}
.fa-person-walking-arrow-loop-left {
  --fa: "\e551";
}
.fa-arrow-up-z-a {
  --fa: "\f882";
}
.fa-sort-alpha-up-alt {
  --fa: "\f882";
}
.fa-fire-flame-curved {
  --fa: "\f7e4";
}
.fa-fire-alt {
  --fa: "\f7e4";
}
.fa-tornado {
  --fa: "\f76f";
}
.fa-file-circle-plus {
  --fa: "\e494";
}
.fa-book-quran {
  --fa: "\f687";
}
.fa-quran {
  --fa: "\f687";
}
.fa-anchor {
  --fa: "\f13d";
}
.fa-border-all {
  --fa: "\f84c";
}
.fa-face-angry {
  --fa: "\f556";
}
.fa-angry {
  --fa: "\f556";
}
.fa-cookie-bite {
  --fa: "\f564";
}
.fa-arrow-trend-down {
  --fa: "\e097";
}
.fa-rss {
  --fa: "\f09e";
}
.fa-feed {
  --fa: "\f09e";
}
.fa-draw-polygon {
  --fa: "\f5ee";
}
.fa-scale-balanced {
  --fa: "\f24e";
}
.fa-balance-scale {
  --fa: "\f24e";
}
.fa-gauge-simple-high {
  --fa: "\f62a";
}
.fa-tachometer {
  --fa: "\f62a";
}
.fa-tachometer-fast {
  --fa: "\f62a";
}
.fa-shower {
  --fa: "\f2cc";
}
.fa-desktop {
  --fa: "\f390";
}
.fa-desktop-alt {
  --fa: "\f390";
}
.fa-m {
  --fa: "M";
}
.fa-table-list {
  --fa: "\f00b";
}
.fa-th-list {
  --fa: "\f00b";
}
.fa-comment-sms {
  --fa: "\f7cd";
}
.fa-sms {
  --fa: "\f7cd";
}
.fa-book {
  --fa: "\f02d";
}
.fa-user-plus {
  --fa: "\f234";
}
.fa-check {
  --fa: "\f00c";
}
.fa-battery-three-quarters {
  --fa: "\f241";
}
.fa-battery-4 {
  --fa: "\f241";
}
.fa-house-circle-check {
  --fa: "\e509";
}
.fa-angle-left {
  --fa: "\f104";
}
.fa-diagram-successor {
  --fa: "\e47a";
}
.fa-truck-arrow-right {
  --fa: "\e58b";
}
.fa-arrows-split-up-and-left {
  --fa: "\e4bc";
}
.fa-hand-fist {
  --fa: "\f6de";
}
.fa-fist-raised {
  --fa: "\f6de";
}
.fa-cloud-moon {
  --fa: "\f6c3";
}
.fa-briefcase {
  --fa: "\f0b1";
}
.fa-person-falling {
  --fa: "\e546";
}
.fa-image-portrait {
  --fa: "\f3e0";
}
.fa-portrait {
  --fa: "\f3e0";
}
.fa-user-tag {
  --fa: "\f507";
}
.fa-rug {
  --fa: "\e569";
}
.fa-earth-europe {
  --fa: "\f7a2";
}
.fa-globe-europe {
  --fa: "\f7a2";
}
.fa-cart-flatbed-suitcase {
  --fa: "\f59d";
}
.fa-luggage-cart {
  --fa: "\f59d";
}
.fa-rectangle-xmark {
  --fa: "\f410";
}
.fa-rectangle-times {
  --fa: "\f410";
}
.fa-times-rectangle {
  --fa: "\f410";
}
.fa-window-close {
  --fa: "\f410";
}
.fa-baht-sign {
  --fa: "\e0ac";
}
.fa-book-open {
  --fa: "\f518";
}
.fa-book-journal-whills {
  --fa: "\f66a";
}
.fa-journal-whills {
  --fa: "\f66a";
}
.fa-handcuffs {
  --fa: "\e4f8";
}
.fa-triangle-exclamation {
  --fa: "\f071";
}
.fa-exclamation-triangle {
  --fa: "\f071";
}
.fa-warning {
  --fa: "\f071";
}
.fa-database {
  --fa: "\f1c0";
}
.fa-share {
  --fa: "\f064";
}
.fa-mail-forward {
  --fa: "\f064";
}
.fa-bottle-droplet {
  --fa: "\e4c4";
}
.fa-mask-face {
  --fa: "\e1d7";
}
.fa-hill-rockslide {
  --fa: "\e508";
}
.fa-right-left {
  --fa: "\f362";
}
.fa-exchange-alt {
  --fa: "\f362";
}
.fa-paper-plane {
  --fa: "\f1d8";
}
.fa-road-circle-exclamation {
  --fa: "\e565";
}
.fa-dungeon {
  --fa: "\f6d9";
}
.fa-align-right {
  --fa: "\f038";
}
.fa-money-bill-1-wave {
  --fa: "\f53b";
}
.fa-money-bill-wave-alt {
  --fa: "\f53b";
}
.fa-life-ring {
  --fa: "\f1cd";
}
.fa-hands {
  --fa: "\f2a7";
}
.fa-sign-language {
  --fa: "\f2a7";
}
.fa-signing {
  --fa: "\f2a7";
}
.fa-calendar-day {
  --fa: "\f783";
}
.fa-water-ladder {
  --fa: "\f5c5";
}
.fa-ladder-water {
  --fa: "\f5c5";
}
.fa-swimming-pool {
  --fa: "\f5c5";
}
.fa-arrows-up-down {
  --fa: "\f07d";
}
.fa-arrows-v {
  --fa: "\f07d";
}
.fa-face-grimace {
  --fa: "\f57f";
}
.fa-grimace {
  --fa: "\f57f";
}
.fa-wheelchair-move {
  --fa: "\e2ce";
}
.fa-wheelchair-alt {
  --fa: "\e2ce";
}
.fa-turn-down {
  --fa: "\f3be";
}
.fa-level-down-alt {
  --fa: "\f3be";
}
.fa-person-walking-arrow-right {
  --fa: "\e552";
}
.fa-square-envelope {
  --fa: "\f199";
}
.fa-envelope-square {
  --fa: "\f199";
}
.fa-dice {
  --fa: "\f522";
}
.fa-bowling-ball {
  --fa: "\f436";
}
.fa-brain {
  --fa: "\f5dc";
}
.fa-bandage {
  --fa: "\f462";
}
.fa-band-aid {
  --fa: "\f462";
}
.fa-calendar-minus {
  --fa: "\f272";
}
.fa-circle-xmark {
  --fa: "\f057";
}
.fa-times-circle {
  --fa: "\f057";
}
.fa-xmark-circle {
  --fa: "\f057";
}
.fa-gifts {
  --fa: "\f79c";
}
.fa-hotel {
  --fa: "\f594";
}
.fa-earth-asia {
  --fa: "\f57e";
}
.fa-globe-asia {
  --fa: "\f57e";
}
.fa-id-card-clip {
  --fa: "\f47f";
}
.fa-id-card-alt {
  --fa: "\f47f";
}
.fa-magnifying-glass-plus {
  --fa: "\f00e";
}
.fa-search-plus {
  --fa: "\f00e";
}
.fa-thumbs-up {
  --fa: "\f164";
}
.fa-user-clock {
  --fa: "\f4fd";
}
.fa-hand-dots {
  --fa: "\f461";
}
.fa-allergies {
  --fa: "\f461";
}
.fa-file-invoice {
  --fa: "\f570";
}
.fa-window-minimize {
  --fa: "\f2d1";
}
.fa-mug-saucer {
  --fa: "\f0f4";
}
.fa-coffee {
  --fa: "\f0f4";
}
.fa-brush {
  --fa: "\f55d";
}
.fa-file-half-dashed {
  --fa: "\e698";
}
.fa-mask {
  --fa: "\f6fa";
}
.fa-magnifying-glass-minus {
  --fa: "\f010";
}
.fa-search-minus {
  --fa: "\f010";
}
.fa-ruler-vertical {
  --fa: "\f548";
}
.fa-user-large {
  --fa: "\f406";
}
.fa-user-alt {
  --fa: "\f406";
}
.fa-train-tram {
  --fa: "\e5b4";
}
.fa-user-nurse {
  --fa: "\f82f";
}
.fa-syringe {
  --fa: "\f48e";
}
.fa-cloud-sun {
  --fa: "\f6c4";
}
.fa-stopwatch-20 {
  --fa: "\e06f";
}
.fa-square-full {
  --fa: "\f45c";
}
.fa-magnet {
  --fa: "\f076";
}
.fa-jar {
  --fa: "\e516";
}
.fa-note-sticky {
  --fa: "\f249";
}
.fa-sticky-note {
  --fa: "\f249";
}
.fa-bug-slash {
  --fa: "\e490";
}
.fa-arrow-up-from-water-pump {
  --fa: "\e4b6";
}
.fa-bone {
  --fa: "\f5d7";
}
.fa-table-cells-row-unlock {
  --fa: "\e691";
}
.fa-user-injured {
  --fa: "\f728";
}
.fa-face-sad-tear {
  --fa: "\f5b4";
}
.fa-sad-tear {
  --fa: "\f5b4";
}
.fa-plane {
  --fa: "\f072";
}
.fa-tent-arrows-down {
  --fa: "\e581";
}
.fa-exclamation {
  --fa: "\!";
}
.fa-arrows-spin {
  --fa: "\e4bb";
}
.fa-print {
  --fa: "\f02f";
}
.fa-turkish-lira-sign {
  --fa: "\e2bb";
}
.fa-try {
  --fa: "\e2bb";
}
.fa-turkish-lira {
  --fa: "\e2bb";
}
.fa-dollar-sign {
  --fa: "\$";
}
.fa-dollar {
  --fa: "\$";
}
.fa-usd {
  --fa: "\$";
}
.fa-x {
  --fa: "X";
}
.fa-magnifying-glass-dollar {
  --fa: "\f688";
}
.fa-search-dollar {
  --fa: "\f688";
}
.fa-users-gear {
  --fa: "\f509";
}
.fa-users-cog {
  --fa: "\f509";
}
.fa-person-military-pointing {
  --fa: "\e54a";
}
.fa-building-columns {
  --fa: "\f19c";
}
.fa-bank {
  --fa: "\f19c";
}
.fa-institution {
  --fa: "\f19c";
}
.fa-museum {
  --fa: "\f19c";
}
.fa-university {
  --fa: "\f19c";
}
.fa-umbrella {
  --fa: "\f0e9";
}
.fa-trowel {
  --fa: "\e589";
}
.fa-d {
  --fa: "D";
}
.fa-stapler {
  --fa: "\e5af";
}
.fa-masks-theater {
  --fa: "\f630";
}
.fa-theater-masks {
  --fa: "\f630";
}
.fa-kip-sign {
  --fa: "\e1c4";
}
.fa-hand-point-left {
  --fa: "\f0a5";
}
.fa-handshake-simple {
  --fa: "\f4c6";
}
.fa-handshake-alt {
  --fa: "\f4c6";
}
.fa-jet-fighter {
  --fa: "\f0fb";
}
.fa-fighter-jet {
  --fa: "\f0fb";
}
.fa-square-share-nodes {
  --fa: "\f1e1";
}
.fa-share-alt-square {
  --fa: "\f1e1";
}
.fa-barcode {
  --fa: "\f02a";
}
.fa-plus-minus {
  --fa: "\e43c";
}
.fa-video {
  --fa: "\f03d";
}
.fa-video-camera {
  --fa: "\f03d";
}
.fa-graduation-cap {
  --fa: "\f19d";
}
.fa-mortar-board {
  --fa: "\f19d";
}
.fa-hand-holding-medical {
  --fa: "\e05c";
}
.fa-person-circle-check {
  --fa: "\e53e";
}
.fa-turn-up {
  --fa: "\f3bf";
}
.fa-level-up-alt {
  --fa: "\f3bf";
}
.sr-only, body.application form .label-sr-only label,
.fa-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.sr-only-focusable:not(:focus),
.fa-sr-only-focusable:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-classic: "Font Awesome 6 Free";
  --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Free";
}
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/assets/webfonts/fa-solid-900-64214b0a6635e69b2722c690f29506337eccbc40c088f7f5bc4e42b361d162a8.woff2) format("woff2"), url(/assets/webfonts/fa-solid-900-44ef3d6557f63579b379a863e53cc44a21b5dca68bea163842cf2f88741b53fc.ttf) format("truetype");
}
.fas,
.fa-solid {
  font-weight: 900;
}
/*!
 * Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 * Copyright 2024 Fonticons, Inc.
 */
:root, :host {
  --fa-style-family-brands: "Font Awesome 6 Brands";
  --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/assets/webfonts/fa-brands-400-1f56bc1732fed207bf092be076fd531aa7e15e8af32fd4ce2e98ef278d385bac.woff2) format("woff2"), url(/assets/webfonts/fa-brands-400-89694cccd89936fa505b71253427335d580a5989a0e3a614d87a934b58b0e2a8.ttf) format("truetype");
}
.fab,
.fa-brands {
  font-weight: 400;
}
.fa-monero {
  --fa: "\f3d0";
}
.fa-hooli {
  --fa: "\f427";
}
.fa-yelp {
  --fa: "\f1e9";
}
.fa-cc-visa {
  --fa: "\f1f0";
}
.fa-lastfm {
  --fa: "\f202";
}
.fa-shopware {
  --fa: "\f5b5";
}
.fa-creative-commons-nc {
  --fa: "\f4e8";
}
.fa-aws {
  --fa: "\f375";
}
.fa-redhat {
  --fa: "\f7bc";
}
.fa-yoast {
  --fa: "\f2b1";
}
.fa-cloudflare {
  --fa: "\e07d";
}
.fa-ups {
  --fa: "\f7e0";
}
.fa-pixiv {
  --fa: "\e640";
}
.fa-wpexplorer {
  --fa: "\f2de";
}
.fa-dyalog {
  --fa: "\f399";
}
.fa-bity {
  --fa: "\f37a";
}
.fa-stackpath {
  --fa: "\f842";
}
.fa-buysellads {
  --fa: "\f20d";
}
.fa-first-order {
  --fa: "\f2b0";
}
.fa-modx {
  --fa: "\f285";
}
.fa-guilded {
  --fa: "\e07e";
}
.fa-vnv {
  --fa: "\f40b";
}
.fa-square-js {
  --fa: "\f3b9";
}
.fa-js-square {
  --fa: "\f3b9";
}
.fa-microsoft {
  --fa: "\f3ca";
}
.fa-qq {
  --fa: "\f1d6";
}
.fa-orcid {
  --fa: "\f8d2";
}
.fa-java {
  --fa: "\f4e4";
}
.fa-invision {
  --fa: "\f7b0";
}
.fa-creative-commons-pd-alt {
  --fa: "\f4ed";
}
.fa-centercode {
  --fa: "\f380";
}
.fa-glide-g {
  --fa: "\f2a6";
}
.fa-drupal {
  --fa: "\f1a9";
}
.fa-jxl {
  --fa: "\e67b";
}
.fa-dart-lang {
  --fa: "\e693";
}
.fa-hire-a-helper {
  --fa: "\f3b0";
}
.fa-creative-commons-by {
  --fa: "\f4e7";
}
.fa-unity {
  --fa: "\e049";
}
.fa-whmcs {
  --fa: "\f40d";
}
.fa-rocketchat {
  --fa: "\f3e8";
}
.fa-vk {
  --fa: "\f189";
}
.fa-untappd {
  --fa: "\f405";
}
.fa-mailchimp {
  --fa: "\f59e";
}
.fa-css3-alt {
  --fa: "\f38b";
}
.fa-square-reddit {
  --fa: "\f1a2";
}
.fa-reddit-square {
  --fa: "\f1a2";
}
.fa-vimeo-v {
  --fa: "\f27d";
}
.fa-contao {
  --fa: "\f26d";
}
.fa-square-font-awesome {
  --fa: "\e5ad";
}
.fa-deskpro {
  --fa: "\f38f";
}
.fa-brave {
  --fa: "\e63c";
}
.fa-sistrix {
  --fa: "\f3ee";
}
.fa-square-instagram {
  --fa: "\e055";
}
.fa-instagram-square {
  --fa: "\e055";
}
.fa-battle-net {
  --fa: "\f835";
}
.fa-the-red-yeti {
  --fa: "\f69d";
}
.fa-square-hacker-news {
  --fa: "\f3af";
}
.fa-hacker-news-square {
  --fa: "\f3af";
}
.fa-edge {
  --fa: "\f282";
}
.fa-threads {
  --fa: "\e618";
}
.fa-napster {
  --fa: "\f3d2";
}
.fa-square-snapchat {
  --fa: "\f2ad";
}
.fa-snapchat-square {
  --fa: "\f2ad";
}
.fa-google-plus-g {
  --fa: "\f0d5";
}
.fa-artstation {
  --fa: "\f77a";
}
.fa-markdown {
  --fa: "\f60f";
}
.fa-sourcetree {
  --fa: "\f7d3";
}
.fa-google-plus {
  --fa: "\f2b3";
}
.fa-diaspora {
  --fa: "\f791";
}
.fa-foursquare {
  --fa: "\f180";
}
.fa-stack-overflow {
  --fa: "\f16c";
}
.fa-github-alt {
  --fa: "\f113";
}
.fa-phoenix-squadron {
  --fa: "\f511";
}
.fa-pagelines {
  --fa: "\f18c";
}
.fa-algolia {
  --fa: "\f36c";
}
.fa-red-river {
  --fa: "\f3e3";
}
.fa-creative-commons-sa {
  --fa: "\f4ef";
}
.fa-safari {
  --fa: "\f267";
}
.fa-google {
  --fa: "\f1a0";
}
.fa-square-font-awesome-stroke {
  --fa: "\f35c";
}
.fa-font-awesome-alt {
  --fa: "\f35c";
}
.fa-atlassian {
  --fa: "\f77b";
}
.fa-linkedin-in {
  --fa: "\f0e1";
}
.fa-digital-ocean {
  --fa: "\f391";
}
.fa-nimblr {
  --fa: "\f5a8";
}
.fa-chromecast {
  --fa: "\f838";
}
.fa-evernote {
  --fa: "\f839";
}
.fa-hacker-news {
  --fa: "\f1d4";
}
.fa-creative-commons-sampling {
  --fa: "\f4f0";
}
.fa-adversal {
  --fa: "\f36a";
}
.fa-creative-commons {
  --fa: "\f25e";
}
.fa-watchman-monitoring {
  --fa: "\e087";
}
.fa-fonticons {
  --fa: "\f280";
}
.fa-weixin {
  --fa: "\f1d7";
}
.fa-shirtsinbulk {
  --fa: "\f214";
}
.fa-codepen {
  --fa: "\f1cb";
}
.fa-git-alt {
  --fa: "\f841";
}
.fa-lyft {
  --fa: "\f3c3";
}
.fa-rev {
  --fa: "\f5b2";
}
.fa-windows {
  --fa: "\f17a";
}
.fa-wizards-of-the-coast {
  --fa: "\f730";
}
.fa-square-viadeo {
  --fa: "\f2aa";
}
.fa-viadeo-square {
  --fa: "\f2aa";
}
.fa-meetup {
  --fa: "\f2e0";
}
.fa-centos {
  --fa: "\f789";
}
.fa-adn {
  --fa: "\f170";
}
.fa-cloudsmith {
  --fa: "\f384";
}
.fa-opensuse {
  --fa: "\e62b";
}
.fa-pied-piper-alt {
  --fa: "\f1a8";
}
.fa-square-dribbble {
  --fa: "\f397";
}
.fa-dribbble-square {
  --fa: "\f397";
}
.fa-codiepie {
  --fa: "\f284";
}
.fa-node {
  --fa: "\f419";
}
.fa-mix {
  --fa: "\f3cb";
}
.fa-steam {
  --fa: "\f1b6";
}
.fa-cc-apple-pay {
  --fa: "\f416";
}
.fa-scribd {
  --fa: "\f28a";
}
.fa-debian {
  --fa: "\e60b";
}
.fa-openid {
  --fa: "\f19b";
}
.fa-instalod {
  --fa: "\e081";
}
.fa-files-pinwheel {
  --fa: "\e69f";
}
.fa-expeditedssl {
  --fa: "\f23e";
}
.fa-sellcast {
  --fa: "\f2da";
}
.fa-square-twitter {
  --fa: "\f081";
}
.fa-twitter-square {
  --fa: "\f081";
}
.fa-r-project {
  --fa: "\f4f7";
}
.fa-delicious {
  --fa: "\f1a5";
}
.fa-freebsd {
  --fa: "\f3a4";
}
.fa-vuejs {
  --fa: "\f41f";
}
.fa-accusoft {
  --fa: "\f369";
}
.fa-ioxhost {
  --fa: "\f208";
}
.fa-fonticons-fi {
  --fa: "\f3a2";
}
.fa-app-store {
  --fa: "\f36f";
}
.fa-cc-mastercard {
  --fa: "\f1f1";
}
.fa-itunes-note {
  --fa: "\f3b5";
}
.fa-golang {
  --fa: "\e40f";
}
.fa-kickstarter {
  --fa: "\f3bb";
}
.fa-square-kickstarter {
  --fa: "\f3bb";
}
.fa-grav {
  --fa: "\f2d6";
}
.fa-weibo {
  --fa: "\f18a";
}
.fa-uncharted {
  --fa: "\e084";
}
.fa-firstdraft {
  --fa: "\f3a1";
}
.fa-square-youtube {
  --fa: "\f431";
}
.fa-youtube-square {
  --fa: "\f431";
}
.fa-wikipedia-w {
  --fa: "\f266";
}
.fa-wpressr {
  --fa: "\f3e4";
}
.fa-rendact {
  --fa: "\f3e4";
}
.fa-angellist {
  --fa: "\f209";
}
.fa-galactic-republic {
  --fa: "\f50c";
}
.fa-nfc-directional {
  --fa: "\e530";
}
.fa-skype {
  --fa: "\f17e";
}
.fa-joget {
  --fa: "\f3b7";
}
.fa-fedora {
  --fa: "\f798";
}
.fa-stripe-s {
  --fa: "\f42a";
}
.fa-meta {
  --fa: "\e49b";
}
.fa-laravel {
  --fa: "\f3bd";
}
.fa-hotjar {
  --fa: "\f3b1";
}
.fa-bluetooth-b {
  --fa: "\f294";
}
.fa-square-letterboxd {
  --fa: "\e62e";
}
.fa-sticker-mule {
  --fa: "\f3f7";
}
.fa-creative-commons-zero {
  --fa: "\f4f3";
}
.fa-hips {
  --fa: "\f452";
}
.fa-css {
  --fa: "\e6a2";
}
.fa-behance {
  --fa: "\f1b4";
}
.fa-reddit {
  --fa: "\f1a1";
}
.fa-discord {
  --fa: "\f392";
}
.fa-chrome {
  --fa: "\f268";
}
.fa-app-store-ios {
  --fa: "\f370";
}
.fa-cc-discover {
  --fa: "\f1f2";
}
.fa-wpbeginner {
  --fa: "\f297";
}
.fa-confluence {
  --fa: "\f78d";
}
.fa-shoelace {
  --fa: "\e60c";
}
.fa-mdb {
  --fa: "\f8ca";
}
.fa-dochub {
  --fa: "\f394";
}
.fa-accessible-icon {
  --fa: "\f368";
}
.fa-ebay {
  --fa: "\f4f4";
}
.fa-amazon {
  --fa: "\f270";
}
.fa-unsplash {
  --fa: "\e07c";
}
.fa-yarn {
  --fa: "\f7e3";
}
.fa-square-steam {
  --fa: "\f1b7";
}
.fa-steam-square {
  --fa: "\f1b7";
}
.fa-500px {
  --fa: "\f26e";
}
.fa-square-vimeo {
  --fa: "\f194";
}
.fa-vimeo-square {
  --fa: "\f194";
}
.fa-asymmetrik {
  --fa: "\f372";
}
.fa-font-awesome {
  --fa: "\f2b4";
}
.fa-font-awesome-flag {
  --fa: "\f2b4";
}
.fa-font-awesome-logo-full {
  --fa: "\f2b4";
}
.fa-gratipay {
  --fa: "\f184";
}
.fa-apple {
  --fa: "\f179";
}
.fa-hive {
  --fa: "\e07f";
}
.fa-gitkraken {
  --fa: "\f3a6";
}
.fa-keybase {
  --fa: "\f4f5";
}
.fa-apple-pay {
  --fa: "\f415";
}
.fa-padlet {
  --fa: "\e4a0";
}
.fa-amazon-pay {
  --fa: "\f42c";
}
.fa-square-github {
  --fa: "\f092";
}
.fa-github-square {
  --fa: "\f092";
}
.fa-stumbleupon {
  --fa: "\f1a4";
}
.fa-fedex {
  --fa: "\f797";
}
.fa-phoenix-framework {
  --fa: "\f3dc";
}
.fa-shopify {
  --fa: "\e057";
}
.fa-neos {
  --fa: "\f612";
}
.fa-square-threads {
  --fa: "\e619";
}
.fa-hackerrank {
  --fa: "\f5f7";
}
.fa-researchgate {
  --fa: "\f4f8";
}
.fa-swift {
  --fa: "\f8e1";
}
.fa-angular {
  --fa: "\f420";
}
.fa-speakap {
  --fa: "\f3f3";
}
.fa-angrycreative {
  --fa: "\f36e";
}
.fa-y-combinator {
  --fa: "\f23b";
}
.fa-empire {
  --fa: "\f1d1";
}
.fa-envira {
  --fa: "\f299";
}
.fa-google-scholar {
  --fa: "\e63b";
}
.fa-square-gitlab {
  --fa: "\e5ae";
}
.fa-gitlab-square {
  --fa: "\e5ae";
}
.fa-studiovinari {
  --fa: "\f3f8";
}
.fa-pied-piper {
  --fa: "\f2ae";
}
.fa-wordpress {
  --fa: "\f19a";
}
.fa-product-hunt {
  --fa: "\f288";
}
.fa-firefox {
  --fa: "\f269";
}
.fa-linode {
  --fa: "\f2b8";
}
.fa-goodreads {
  --fa: "\f3a8";
}
.fa-square-odnoklassniki {
  --fa: "\f264";
}
.fa-odnoklassniki-square {
  --fa: "\f264";
}
.fa-jsfiddle {
  --fa: "\f1cc";
}
.fa-sith {
  --fa: "\f512";
}
.fa-themeisle {
  --fa: "\f2b2";
}
.fa-page4 {
  --fa: "\f3d7";
}
.fa-hashnode {
  --fa: "\e499";
}
.fa-react {
  --fa: "\f41b";
}
.fa-cc-paypal {
  --fa: "\f1f4";
}
.fa-squarespace {
  --fa: "\f5be";
}
.fa-cc-stripe {
  --fa: "\f1f5";
}
.fa-creative-commons-share {
  --fa: "\f4f2";
}
.fa-bitcoin {
  --fa: "\f379";
}
.fa-keycdn {
  --fa: "\f3ba";
}
.fa-opera {
  --fa: "\f26a";
}
.fa-itch-io {
  --fa: "\f83a";
}
.fa-umbraco {
  --fa: "\f8e8";
}
.fa-galactic-senate {
  --fa: "\f50d";
}
.fa-ubuntu {
  --fa: "\f7df";
}
.fa-draft2digital {
  --fa: "\f396";
}
.fa-stripe {
  --fa: "\f429";
}
.fa-houzz {
  --fa: "\f27c";
}
.fa-gg {
  --fa: "\f260";
}
.fa-dhl {
  --fa: "\f790";
}
.fa-square-pinterest {
  --fa: "\f0d3";
}
.fa-pinterest-square {
  --fa: "\f0d3";
}
.fa-xing {
  --fa: "\f168";
}
.fa-blackberry {
  --fa: "\f37b";
}
.fa-creative-commons-pd {
  --fa: "\f4ec";
}
.fa-playstation {
  --fa: "\f3df";
}
.fa-quinscape {
  --fa: "\f459";
}
.fa-less {
  --fa: "\f41d";
}
.fa-blogger-b {
  --fa: "\f37d";
}
.fa-opencart {
  --fa: "\f23d";
}
.fa-vine {
  --fa: "\f1ca";
}
.fa-signal-messenger {
  --fa: "\e663";
}
.fa-paypal {
  --fa: "\f1ed";
}
.fa-gitlab {
  --fa: "\f296";
}
.fa-typo3 {
  --fa: "\f42b";
}
.fa-reddit-alien {
  --fa: "\f281";
}
.fa-yahoo {
  --fa: "\f19e";
}
.fa-dailymotion {
  --fa: "\e052";
}
.fa-affiliatetheme {
  --fa: "\f36b";
}
.fa-pied-piper-pp {
  --fa: "\f1a7";
}
.fa-bootstrap {
  --fa: "\f836";
}
.fa-odnoklassniki {
  --fa: "\f263";
}
.fa-nfc-symbol {
  --fa: "\e531";
}
.fa-mintbit {
  --fa: "\e62f";
}
.fa-ethereum {
  --fa: "\f42e";
}
.fa-speaker-deck {
  --fa: "\f83c";
}
.fa-creative-commons-nc-eu {
  --fa: "\f4e9";
}
.fa-patreon {
  --fa: "\f3d9";
}
.fa-avianex {
  --fa: "\f374";
}
.fa-ello {
  --fa: "\f5f1";
}
.fa-gofore {
  --fa: "\f3a7";
}
.fa-bimobject {
  --fa: "\f378";
}
.fa-brave-reverse {
  --fa: "\e63d";
}
.fa-facebook-f {
  --fa: "\f39e";
}
.fa-square-google-plus {
  --fa: "\f0d4";
}
.fa-google-plus-square {
  --fa: "\f0d4";
}
.fa-web-awesome {
  --fa: "\e682";
}
.fa-mandalorian {
  --fa: "\f50f";
}
.fa-first-order-alt {
  --fa: "\f50a";
}
.fa-osi {
  --fa: "\f41a";
}
.fa-google-wallet {
  --fa: "\f1ee";
}
.fa-d-and-d-beyond {
  --fa: "\f6ca";
}
.fa-periscope {
  --fa: "\f3da";
}
.fa-fulcrum {
  --fa: "\f50b";
}
.fa-cloudscale {
  --fa: "\f383";
}
.fa-forumbee {
  --fa: "\f211";
}
.fa-mizuni {
  --fa: "\f3cc";
}
.fa-schlix {
  --fa: "\f3ea";
}
.fa-square-xing {
  --fa: "\f169";
}
.fa-xing-square {
  --fa: "\f169";
}
.fa-bandcamp {
  --fa: "\f2d5";
}
.fa-wpforms {
  --fa: "\f298";
}
.fa-cloudversify {
  --fa: "\f385";
}
.fa-usps {
  --fa: "\f7e1";
}
.fa-megaport {
  --fa: "\f5a3";
}
.fa-magento {
  --fa: "\f3c4";
}
.fa-spotify {
  --fa: "\f1bc";
}
.fa-optin-monster {
  --fa: "\f23c";
}
.fa-fly {
  --fa: "\f417";
}
.fa-square-bluesky {
  --fa: "\e6a3";
}
.fa-aviato {
  --fa: "\f421";
}
.fa-itunes {
  --fa: "\f3b4";
}
.fa-cuttlefish {
  --fa: "\f38c";
}
.fa-blogger {
  --fa: "\f37c";
}
.fa-flickr {
  --fa: "\f16e";
}
.fa-viber {
  --fa: "\f409";
}
.fa-soundcloud {
  --fa: "\f1be";
}
.fa-digg {
  --fa: "\f1a6";
}
.fa-tencent-weibo {
  --fa: "\f1d5";
}
.fa-letterboxd {
  --fa: "\e62d";
}
.fa-symfony {
  --fa: "\f83d";
}
.fa-maxcdn {
  --fa: "\f136";
}
.fa-etsy {
  --fa: "\f2d7";
}
.fa-facebook-messenger {
  --fa: "\f39f";
}
.fa-audible {
  --fa: "\f373";
}
.fa-think-peaks {
  --fa: "\f731";
}
.fa-bilibili {
  --fa: "\e3d9";
}
.fa-erlang {
  --fa: "\f39d";
}
.fa-x-twitter {
  --fa: "\e61b";
}
.fa-cotton-bureau {
  --fa: "\f89e";
}
.fa-dashcube {
  --fa: "\f210";
}
.fa-42-group {
  --fa: "\e080";
}
.fa-innosoft {
  --fa: "\e080";
}
.fa-stack-exchange {
  --fa: "\f18d";
}
.fa-elementor {
  --fa: "\f430";
}
.fa-square-pied-piper {
  --fa: "\e01e";
}
.fa-pied-piper-square {
  --fa: "\e01e";
}
.fa-creative-commons-nd {
  --fa: "\f4eb";
}
.fa-palfed {
  --fa: "\f3d8";
}
.fa-superpowers {
  --fa: "\f2dd";
}
.fa-resolving {
  --fa: "\f3e7";
}
.fa-xbox {
  --fa: "\f412";
}
.fa-square-web-awesome-stroke {
  --fa: "\e684";
}
.fa-searchengin {
  --fa: "\f3eb";
}
.fa-tiktok {
  --fa: "\e07b";
}
.fa-square-facebook {
  --fa: "\f082";
}
.fa-facebook-square {
  --fa: "\f082";
}
.fa-renren {
  --fa: "\f18b";
}
.fa-linux {
  --fa: "\f17c";
}
.fa-glide {
  --fa: "\f2a5";
}
.fa-linkedin {
  --fa: "\f08c";
}
.fa-hubspot {
  --fa: "\f3b2";
}
.fa-deploydog {
  --fa: "\f38e";
}
.fa-twitch {
  --fa: "\f1e8";
}
.fa-flutter {
  --fa: "\e694";
}
.fa-ravelry {
  --fa: "\f2d9";
}
.fa-mixer {
  --fa: "\e056";
}
.fa-square-lastfm {
  --fa: "\f203";
}
.fa-lastfm-square {
  --fa: "\f203";
}
.fa-vimeo {
  --fa: "\f40a";
}
.fa-mendeley {
  --fa: "\f7b3";
}
.fa-uniregistry {
  --fa: "\f404";
}
.fa-figma {
  --fa: "\f799";
}
.fa-creative-commons-remix {
  --fa: "\f4ee";
}
.fa-cc-amazon-pay {
  --fa: "\f42d";
}
.fa-dropbox {
  --fa: "\f16b";
}
.fa-instagram {
  --fa: "\f16d";
}
.fa-cmplid {
  --fa: "\e360";
}
.fa-upwork {
  --fa: "\e641";
}
.fa-facebook {
  --fa: "\f09a";
}
.fa-gripfire {
  --fa: "\f3ac";
}
.fa-jedi-order {
  --fa: "\f50e";
}
.fa-uikit {
  --fa: "\f403";
}
.fa-fort-awesome-alt {
  --fa: "\f3a3";
}
.fa-phabricator {
  --fa: "\f3db";
}
.fa-ussunnah {
  --fa: "\f407";
}
.fa-earlybirds {
  --fa: "\f39a";
}
.fa-trade-federation {
  --fa: "\f513";
}
.fa-autoprefixer {
  --fa: "\f41c";
}
.fa-whatsapp {
  --fa: "\f232";
}
.fa-square-upwork {
  --fa: "\e67c";
}
.fa-slideshare {
  --fa: "\f1e7";
}
.fa-google-play {
  --fa: "\f3ab";
}
.fa-viadeo {
  --fa: "\f2a9";
}
.fa-line {
  --fa: "\f3c0";
}
.fa-google-drive {
  --fa: "\f3aa";
}
.fa-servicestack {
  --fa: "\f3ec";
}
.fa-simplybuilt {
  --fa: "\f215";
}
.fa-bitbucket {
  --fa: "\f171";
}
.fa-imdb {
  --fa: "\f2d8";
}
.fa-deezer {
  --fa: "\e077";
}
.fa-raspberry-pi {
  --fa: "\f7bb";
}
.fa-jira {
  --fa: "\f7b1";
}
.fa-docker {
  --fa: "\f395";
}
.fa-screenpal {
  --fa: "\e570";
}
.fa-bluetooth {
  --fa: "\f293";
}
.fa-gitter {
  --fa: "\f426";
}
.fa-d-and-d {
  --fa: "\f38d";
}
.fa-microblog {
  --fa: "\e01a";
}
.fa-cc-diners-club {
  --fa: "\f24c";
}
.fa-gg-circle {
  --fa: "\f261";
}
.fa-pied-piper-hat {
  --fa: "\f4e5";
}
.fa-kickstarter-k {
  --fa: "\f3bc";
}
.fa-yandex {
  --fa: "\f413";
}
.fa-readme {
  --fa: "\f4d5";
}
.fa-html5 {
  --fa: "\f13b";
}
.fa-sellsy {
  --fa: "\f213";
}
.fa-square-web-awesome {
  --fa: "\e683";
}
.fa-sass {
  --fa: "\f41e";
}
.fa-wirsindhandwerk {
  --fa: "\e2d0";
}
.fa-wsh {
  --fa: "\e2d0";
}
.fa-buromobelexperte {
  --fa: "\f37f";
}
.fa-salesforce {
  --fa: "\f83b";
}
.fa-octopus-deploy {
  --fa: "\e082";
}
.fa-medapps {
  --fa: "\f3c6";
}
.fa-ns8 {
  --fa: "\f3d5";
}
.fa-pinterest-p {
  --fa: "\f231";
}
.fa-apper {
  --fa: "\f371";
}
.fa-fort-awesome {
  --fa: "\f286";
}
.fa-waze {
  --fa: "\f83f";
}
.fa-bluesky {
  --fa: "\e671";
}
.fa-cc-jcb {
  --fa: "\f24b";
}
.fa-snapchat {
  --fa: "\f2ab";
}
.fa-snapchat-ghost {
  --fa: "\f2ab";
}
.fa-fantasy-flight-games {
  --fa: "\f6dc";
}
.fa-rust {
  --fa: "\e07a";
}
.fa-wix {
  --fa: "\f5cf";
}
.fa-square-behance {
  --fa: "\f1b5";
}
.fa-behance-square {
  --fa: "\f1b5";
}
.fa-supple {
  --fa: "\f3f9";
}
.fa-webflow {
  --fa: "\e65c";
}
.fa-rebel {
  --fa: "\f1d0";
}
.fa-css3 {
  --fa: "\f13c";
}
.fa-staylinked {
  --fa: "\f3f5";
}
.fa-kaggle {
  --fa: "\f5fa";
}
.fa-space-awesome {
  --fa: "\e5ac";
}
.fa-deviantart {
  --fa: "\f1bd";
}
.fa-cpanel {
  --fa: "\f388";
}
.fa-goodreads-g {
  --fa: "\f3a9";
}
.fa-square-git {
  --fa: "\f1d2";
}
.fa-git-square {
  --fa: "\f1d2";
}
.fa-square-tumblr {
  --fa: "\f174";
}
.fa-tumblr-square {
  --fa: "\f174";
}
.fa-trello {
  --fa: "\f181";
}
.fa-creative-commons-nc-jp {
  --fa: "\f4ea";
}
.fa-get-pocket {
  --fa: "\f265";
}
.fa-perbyte {
  --fa: "\e083";
}
.fa-grunt {
  --fa: "\f3ad";
}
.fa-weebly {
  --fa: "\f5cc";
}
.fa-connectdevelop {
  --fa: "\f20e";
}
.fa-leanpub {
  --fa: "\f212";
}
.fa-black-tie {
  --fa: "\f27e";
}
.fa-themeco {
  --fa: "\f5c6";
}
.fa-python {
  --fa: "\f3e2";
}
.fa-android {
  --fa: "\f17b";
}
.fa-bots {
  --fa: "\e340";
}
.fa-free-code-camp {
  --fa: "\f2c5";
}
.fa-hornbill {
  --fa: "\f592";
}
.fa-js {
  --fa: "\f3b8";
}
.fa-ideal {
  --fa: "\e013";
}
.fa-git {
  --fa: "\f1d3";
}
.fa-dev {
  --fa: "\f6cc";
}
.fa-sketch {
  --fa: "\f7c6";
}
.fa-yandex-international {
  --fa: "\f414";
}
.fa-cc-amex {
  --fa: "\f1f3";
}
.fa-uber {
  --fa: "\f402";
}
.fa-github {
  --fa: "\f09b";
}
.fa-php {
  --fa: "\f457";
}
.fa-alipay {
  --fa: "\f642";
}
.fa-youtube {
  --fa: "\f167";
}
.fa-skyatlas {
  --fa: "\f216";
}
.fa-firefox-browser {
  --fa: "\e007";
}
.fa-replyd {
  --fa: "\f3e6";
}
.fa-suse {
  --fa: "\f7d6";
}
.fa-jenkins {
  --fa: "\f3b6";
}
.fa-twitter {
  --fa: "\f099";
}
.fa-rockrms {
  --fa: "\f3e9";
}
.fa-pinterest {
  --fa: "\f0d2";
}
.fa-buffer {
  --fa: "\f837";
}
.fa-npm {
  --fa: "\f3d4";
}
.fa-yammer {
  --fa: "\f840";
}
.fa-btc {
  --fa: "\f15a";
}
.fa-dribbble {
  --fa: "\f17d";
}
.fa-stumbleupon-circle {
  --fa: "\f1a3";
}
.fa-internet-explorer {
  --fa: "\f26b";
}
.fa-stubber {
  --fa: "\e5c7";
}
.fa-telegram {
  --fa: "\f2c6";
}
.fa-telegram-plane {
  --fa: "\f2c6";
}
.fa-old-republic {
  --fa: "\f510";
}
.fa-odysee {
  --fa: "\e5c6";
}
.fa-square-whatsapp {
  --fa: "\f40c";
}
.fa-whatsapp-square {
  --fa: "\f40c";
}
.fa-node-js {
  --fa: "\f3d3";
}
.fa-edge-legacy {
  --fa: "\e078";
}
.fa-slack {
  --fa: "\f198";
}
.fa-slack-hash {
  --fa: "\f198";
}
.fa-medrt {
  --fa: "\f3c8";
}
.fa-usb {
  --fa: "\f287";
}
.fa-tumblr {
  --fa: "\f173";
}
.fa-vaadin {
  --fa: "\f408";
}
.fa-quora {
  --fa: "\f2c4";
}
.fa-square-x-twitter {
  --fa: "\e61a";
}
.fa-reacteurope {
  --fa: "\f75d";
}
.fa-medium {
  --fa: "\f23a";
}
.fa-medium-m {
  --fa: "\f23a";
}
.fa-amilia {
  --fa: "\f36d";
}
.fa-mixcloud {
  --fa: "\f289";
}
.fa-flipboard {
  --fa: "\f44d";
}
.fa-viacoin {
  --fa: "\f237";
}
.fa-critical-role {
  --fa: "\f6c9";
}
.fa-sitrox {
  --fa: "\e44a";
}
.fa-discourse {
  --fa: "\f393";
}
.fa-joomla {
  --fa: "\f1aa";
}
.fa-mastodon {
  --fa: "\f4f6";
}
.fa-airbnb {
  --fa: "\f834";
}
.fa-wolf-pack-battalion {
  --fa: "\f514";
}
.fa-buy-n-large {
  --fa: "\f8a6";
}
.fa-gulp {
  --fa: "\f3ae";
}
.fa-creative-commons-sampling-plus {
  --fa: "\f4f1";
}
.fa-strava {
  --fa: "\f428";
}
.fa-ember {
  --fa: "\f423";
}
.fa-canadian-maple-leaf {
  --fa: "\f785";
}
.fa-teamspeak {
  --fa: "\f4f9";
}
.fa-pushed {
  --fa: "\f3e1";
}
.fa-wordpress-simple {
  --fa: "\f411";
}
.fa-nutritionix {
  --fa: "\f3d6";
}
.fa-wodu {
  --fa: "\e088";
}
.fa-google-pay {
  --fa: "\e079";
}
.fa-intercom {
  --fa: "\f7af";
}
.fa-zhihu {
  --fa: "\f63f";
}
.fa-korvue {
  --fa: "\f42f";
}
.fa-pix {
  --fa: "\e43a";
}
.fa-steam-symbol {
  --fa: "\f3f6";
}
@keyframes spin {
  to {
    transform: rotate(359deg);
  }
}
.spinner,
.infinite-scroll-spinner{
  position: relative;
  font-size: 0px;
  color: transparent;
  min-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner::before,
.infinite-scroll-spinner::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: #2d31a6;
  border-top-color: #2d31a6;
  animation: spin 0.6s infinite linear;
}
.banner-messages .message{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 2px;
  padding-bottom: 2px;
  text-align: center;
  width: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
.banner-messages .message{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
  }
}
.banner-messages .message.alert{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.banner-messages .message.alert{
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.banner-messages .message.error{
  --tw-bg-opacity: 1;
  background-color: rgb(234 88 12 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.banner-messages .message.error{
    background-color: rgb(234 88 12 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.banner-messages .message.info{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / 1);
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.banner-messages .message.info{
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
    color: rgb(24 24 27 / var(--tw-text-opacity, 1));
  }
}
.banner-messages .message.notice{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  --tw-text-opacity: 1;
  color: rgb(113 63 18 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.banner-messages .message.notice{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
    color: rgb(113 63 18 / var(--tw-text-opacity, 1));
  }
}
.banner-messages .message a {
  text-decoration: underline;
}
.chartjs{
  align-content: center;
}
.flash-messages{
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  left: 0px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 8px;
  padding-right: 8px;
  right: 0px;
  top: 0px;
  width: 100%;
  z-index: 50;
}
@media (min-width: 768px) {
  .flash-messages{
    left: auto;
    left: initial;
    min-width: 350px;
    max-width: 500px;
  }
}
.flash-messages .message{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / 1);
  margin-top: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  position: relative;
  border-radius: 0.5rem;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  max-height: 100px;
  --animate-duration: 1s;
}
@supports (color: rgb(0 0 0 / 0)){
.flash-messages .message{
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.flash-messages .message.alert > i{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.flash-messages .message.alert > i{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.flash-messages .message.info > i{
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.flash-messages .message.info > i{
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
.flash-messages .message.notice > i{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.flash-messages .message.notice > i{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.flash-messages .message span{
  flex-grow: 1;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
}
.flash-messages .message button{
  padding: 8px;
  right: 0px;
  top: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  white-space: nowrap;
}
.flash-messages .message button:active, .flash-messages .message button:focus, .flash-messages .message button:hover{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.flash-messages .message button:active, .flash-messages .message button:focus, .flash-messages .message button:hover{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.flash-messages .message.info button:active, .flash-messages .message.info button:focus, .flash-messages .message.info button:hover, .flash-messages .message.notice button:active, .flash-messages .message.notice button:focus, .flash-messages .message.notice button:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.flash-messages .message.info button:active, .flash-messages .message.info button:focus, .flash-messages .message.info button:hover, .flash-messages .message.notice button:active, .flash-messages .message.notice button:focus, .flash-messages .message.notice button:hover{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.flash-messages .message.fade-out{
  opacity: 0;
  margin: 0px;
  max-height: 0;
}
.logo a.wide{
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(/assets/logos/logoipsum/logoipsum-indigo-wide-0e6116ca06b24453ff3b0ed072478cbca74aa81e4157e31faaa1f671650f8116.svg);
  height: 46px;
  width: 160px;
}
.metric.delta{
  display: flex;
  flex-direction: column;
  text-align: center;
}
.metric.delta .current{
  flex-grow: 1;
  font-weight: 700;
  align-content: center;
  font-size: 2rem;
}
@media (min-width: 1280px) {
  .metric.delta .current {
    font-size: 3rem;
  }
}
@media (min-width: 1536px) {
  .metric.delta .current {
    font-size: 5rem;
  }
}
.metric.delta .change{
  font-weight: 500;
}
.metric.delta .change.up{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.metric.delta .change.up{
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }
}
.metric.delta .change.down{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.metric.delta .change.down{
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }
}
.metric.delta .change.minus{
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.metric.delta .change.minus{
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }
}
.metric.delta .change .period{
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.metric.delta .change .period{
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }
}
section.table-scroll-x{
  max-width: 100%;
  overflow-x: scroll;
  width: 100%;
}
.app-card{
  flex-shrink: 0;
  width: 20rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-radius: 0.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-width: 1px;
  padding: 24px;
}
@supports (color: rgb(0 0 0 / 0)){
.app-card{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.app-card:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.app-card{
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.app-card.user-app{
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / 1);
  border-width: 2px;
}
@supports (color: rgb(0 0 0 / 0)){
.app-card.user-app{
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }
}
.app-card:not(.user-app){
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.app-card:not(.user-app){
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.app-card {
  /* Clickable card styling */
}
.app-card.block{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.block:hover{
  text-decoration-line: none;
  color: inherit;
}
.app-card-icon{
  width: 48px;
  height: 48px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.app-card-title{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@supports (color: rgb(0 0 0 / 0)){
.app-card-title{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.app-card-subtitle{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@supports (color: rgb(0 0 0 / 0)){
.app-card-subtitle{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.app-card-platform-icon{
  width: 16px;
  height: 16px;
}
.app-card-platform-text{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.app-card-platform-text{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.app-card-features{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.app-card-features{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.app-cards-container{
  display: flex;
  overflow-x: auto;
}
.app-cards-container > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(24px * 0);
  margin-right: calc(24px * var(--tw-space-x-reverse));
  margin-left: calc(24px * calc(1 - 0));
  margin-left: calc(24px * calc(1 - var(--tw-space-x-reverse)));
}
.app-cards-container{
  padding-bottom: 16px;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.app-cards-container::-webkit-scrollbar {
  display: none;
}
.competitor-snapshot-card{
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 24px;
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.competitor-snapshot-card .card-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.competitor-snapshot-card .card-header h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .card-header h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .card-header .competitor-count-selector select{
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .card-header .competitor-count-selector select{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .card-header .competitor-count-selector select:focus{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / 1);
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .card-header .competitor-count-selector select:focus{
    border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
  }
}
.competitor-snapshot-card .competitors-list{
  margin-bottom: 32px;
}
.competitor-snapshot-card .competitors-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.competitor-snapshot-card .competitors-list .competitor-item{
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  padding: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .competitors-list .competitor-item{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info{
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-name{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-name .competitor-icon{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-change{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-change.up{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-change.up{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-change.down{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .competitors-list .competitor-item .competitor-info .competitor-change.down{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-stats{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-stats .stat-group{
  text-align: center;
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-stats .stat-group .stat-label{
  margin-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .competitors-list .competitor-item .competitor-stats .stat-group .stat-label{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .competitors-list .competitor-item .competitor-stats .stat-group .stat-value{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .competitors-list .competitor-item .competitor-stats .stat-group .stat-value{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .monthly-installs-section{
  margin-bottom: 32px;
}
.competitor-snapshot-card .monthly-installs-section h4{
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .monthly-installs-section h4{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .monthly-installs-section .chart-container{
  position: relative;
  height: 12rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  padding: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .monthly-installs-section .chart-container{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.competitor-snapshot-card .monthly-installs-section .chart-container canvas{
  height: 100%;
  width: 100%;
}
.competitor-snapshot-card .top-keywords-section h4{
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .top-keywords-section h4{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .top-keywords-section .keywords-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - 0));
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * 0);
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-name{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown{
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown .competitor-share{
  display: flex;
  align-items: center;
  gap: 8px;
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown .competitor-share .competitor-dot{
  height: 12px;
  width: 12px;
  border-radius: 9999px;
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown .competitor-share .competitor-name{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown .competitor-share .competitor-name{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown .competitor-share .competitor-percentage{
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-breakdown .competitor-share .competitor-percentage{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-bar{
  display: flex;
  height: 8px;
  overflow: hidden;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-bar{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.competitor-snapshot-card .top-keywords-section .keywords-list .keyword-item .keyword-bar .bar-segment{
  height: 100%;
}
.copy-btn{
  margin-left: 8px;
  padding: 4px;
  border-radius: 0.25rem;
}
.copy-btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.copy-btn:hover{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.copy-btn{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.copy-btn{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.copy-btn:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.copy-btn:hover{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.copy-btn:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.copy-btn:disabled:hover{
  background-color: transparent;
}
.feature-comparison-table{
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table .table-container{
  overflow-x: auto;
}
.feature-comparison-table table{
  min-width: 100%;
}
.feature-comparison-table table > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table table > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
  }
}
.feature-comparison-table thead{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table thead{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table thead th{
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table thead th{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table thead th.feature-column{
  width: 25%;
  text-align: left;
}
.feature-comparison-table thead th.app-column{
  text-align: center;
}
.feature-comparison-table tbody > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table tbody > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
  }
}
.feature-comparison-table tbody{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table tbody{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table tbody tr.even-row{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table tbody tr.even-row{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table tbody tr.odd-row{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table tbody tr.odd-row{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table tbody td{
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.feature-comparison-table tbody td.feature-cell{
  white-space: nowrap;
}
.feature-comparison-table tbody td.check-cell{
  white-space: nowrap;
  text-align: center;
}
.feature-comparison-table .feature-header{
  display: flex;
  align-items: center;
}
.feature-comparison-table .feature-header .feature-icon{
  margin-right: 8px;
  height: 16px;
  width: 16px;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-header .feature-icon{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .app-header{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-comparison-table .app-header .app-icon-container{
  margin-bottom: 8px;
  display: flex;
  height: 32px;
  width: 32px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .app-header .app-icon-container{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table .app-header .app-icon-container.user-app{
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .app-header .app-icon-container.user-app{
    background-color: rgb(219 234 254 / var(--tw-bg-opacity, 1));
  }
}
.feature-comparison-table .app-header .app-icon-container img{
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.feature-comparison-table .app-header .app-icon-container .default-icon{
  height: 20px;
  width: 20px;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .app-header .app-icon-container .default-icon{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .app-header .app-icon-container .user-app-icon{
  height: 20px;
  width: 20px;
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .app-header .app-icon-container .user-app-icon{
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .app-header .app-name{
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .app-header .app-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .feature-info{
  display: flex;
  align-items: flex-start;
}
.feature-comparison-table .feature-info .feature-content{
  flex: 1 1;
}
.feature-comparison-table .feature-info .feature-content .feature-title-row{
  display: flex;
  align-items: center;
}
.feature-comparison-table .feature-info .feature-content .feature-title-row .feature-name{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-info .feature-content .feature-title-row .feature-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge{
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  border-radius: 9999px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge.high-priority{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge.high-priority{
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge.medium-priority{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge.medium-priority{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge.low-priority{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-info .feature-content .feature-title-row .priority-badge.low-priority{
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .feature-info .feature-content .feature-description{
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-info .feature-content .feature-description{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .feature-info .feature-content .feature-category{
  margin-top: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .feature-info .feature-content .feature-category{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .check-icon{
  margin-left: auto;
  margin-right: auto;
  height: 20px;
  width: 20px;
}
.feature-comparison-table .check-icon.has-feature{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .check-icon.has-feature{
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .check-icon.no-feature{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .check-icon.no-feature{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .empty-state{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .empty-state{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .empty-state .empty-icon{
  margin-left: auto;
  margin-right: auto;
  height: 48px;
  width: 48px;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .empty-state .empty-icon{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .empty-state .empty-title{
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .empty-state .empty-title{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.feature-comparison-table .empty-state .empty-description{
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.feature-comparison-table .empty-state .empty-description{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 640px) {
  .feature-comparison-table thead th.app-column{
    min-width: 9rem;
  }
  .feature-comparison-table .app-header .app-name{
    max-width: 8rem;
    font-size: 0.75rem;
    line-height: 1rem;
  }
}
@media (min-width: 768px) {
  .feature-comparison-table thead th.app-column{
    min-width: 10rem;
  }
  .feature-comparison-table .app-header .app-name{
    max-width: 9rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .feature-comparison-table thead th.app-column{
    min-width: 11rem;
  }
  .feature-comparison-table .app-header .app-name{
    max-width: 10rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
.infinite-scroll{
  display: contents;
}
.infinite-scroll__trigger{
  position: relative;
  top: -25vh;
  height: 40px;
  width: 100%;
  pointer-events: none;
}
.infinite-scroll__spinner{
  position: relative;
  font-size: 0px;
  color: transparent;
  min-height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.infinite-scroll__spinner::before {
  content: "";
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-left-color: #2d31a6;
  border-top-color: #2d31a6;
  animation: spin 0.6s infinite linear;
}
.modal{
  position: fixed;
  inset: 0px;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  overflow-x: hidden;
  padding-top: 16px;
  padding-bottom: 16px;
}
.modal__backdrop{
  position: fixed;
  inset: 0px;
  background-color: rgb(107 114 128 / 0.75);
  --tw-bg-opacity: 0.75;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
.modal__backdrop{
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }
}
.modal__content{
  position: relative;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  overflow: hidden;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
  padding-top: 20px;
  text-align: left;
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  width: 100%;
  max-width: 32rem;
  margin-left: 16px;
  margin-right: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.modal__content{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
@media (min-width: 640px) {
  .modal__content{
    margin-top: 32px;
    margin-bottom: 32px;
    padding: 24px;
  }
}
@media (min-width: 768px) {
  .modal.modal-lg .modal__content{
    max-width: 48rem;
  }
}
.modal.modal-enter-active{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 300ms;
}
.modal.modal-enter-active .modal__backdrop{
  opacity: 0;
}
.modal.modal-enter-active .modal__content{
  opacity: 0;
  --tw-translate-y: 16px;
  transform: translate(var(--tw-translate-x), 16px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 640px){
  .modal.modal-enter-active .modal__content{
    --tw-translate-y: 0px;
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.95) scaleY(.95);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.modal.modal-enter-to .modal__backdrop{
  opacity: 1;
}
.modal.modal-enter-to .modal__content{
  opacity: 1;
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 640px){
  .modal.modal-enter-to .modal__content{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.modal.modal-leave-active{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  transition-duration: 200ms;
}
.modal.modal-leave-active .modal__backdrop{
  opacity: 1;
}
.modal.modal-leave-active .modal__content{
  opacity: 1;
  --tw-translate-y: 0px;
  transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 640px){
  .modal.modal-leave-active .modal__content{
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(1) scaleY(1);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
.modal.modal-leave-to .modal__backdrop{
  opacity: 0;
}
.modal.modal-leave-to .modal__content{
  opacity: 0;
  --tw-translate-y: 16px;
  transform: translate(var(--tw-translate-x), 16px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media (min-width: 640px){
  .modal.modal-leave-to .modal__content{
    --tw-translate-y: 0px;
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x), 0px) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(.95) scaleY(.95);
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  }
}
a{
  display: flex;
  align-items: center;
}
.icon-container{
  margin-right: 8px;
  height: 16px;
  width: 16px;
  display: inline-block;
  flex-shrink: 0;
  position: relative;
}
.icon-container .icon{
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  display: block;
}
.app-card.icon-container .icon{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.icon-container .icon:hover{
  text-decoration-line: none;
  color: inherit;
}
.icon-container .icon {
  margin-top: 2px;
}
.icon-container .icon-white{
  opacity: 0;
}
.link-text{
  line-height: 1rem;
  align-items: center;
  height: 16px;
}
a:hover .icon-container .icon-regular, a.active .icon-regular{
  opacity: 0;
}
a:hover .icon-container .icon-white, a.active .icon-white{
  opacity: 1;
}
.icon{
  margin-right: 8px;
  height: 16px;
  width: 16px;
  display: inline-block;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .organization-selector{
    display: flex;
    align-items: center;
  }
  .organization-selector__wrapper{
    flex: 1 1 auto;
  }
}
.organization-selector__select-wrapper{
  position: relative;
}
.organization-selector__select{
  display: block;
}
.app-card.organization-selector__select{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.organization-selector__select:hover{
  text-decoration-line: none;
  color: inherit;
}
.organization-selector__select{
  width: 100%;
  border-radius: 0.375rem;
  border-width: 0px;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 12px;
  padding-right: 40px;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.organization-selector__select{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.organization-selector__select:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
@media (min-width: 640px) {
  .organization-selector__select{
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.pagination{
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .btn, .pagination body.application .btn-warning, body.application .pagination .btn-warning, .pagination body.application .btn-danger, body.application .pagination .btn-danger, .pagination body.application .btn-success, body.application .pagination .btn-success, .pagination body.application .btn-primary, .pagination body.application form input[type=submit], body.application .pagination .btn-primary, body.application .pagination form input[type=submit], body.application form .pagination input[type=submit]{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.pagination .btn, .pagination body.application .btn-warning, body.application .pagination .btn-warning, .pagination body.application .btn-danger, body.application .pagination .btn-danger, .pagination body.application .btn-success, body.application .pagination .btn-success, .pagination body.application .btn-primary, .pagination body.application form input[type=submit], body.application .pagination .btn-primary, body.application .pagination form input[type=submit], body.application form .pagination input[type=submit]{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
.pagination .btn:hover, .pagination body.application .btn-warning:hover, body.application .pagination .btn-warning:hover, .pagination body.application .btn-danger:hover, body.application .pagination .btn-danger:hover, .pagination body.application .btn-success:hover, body.application .pagination .btn-success:hover, .pagination body.application .btn-primary:hover, .pagination body.application form input[type=submit]:hover, body.application .pagination .btn-primary:hover, body.application .pagination form input[type=submit]:hover, body.application form .pagination input[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.pagination .btn:hover, .pagination body.application .btn-warning:hover, body.application .pagination .btn-warning:hover, .pagination body.application .btn-danger:hover, body.application .pagination .btn-danger:hover, .pagination body.application .btn-success:hover, body.application .pagination .btn-success:hover, .pagination body.application .btn-primary:hover, .pagination body.application form input[type=submit]:hover, body.application .pagination .btn-primary:hover, body.application .pagination form input[type=submit]:hover, body.application form .pagination input[type=submit]:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.pagination .btn, .pagination body.application .btn-warning, body.application .pagination .btn-warning, .pagination body.application .btn-danger, body.application .pagination .btn-danger, .pagination body.application .btn-success, body.application .pagination .btn-success, .pagination body.application .btn-primary, .pagination body.application form input[type=submit], body.application .pagination .btn-primary, body.application .pagination form input[type=submit], body.application form .pagination input[type=submit]{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.pagination .btn.disabled, .pagination body.application .disabled.btn-warning, body.application .pagination .disabled.btn-warning, .pagination body.application .disabled.btn-danger, body.application .pagination .disabled.btn-danger, .pagination body.application .disabled.btn-success, body.application .pagination .disabled.btn-success, .pagination body.application .disabled.btn-primary, .pagination body.application form input.disabled[type=submit], body.application .pagination .disabled.btn-primary, body.application .pagination form input.disabled[type=submit], body.application form .pagination input.disabled[type=submit]{
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination .btn.disabled:hover, .pagination body.application .disabled.btn-warning:hover, body.application .pagination .disabled.btn-warning:hover, .pagination body.application .disabled.btn-danger:hover, body.application .pagination .disabled.btn-danger:hover, .pagination body.application .disabled.btn-success:hover, body.application .pagination .disabled.btn-success:hover, .pagination body.application .disabled.btn-primary:hover, .pagination body.application form input.disabled[type=submit]:hover, body.application .pagination .disabled.btn-primary:hover, body.application .pagination form input.disabled[type=submit]:hover, body.application form .pagination input.disabled[type=submit]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.pagination .btn.disabled:hover, .pagination body.application .disabled.btn-warning:hover, body.application .pagination .disabled.btn-warning:hover, .pagination body.application .disabled.btn-danger:hover, body.application .pagination .disabled.btn-danger:hover, .pagination body.application .disabled.btn-success:hover, body.application .pagination .disabled.btn-success:hover, .pagination body.application .disabled.btn-primary:hover, .pagination body.application form input.disabled[type=submit]:hover, body.application .pagination .disabled.btn-primary:hover, body.application .pagination form input.disabled[type=submit]:hover, body.application form .pagination input.disabled[type=submit]:hover{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.current-subscription > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - 0));
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * 0);
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
.current-subscription{
  padding: 24px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  border-radius: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.current-subscription__header > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(4px * calc(1 - 0));
  margin-top: calc(4px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(4px * 0);
  margin-bottom: calc(4px * var(--tw-space-y-reverse));
}
.current-subscription__plan{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.current-subscription__plan-name{
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__plan-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__status{
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
}
.current-subscription__status--trial{
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / 1);
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
  --tw-ring-color: rgb(202 138 4 / 0.2);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__status--trial{
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__status--cancelled{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
  --tw-ring-color: rgb(220 38 38 / 0.1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__status--cancelled{
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__status--active{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / 1);
  --tw-ring-color: rgb(22 163 74 / 0.2);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__status--active{
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__progress > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - 0));
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * 0);
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.current-subscription__progress-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.current-subscription__progress-label{
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__progress-label{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__progress-stats{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__progress-stats{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__progress-bar{
  height: 8px;
  width: 100%;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  position: relative;
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__progress-bar{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.current-subscription__actions{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .current-subscription__actions{
    flex-direction: row;
    justify-content: flex-start;
  }
}
.current-subscription__action{
  flex: 1 1;
  border-radius: 0.375rem;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.current-subscription__action:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.current-subscription__action{
  text-align: center;
}
.current-subscription__action--secondary{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__action--secondary{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__action--secondary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__action--secondary:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.current-subscription__action--danger{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__action--danger{
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.current-subscription__action--danger:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.current-subscription__action--danger:hover{
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
  }
}
.current-subscription__action--danger:focus-visible{
  outline-color: #dc2626;
}
.discount-code{
  margin-bottom: 24px;
}
.discount-code__field{
  margin-bottom: 8px;
}
.discount-code__label{
  display: block;
}
.app-card.discount-code__label{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.discount-code__label:hover{
  text-decoration-line: none;
  color: inherit;
}
.discount-code__label{
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__label{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.discount-code__input-group{
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.discount-code__input{
  display: block;
}
.app-card.discount-code__input{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.discount-code__input:hover{
  text-decoration-line: none;
  color: inherit;
}
.discount-code__input{
  width: 100%;
  border-radius: 0.375rem;
  border-width: 0px;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 12px;
  padding-right: 12px;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__input{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.discount-code__input::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
.discount-code__input::placeholder{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__input::-moz-placeholder{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
.discount-code__input::placeholder{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.discount-code__input:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
@media (min-width: 640px){
  .discount-code__input{
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.discount-code__status{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
@keyframes spin{
  to{
    transform: rotate(360deg);
  }
}
.discount-code__status .spinner{
  animation: spin 1s linear infinite;
  border-radius: 9999px;
  height: 16px;
  width: 16px;
  border-width: 2px;
  border-color: rgb(209 213 219 / 1);
  --tw-border-opacity: 1;
  border-top-color: rgb(79 70 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__status .spinner{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    border-top-color: rgb(79 70 229 / var(--tw-border-opacity, 1));
  }
}
.discount-code__status .valid{
  --tw-text-opacity: 1;
  color: rgb(34 197 94 / 1);
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__status .valid{
    color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  }
}
.discount-code__status .valid::before {
  content: "✓";
}
.discount-code__status .invalid{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
  font-size: 1.125rem;
  line-height: 1.75rem;
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__status .invalid{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.discount-code__status .invalid::before {
  content: "✕";
}
.discount-code__details{
  margin-top: 4px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.discount-code__details .discount-valid{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__details .discount-valid{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.discount-code__details .discount-invalid{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.discount-code__details .discount-invalid{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.payment-history-table__cell{
  white-space: nowrap;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  padding-left: 12px;
  padding-right: 12px;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-history-table__cell{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.payment-history-table__cell--id{
  padding-left: 16px;
}
@media (min-width: 640px) {
  .payment-history-table__cell--id{
    padding-left: 0px;
  }
}
.payment-history-table__cell--id .invoice-id{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.payment-history-table__cell--id .invoice-id--short{
  display: inline-block;
}
@media (min-width: 640px) {
  .payment-history-table__cell--id .invoice-id--short{
    display: none;
  }
.payment-method-update__error.payment-history-table__cell--id .invoice-id--short {
  display: none;
}
.subscription-checkout__error.payment-history-table__cell--id .invoice-id--short {
  display: none;
}
.token-purchase-form__error.payment-history-table__cell--id .invoice-id--short {
  display: none;
}
}
.payment-history-table__cell--id .invoice-id--long{
  display: none;
}
.payment-method-update__error.payment-history-table__cell--id .invoice-id--long {
  display: none;
}
.subscription-checkout__error.payment-history-table__cell--id .invoice-id--long {
  display: none;
}
.token-purchase-form__error.payment-history-table__cell--id .invoice-id--long {
  display: none;
}
@media (min-width: 640px) {
  .payment-history-table__cell--id .invoice-id--long{
    display: inline-block;
  }
}
.payment-history-table__cell--id .copy-btn{
  margin-left: 8px;
  padding: 4px;
  border-radius: 0.25rem;
}
.payment-history-table__cell--id .copy-btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-history-table__cell--id .copy-btn:hover{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.payment-history-table__cell--id .copy-btn{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.payment-history-table__cell--download{
  padding-right: 16px;
}
@media (min-width: 640px) {
  .payment-history-table__cell--download{
    padding-right: 0px;
  }
}
.payment-history-table__cell--download .btn, .payment-history-table__cell--download body.application .btn-warning, body.application .payment-history-table__cell--download .btn-warning, .payment-history-table__cell--download body.application .btn-danger, body.application .payment-history-table__cell--download .btn-danger, .payment-history-table__cell--download body.application .btn-success, body.application .payment-history-table__cell--download .btn-success, .payment-history-table__cell--download body.application .btn-primary, .payment-history-table__cell--download body.application form input[type=submit], body.application .payment-history-table__cell--download .btn-primary, body.application .payment-history-table__cell--download form input[type=submit], body.application form .payment-history-table__cell--download input[type=submit]{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-history-table__cell--download .btn, .payment-history-table__cell--download body.application .btn-warning, body.application .payment-history-table__cell--download .btn-warning, .payment-history-table__cell--download body.application .btn-danger, body.application .payment-history-table__cell--download .btn-danger, .payment-history-table__cell--download body.application .btn-success, body.application .payment-history-table__cell--download .btn-success, .payment-history-table__cell--download body.application .btn-primary, .payment-history-table__cell--download body.application form input[type=submit], body.application .payment-history-table__cell--download .btn-primary, body.application .payment-history-table__cell--download form input[type=submit], body.application form .payment-history-table__cell--download input[type=submit]{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.payment-history-table__cell--download .btn:hover, .payment-history-table__cell--download body.application .btn-warning:hover, body.application .payment-history-table__cell--download .btn-warning:hover, .payment-history-table__cell--download body.application .btn-danger:hover, body.application .payment-history-table__cell--download .btn-danger:hover, .payment-history-table__cell--download body.application .btn-success:hover, body.application .payment-history-table__cell--download .btn-success:hover, .payment-history-table__cell--download body.application .btn-primary:hover, .payment-history-table__cell--download body.application form input[type=submit]:hover, body.application .payment-history-table__cell--download .btn-primary:hover, body.application .payment-history-table__cell--download form input[type=submit]:hover, body.application form .payment-history-table__cell--download input[type=submit]:hover{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-history-table__cell--download .btn:hover, .payment-history-table__cell--download body.application .btn-warning:hover, body.application .payment-history-table__cell--download .btn-warning:hover, .payment-history-table__cell--download body.application .btn-danger:hover, body.application .payment-history-table__cell--download .btn-danger:hover, .payment-history-table__cell--download body.application .btn-success:hover, body.application .payment-history-table__cell--download .btn-success:hover, .payment-history-table__cell--download body.application .btn-primary:hover, .payment-history-table__cell--download body.application form input[type=submit]:hover, body.application .payment-history-table__cell--download .btn-primary:hover, body.application .payment-history-table__cell--download form input[type=submit]:hover, body.application form .payment-history-table__cell--download input[type=submit]:hover{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.payment-history-table__cell--download .btn, .payment-history-table__cell--download body.application .btn-warning, body.application .payment-history-table__cell--download .btn-warning, .payment-history-table__cell--download body.application .btn-danger, body.application .payment-history-table__cell--download .btn-danger, .payment-history-table__cell--download body.application .btn-success, body.application .payment-history-table__cell--download .btn-success, .payment-history-table__cell--download body.application .btn-primary, .payment-history-table__cell--download body.application form input[type=submit], body.application .payment-history-table__cell--download .btn-primary, body.application .payment-history-table__cell--download form input[type=submit], body.application form .payment-history-table__cell--download input[type=submit]{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.payment-history-table--empty{
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .payment-history-table--empty{
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.payment-history-table--empty h3{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-history-table--empty h3{
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.payment-history-table--empty p{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-history-table--empty p{
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.payment-method-update__header{
  margin-bottom: 24px;
}
.payment-method-update__title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .payment-method-update__title{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.payment-method-update__title{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__title{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.payment-method-update__form > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - 0));
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * 0);
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
.payment-method-update__content > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - 0));
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * 0);
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
@media (min-width: 1024px) {
  .payment-method-update__content > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
  .payment-method-update__content{
    display: flex;
    gap: 32px;
  }
}
.payment-method-update__existing-methods {
  flex: 1 1 50%;
}
.payment-method-update__list{
  border-radius: 0.5rem;
}
.payment-method-update__list-item{
  display: flex;
  align-items: center;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 24px;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__list-item{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.payment-method-update__list-item:first-child{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.payment-method-update__list-item:last-child{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.payment-method-update__radio-group > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - 0));
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * 0);
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
.payment-method-update__radio-option{
  display: flex;
  align-items: center;
}
.payment-method-update__radio{
  height: 16px;
  width: 16px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__radio{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }
}
.payment-method-update__radio:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
.payment-method-update__radio-label{
  margin-left: 12px;
  display: block;
}
.app-card.payment-method-update__radio-label{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.payment-method-update__radio-label:hover{
  text-decoration-line: none;
  color: inherit;
}
.payment-method-update__radio-label{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__radio-label{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.payment-method-update__payment-method{
  display: flex;
  align-items: center;
}
@media (min-width: 1024px) {
  .payment-method-update__new-card {
    flex: 1 1 50%;
  }
}
.payment-method-update__error{
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
  padding: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__error{
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }
}
.payment-method-update__error.hidden {
  display: none;
}
.payment-method-update__payment-element{
  min-height: 150px;
}
.payment-method-update__actions{
  margin-top: 24px;
}
.payment-method-update__submit{
  width: 100%;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__submit{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.payment-method-update__submit:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__submit:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }
}
.payment-method-update__submit:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #4f46e5;
}
.payment-method-update__submit:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
.payment-method-update__cancelled{
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(254 252 232 / 1);
  padding: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-update__cancelled{
    background-color: rgb(254 252 232 / var(--tw-bg-opacity, 1));
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.payment-method-form #payment-method-element {
  margin-bottom: 1rem;
}
.payment-method-form #payment-method-error-message{
  margin-top: 8px;
  margin-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-form #payment-method-error-message{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.payment-method{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  grid-column-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding-top: 20px;
  padding-bottom: 20px;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.payment-method:first-child{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.payment-method:last-child{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.payment-method .payment-method-input{
  margin-left: 24px;
}
.payment-method .remove-button{
  margin-right: 16px;
}
@media (min-width: 1024px) {
  .payment-methods{
    max-width: 42rem;
  }
}
.payment-methods h2{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .payment-methods h2{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.payment-methods h2{
  margin-bottom: 32px;
}
.payment-methods--empty{
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .payment-methods--empty{
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.payment-methods--empty h3{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(32 44 61 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-methods--empty h3{
  color: rgb(32 44 61 / var(--tw-text-opacity, 1));
  }
}
.payment-methods--empty p{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.payment-methods--empty p{
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.payment-methods .default-payment-method-form{
  margin-bottom: 32px;
}
.payment-method{
  display: flex;
  align-items: center;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding-top: 20px;
  padding-bottom: 20px;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.payment-method:first-child{
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.payment-method:last-child{
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.payment-method-input{
  margin-left: 24px;
  margin-right: 24px;
}
.payment-method-label{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-column-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  grid-row-gap: 0px;
  row-gap: 0px;
  grid-template-columns: 4.375rem 1fr;
}
.payment-method-label img, .payment-method-label__missing{
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;
  align-self: center;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
}
.payment-method-label--empty{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(46 58 77 / 1);
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-label--empty{
  color: rgb(46 58 77 / var(--tw-text-opacity, 1));
  }
}
.payment-method-label__card{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(46 58 77 / 1);
  line-height: 1;
  align-self: center;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-label__card{
  color: rgb(46 58 77 / var(--tw-text-opacity, 1));
  }
}
.payment-method-label__expiration{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1;
  align-self: center;
}
.payment-method-input{
  margin-left: 24px;
  margin-right: 24px;
}
.payment-method-label{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-column-gap: 16px;
  -moz-column-gap: 16px;
       column-gap: 16px;
  grid-row-gap: 0px;
  row-gap: 0px;
  grid-template-columns: 4.375rem 1fr;
}
.payment-method-label img, .payment-method-label__missing{
  grid-column: span 1 / span 1;
  grid-row: span 2 / span 2;
  align-self: center;
  text-overflow: ellipsis;
  text-wrap: nowrap;
  overflow: hidden;
}
.payment-method-label__card{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(46 58 77 / 1);
  line-height: 1;
  align-self: center;
}
@supports (color: rgb(0 0 0 / 0)){
.payment-method-label__card{
  color: rgb(46 58 77 / var(--tw-text-opacity, 1));
  }
}
.payment-method-label__expiration{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  line-height: 1;
  align-self: center;
}
.subscription-actions{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) {
  .subscription-actions{
    flex-direction: row;
    justify-content: flex-start;
  }
}
.subscription-actions__button{
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.subscription-actions__button:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.subscription-actions__button--upgrade{
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__button--upgrade{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.subscription-actions__button--upgrade:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__button--upgrade:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }
}
.subscription-actions__button--upgrade:focus-visible{
  outline-color: #4f46e5;
}
.subscription-actions__button--end-trial{
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__button--end-trial{
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.subscription-actions__button--end-trial:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(234 179 8 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__button--end-trial:hover{
    background-color: rgb(234 179 8 / var(--tw-bg-opacity, 1));
  }
}
.subscription-actions__button--end-trial:focus-visible{
  outline-color: #ca8a04;
}
.subscription-actions__button--cancel{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__button--cancel{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-actions__button--cancel:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__button--cancel:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.subscription-actions__icon{
  margin-right: 0.375rem;
}
.subscription-actions__icon--red{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__icon--red{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.subscription-actions__icon--yellow{
  --tw-text-opacity: 1;
  color: rgb(234 179 8 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-actions__icon--yellow{
    color: rgb(234 179 8 / var(--tw-text-opacity, 1));
  }
}
.subscription-cancel .modal-description{
  margin-bottom: 32px;
}
.subscription-cancel .modal-actions{
  display: flex;
  justify-content: flex-end;
}
.subscription-cancel .modal-actions > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(16px * 0);
  margin-right: calc(16px * var(--tw-space-x-reverse));
  margin-left: calc(16px * calc(1 - 0));
  margin-left: calc(16px * calc(1 - var(--tw-space-x-reverse)));
}
.subscription-cancel .modal-actions form{
  margin: 0px;
}
.subscription-card{
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding: 24px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.subscription-card__header{
  margin-bottom: 24px;
}
.subscription-card__title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .subscription-card__title{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.subscription-card__title{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__title{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__price{
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  -moz-column-gap: 4px;
       column-gap: 4px;
}
.subscription-card__amount{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .subscription-card__amount{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.subscription-card__amount{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__amount{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__period{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__period{
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__features{
  margin-bottom: 24px;
  flex-grow: 1;
}
.subscription-card__list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - 0));
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * 0);
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
.subscription-card__feature{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  display: flex;
  align-items: center;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__feature{
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__check{
  height: 20px;
  width: 20px;
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / 1);
  margin-right: 12px;
  flex-shrink: 0;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__check{
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__button{
  width: 100%;
  border-radius: 0.375rem;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.subscription-card__button:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
}
.subscription-card__button--current{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  cursor: not-allowed;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__button--current{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__button--choose{
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__button--choose{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.subscription-card__button--choose:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-card__button--choose:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }
}
.subscription-card__button--choose:focus-visible{
  outline-color: #4f46e5;
}
.subscription-checkout{
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .subscription-checkout{
    padding-left: 24px;
    padding-right: 24px;
  }
}
.subscription-checkout__header{
  text-align: center;
  margin-bottom: 32px;
}
.subscription-checkout__title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__title{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__price{
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__price{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__amount{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .subscription-checkout__amount{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.subscription-checkout__amount{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__amount{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__period{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__period{
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__form > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(32px * calc(1 - 0));
  margin-top: calc(32px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(32px * 0);
  margin-bottom: calc(32px * var(--tw-space-y-reverse));
}
.subscription-checkout__section-title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  margin-bottom: 8px;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__section-title{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__payment-methods > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.subscription-checkout__payment-methods{
  margin-bottom: 24px;
}
.subscription-checkout__payment-options > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.subscription-checkout__payment-method{
  display: flex;
  align-items: center;
}
.subscription-checkout__new-card{
  display: flex;
  align-items: center;
}
.subscription-checkout__new-card-input{
  height: 16px;
  width: 16px;
  margin-left: 24px;
  margin-right: 24px;
}
.subscription-checkout__new-card-label{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__new-card-label{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__payment-element > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.subscription-checkout__error{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__error{
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__error.hidden {
  display: none;
}
.subscription-checkout__discount{
  margin-top: 24px;
}
.subscription-checkout__discount-input{
  display: flex;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.subscription-checkout__discount-field{
  display: block;
}
.app-card.subscription-checkout__discount-field{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.subscription-checkout__discount-field:hover{
  text-decoration-line: none;
  color: inherit;
}
.subscription-checkout__discount-field{
  width: 100%;
  border-radius: 0.375rem;
  border-width: 0px;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__discount-field{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__discount-field::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
.subscription-checkout__discount-field::placeholder{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__discount-field::-moz-placeholder{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
.subscription-checkout__discount-field::placeholder{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__discount-field:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(79 70 229 / var(--tw-ring-opacity, 1));
}
@media (min-width: 640px){
  .subscription-checkout__discount-field{
    font-size: 0.875rem;
    line-height: 1.5rem;
  }
}
.subscription-checkout__discount-button{
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__discount-button{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__discount-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__discount-button:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.subscription-checkout__discount-message{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 8px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__discount-message{
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__actions{
  margin-top: 24px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}
.subscription-checkout__submit{
  flex: 1 1;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__submit{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__submit:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__submit:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }
}
.subscription-checkout__submit:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #4f46e5;
}
.subscription-checkout__submit:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.subscription-checkout__cancel{
  flex: 1 1;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-inset: inset;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__cancel{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-checkout__cancel:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__cancel:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.subscription-checkout__cancel{
  text-align: center;
}
.subscription-checkout__trial{
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
  font-weight: 500;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-checkout__trial{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.subscription-details__list{
  display: grid;
  grid-gap: 16px;
  gap: 16px;
}
@media (min-width: 640px) {
  .subscription-details__list{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.subscription-details__item{
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.subscription-details__label{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-details__label{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.subscription-details__value{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-details__value{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-details__icon{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
  width: 16px;
  height: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-details__icon{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.subscription-details__payment{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.subscription-details__payment-info{
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.subscription-details__expiration{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-details__expiration{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.subscription-details__update-link{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-details__update-link{
    color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }
}
.subscription-details__update-link:hover{
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-details__update-link:hover{
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }
}
.subscription-end-trial .modal-description{
  margin-bottom: 32px;
}
.subscription-end-trial .modal-actions{
  display: flex;
  justify-content: flex-end;
}
.subscription-end-trial .modal-actions > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(16px * 0);
  margin-right: calc(16px * var(--tw-space-x-reverse));
  margin-left: calc(16px * calc(1 - 0));
  margin-left: calc(16px * calc(1 - var(--tw-space-x-reverse)));
}
.subscription-end-trial .modal-actions form{
  margin: 0px;
}
.subscription-progress__header{
  margin-bottom: 16px;
}
.subscription-progress__title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-progress__title{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.subscription-progress__stats{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-progress__stats{
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-upgrade .modal-body{
  padding: 24px;
}
.subscription-upgrade .subscription-plans > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(32px * calc(1 - 0));
  margin-top: calc(32px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(32px * 0);
  margin-bottom: calc(32px * var(--tw-space-y-reverse));
}
.subscription-upgrade .plan-section-title{
  margin-bottom: 16px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.subscription-upgrade .current-plan{
  opacity: 0.75;
}
.subscription-upgrade .available-plans > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - 0));
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * 0);
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
.subscription-upgrade .plan-options > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.subscription-upgrade .plan-option{
  position: relative;
  border-radius: 0.5rem;
  border-width: 2px;
  border-color: transparent;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.subscription-upgrade .plan-option:hover{
  --tw-border-opacity: 1;
  border-color: rgb(32 111 161 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-upgrade .plan-option:hover{
    border-color: rgb(32 111 161 / var(--tw-border-opacity, 1));
  }
}
.subscription-upgrade .plan-option input[type=radio]{
  position: absolute;
  inset: 0px;
  z-index: 10;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.subscription-upgrade .plan-option input[type=radio]:checked + .subscription-card{
  --tw-border-opacity: 1;
  border-color: rgb(32 111 161 / 1);
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: rgb(32 111 161 / var(--tw-ring-opacity, 1));
  --tw-ring-opacity: 0.5;
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-upgrade .plan-option input[type=radio]:checked + .subscription-card{
    border-color: rgb(32 111 161 / var(--tw-border-opacity, 1));
  }
}
.subscription-upgrade .no-upgrades-message{
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.subscription-upgrade .no-upgrades-message{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.subscription-upgrade .modal-actions{
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}
.subscription-upgrade .modal-actions > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(16px * 0);
  margin-right: calc(16px * var(--tw-space-x-reverse));
  margin-left: calc(16px * calc(1 - 0));
  margin-left: calc(16px * calc(1 - var(--tw-space-x-reverse)));
}
.token-grants-table__cell{
  white-space: nowrap;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-grants-table__cell{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.token-grants-table__cell--first{
  padding-left: 16px;
  padding-right: 12px;
}
@media (min-width: 640px) {
  .token-grants-table__cell--first{
    padding-left: 0px;
  }
}
.token-grants-table__cell--middle{
  padding-left: 12px;
  padding-right: 12px;
}
.token-grants-table__cell--last{
  padding-left: 12px;
  padding-right: 16px;
}
@media (min-width: 640px) {
  .token-grants-table__cell--last{
    padding-right: 0px;
  }
}
.token-purchase-form__description{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 24px;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__description{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.token-purchase-form__payment-methods > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.token-purchase-form__payment-methods{
  margin-bottom: 24px;
}
.token-purchase-form__payment-method{
  display: flex;
  align-items: center;
}
.token-purchase-form__new-card-input{
  height: 16px;
  width: 16px;
  margin-right: 24px;
}
@media (min-width: 768px) {
  .token-purchase-form__new-card-input{
    margin-left: 24px;
  }
}
.token-purchase-form__new-card-label{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__new-card-label{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.token-purchase-form__payment-element > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.token-purchase-form__error{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__error{
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.token-purchase-form__error.hidden {
  display: none;
}
.token-purchase-form__submit{
  width: 100%;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__submit{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.token-purchase-form__submit:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__submit:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }
}
.token-purchase-form__submit:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #4f46e5;
}
.token-purchase-form__submit:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.token-purchase-form__manage-link{
  margin-top: 16px;
  text-align: center;
}
.token-purchase-form__manage-link a{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(79 70 229 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__manage-link a{
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
  }
}
.token-purchase-form__manage-link a:hover{
  --tw-text-opacity: 1;
  color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-purchase-form__manage-link a:hover{
    color: rgb(99 102 241 / var(--tw-text-opacity, 1));
  }
}
.token-usage-summary__wrapper{
  margin-top: 24px;
  margin-bottom: 32px;
}
.token-usage-summary__title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-usage-summary__title{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.token-usage-summary__stats{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.token-usage-summary__stats{
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.token-usage-summary__progress{
  margin-top: 16px;
}
.performance-over-time-card{
  margin-top: 32px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 24px;
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.performance-over-time-card .card-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.performance-over-time-card .card-header h2{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header h2{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.performance-over-time-card .card-header .section-controls{
  display: flex;
  align-items: center;
  gap: 16px;
}
.performance-over-time-card .card-header .section-controls .metric-toggles{
  display: flex;
  align-items: center;
  gap: 8px;
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle{
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle.active{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle.active{
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot{
  height: 12px;
  width: 12px;
  border-radius: 9999px;
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot.installs-dot{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot.installs-dot{
    background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
  }
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot.revenue-dot{
  --tw-bg-opacity: 1;
  background-color: rgb(34 197 94 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot.revenue-dot{
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
  }
}
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot.active-users-dot{
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .card-header .section-controls .metric-toggles .metric-toggle .metric-dot.active-users-dot{
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }
}
.performance-over-time-card .chart-container{
  margin-bottom: 24px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding-bottom: 16px;
  height: 400px;
}
@supports (color: rgb(0 0 0 / 0)){
.performance-over-time-card .chart-container{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.performance-over-time-card .chart-container canvas{
  height: 100%;
  width: 100%;
}
.progress-indicator__track{
  position: relative;
  width: 100%;
  height: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / 1);
  border-radius: 9999px;
  overflow: hidden;
}
@supports (color: rgb(0 0 0 / 0)){
.progress-indicator__track{
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
  }
}
.remove-button{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.remove-button{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.remove-button:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.remove-button:hover{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.remove-button{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  padding: 8px;
  border-radius: 0.25rem;
}
.remove-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.remove-button:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.store-rankings-card{
  margin-top: 32px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 24px;
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.store-rankings-card .card-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.store-rankings-card .card-header h2{
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .card-header h2{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .store-selector{
  margin-bottom: 24px;
  display: flex;
  gap: 8px;
}
.store-rankings-card .store-selector .store-button{
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .store-selector .store-button{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .store-selector .store-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .store-selector .store-button:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.store-rankings-card .store-selector .store-button.active{
  --tw-border-opacity: 1;
  border-color: rgb(191 219 254 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(29 78 216 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .store-selector .store-button.active{
    border-color: rgb(191 219 254 / var(--tw-border-opacity, 1));
    background-color: rgb(239 246 255 / var(--tw-bg-opacity, 1));
    color: rgb(29 78 216 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .store-selector .store-button .store-icon {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
  flex-shrink: 0 !important;
  display: inline-block !important;
  overflow: hidden !important;
}
.store-rankings-card .store-selector .store-button .store-icon.apple-icon {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.store-rankings-card .store-selector .store-button .store-icon.google-icon {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  min-width: 16px !important;
  min-height: 16px !important;
  -o-object-fit: contain !important;
     object-fit: contain !important;
}
.store-rankings-card .rankings-table{
  margin-bottom: 24px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding-bottom: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-header{
  display: flex;
  align-items: center;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-header{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-header .header-cell.category{
  flex: 1 1;
}
.store-rankings-card .rankings-table .table-header .header-cell.rank{
  width: 64px;
  text-align: center;
}
.store-rankings-card .rankings-table .table-header .header-cell.featured{
  width: 80px;
  text-align: center;
}
.store-rankings-card .rankings-table .table-header .header-cell.version{
  width: 64px;
  text-align: center;
}
.store-rankings-card .rankings-table .table-header .header-cell.last-updated{
  width: 80px;
  text-align: center;
}
.store-rankings-card .rankings-table .table-body .table-row{
  display: flex;
  align-items: center;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  padding-top: 16px;
  padding-bottom: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row:last-child{
  border-bottom-width: 0px;
}
.store-rankings-card .rankings-table .table-body .table-row .cell{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.store-rankings-card .rankings-table .table-body .table-row .cell.category{
  flex: 1 1;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.category{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.rank{
  width: 64px;
  text-align: center;
}
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge{
  display: inline-block;
  border-radius: 0.25rem;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge.rank-good{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge.rank-good{
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge.rank-medium{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge.rank-medium{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge.rank-poor{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.rank .rank-badge.rank-poor{
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.featured{
  width: 80px;
  text-align: center;
}
.store-rankings-card .rankings-table .table-body .table-row .cell.featured .featured-badge{
  display: inline-block;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.featured .featured-badge{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.featured .not-featured{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.featured .not-featured{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.version{
  width: 64px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.version{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .rankings-table .table-body .table-row .cell.last-updated{
  width: 80px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .rankings-table .table-body .table-row .cell.last-updated{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.store-rankings-card .card-footer{
  padding-top: 16px;
}
.store-rankings-card .card-footer .update-time{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.store-rankings-card .card-footer .update-time{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.base-table{
  min-width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: 0px 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}
.base-table__wrapper{
  display: flow-root;
}
.base-table__scroll-wrapper{
  margin-left: -16px;
  margin-right: -16px;
  margin-top: -8px;
  margin-bottom: -8px;
  overflow-x: auto;
}
@media (min-width: 640px) {
  .base-table__scroll-wrapper{
    margin-left: -24px;
    margin-right: -24px;
  }
}
@media (min-width: 1024px) {
  .base-table__scroll-wrapper{
    margin-left: -32px;
    margin-right: -32px;
  }
}
.base-table__inner-wrapper{
  display: inline-block;
  min-width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  vertical-align: middle;
}
@media (min-width: 640px) {
  .base-table__inner-wrapper{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .base-table__inner-wrapper{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.base-table__header-row{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.base-table__header-row{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
.base-table__header{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 16px;
  padding-right: 12px;
  text-align: left;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.base-table__header{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 640px) {
  .base-table__header{
    padding-left: 0px;
  }
}
.base-table__body{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.base-table__body{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.base-table__body > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - 0));
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * 0);
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.base-table__body > :not([hidden]) ~ :not([hidden]){
    border-color: rgb(229 231 235 / var(--tw-divide-opacity, 1));
  }
}
.base-table__row:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.base-table__row:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
/* Base button styles */
.ui-button{
  border-radius: 0.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button{
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.ui-button:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #2563eb;
}
.ui-button{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.ui-button:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ui-button:disabled{
  opacity: 0.5;
  cursor: not-allowed;
}
.ui-button:disabled:hover{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ui-button {
  /* Size variants */
}
.ui-button--xs{
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
}
.ui-button--sm{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.ui-button--md{
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.ui-button--lg{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.5rem;
}
.ui-button--xl{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.ui-button {
  /* Theme variants */
}
.ui-button--primary{
  --tw-bg-opacity: 1;
  background-color: rgb(37 99 235 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button--primary{
    background-color: rgb(37 99 235 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
.ui-button--primary:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.ui-button--secondary{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button--secondary{
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
.ui-button--tertiary{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / 1);
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button--tertiary{
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.ui-button--success{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button--success{
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
.ui-button--warning{
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button--warning{
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
.ui-button--danger{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.ui-button--danger{
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
.workspace-selector{
  position: relative;
  flex-shrink: 0;
}
.workspace-selector .workspace-select{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  border-radius: 0.375rem;
  padding-left: 16px;
  padding-right: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-selector .workspace-select{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
.workspace-selector .workspace-select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-selector .workspace-select:focus{
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }
}
.workspace-selector .workspace-select{
  cursor: pointer;
  min-width: 140px;
}
.workspace-selector .workspace-dropdown-icon{
  position: absolute;
  right: 12px;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  font-size: 0.75rem;
  line-height: 1rem;
  pointer-events: none;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-selector .workspace-dropdown-icon{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
html{
  height: 100dvh;
  min-height: 100dvh;
}
html body {
  --body-padding-right: 0px;
  padding-right: 0px;
  padding-right: var(--body-padding-right);
}
body.application{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  line-height: 1.25;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.application{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
body.application nav.main-navigation{
  height: 48px;
  padding-left: 16px;
  padding-right: 16px;
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / 1);
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@supports (color: rgb(0 0 0 / 0)){
body.application nav.main-navigation{
    background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
    color: rgb(229 231 235 / var(--tw-text-opacity, 1));
  }
}
body.application h1{
  font-size: 1.5rem;
  line-height: 2rem;
}
body.application h2{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
body.application h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
body.application h4{
  font-size: 1rem;
  line-height: 1.5rem;
}
body.application h5{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.application h6{
  font-size: 0.75rem;
  line-height: 1rem;
}
body.application .content{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 32px;
  border-radius: 0.5rem;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  margin: 32px;
  min-width: 20rem;
  width: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
body.application .content{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
@media (min-width: 640px) {
  body.application .content{
    width: auto;
    width: initial;
  }
}
body.application .btn, body.application .btn-warning, body.application .btn-danger, body.application .btn-success, body.application .btn-primary, body.application form input[type=submit],
body.application .btn-default{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0.5rem;
  cursor: pointer;
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.application .btn:hover, body.application .btn-warning:hover, body.application .btn-danger:hover, body.application .btn-success:hover, body.application .btn-primary:hover, body.application form input[type=submit]:hover,
body.application .btn-default:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.application .btn, body.application .btn-warning, body.application .btn-danger, body.application .btn-success, body.application .btn-primary, body.application form input[type=submit],
body.application .btn-default{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / 1);
  text-align: center;
}
@supports (color: rgb(0 0 0 / 0)){
body.application .btn, body.application .btn-warning, body.application .btn-danger, body.application .btn-success, body.application .btn-primary, body.application form input[type=submit],
body.application .btn-default{
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }
}
body.application .btn-primary, body.application form input[type=submit]{
  --tw-bg-opacity: 1;
  background-color: rgb(82 82 91 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.application .btn-primary, body.application form input[type=submit]{
    background-color: rgb(82 82 91 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
body.application .btn-success{
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.application .btn-success{
    background-color: rgb(22 163 74 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
body.application .btn-danger{
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.application .btn-danger{
    background-color: rgb(220 38 38 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
body.application .btn-warning{
  --tw-bg-opacity: 1;
  background-color: rgb(202 138 4 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.application .btn-warning{
    background-color: rgb(202 138 4 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
body.application form{
  margin-top: 16px;
  margin-bottom: 16px;
}
body.application form .field,
body.application form .input,
body.application form .actions{
  margin-top: 16px;
  margin-bottom: 16px;
}
body.application form .field input:not([type=checkbox]),
body.application form .field textarea,
body.application form .input input:not([type=checkbox]),
body.application form .input textarea,
body.application form .actions input:not([type=checkbox]),
body.application form .actions textarea{
  width: 100%;
}
body.application form input.boolean{
  margin-right: 8px;
}
body.application form label.boolean{
  display: flex;
  vertical-align: baseline;
  line-height: 1;
}
body.application form label.boolean abbr[title=required]{
  margin-left: 4px;
}
body.application form .error_notification,
body.application form .error{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.application form .error_notification,
body.application form .error{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
body.application form .form-actions{
  display: flex;
  justify-content: space-between;
}
/* Design inspiration from Deepnote: https://www.saasui.design/application/deepnote */
body.deep-portal{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 100vh;
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / 1);
  width: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header{
  position: relative;
}
body.deep-portal header .site-context{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context{
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
  }
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context{
    flex-wrap: nowrap;
  }
}
body.deep-portal header .site-context .heading{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  font-weight: 500;
  align-items: center;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .heading{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context .heading{
    flex-grow: 0;
    padding-left: 16px;
    border-inline-end-width: 1px;
    width: 255px;
  }
}
body.deep-portal header .site-context .heading button{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .heading button{
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context .heading button{
    display: none;
  }
body.payment-method-update__error.deep-portal header .site-context .heading button {
  display: none;
}
body.subscription-checkout__error.deep-portal header .site-context .heading button {
  display: none;
}
body.token-purchase-form__error.deep-portal header .site-context .heading button {
  display: none;
}
}
body.deep-portal header .site-context .heading button .fa-fw{
  border-radius: 0.25rem;
  height: 32px;
  line-height: 32px;
  width: 32px;
}
body.deep-portal header .site-context .heading button:focus .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .heading button:focus .fa-fw{
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal header .site-context .heading button:hover .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / 1);
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .heading button:hover .fa-fw{
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header .site-context .heading a.home-link{
  display: flex;
  flex-direction: row;
  align-items: center;
}
body.deep-portal header .site-context .heading a.home-link .brand{
  padding-left: 8px;
  text-transform: uppercase;
}
body.deep-portal header .site-context .header-central-area{
  display: none;
}
body.payment-method-update__error.deep-portal header .site-context .header-central-area {
  display: none;
}
body.subscription-checkout__error.deep-portal header .site-context .header-central-area {
  display: none;
}
body.token-purchase-form__error.deep-portal header .site-context .header-central-area {
  display: none;
}
@media (min-width: 1024px) {
  body.deep-portal header .site-context .header-central-area{
    display: flex;
    flex-grow: 1;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
body.deep-portal header .site-context .header-central-area .search-field{
  position: relative;
  width: 100%;
  max-width: 24rem;
}
body.deep-portal header .site-context .header-central-area .search-field .search-icon{
  position: absolute;
  left: 12px;
  top: 50%;
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), -50%) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
  pointer-events: none;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .header-central-area .search-field .search-icon{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header .site-context .header-central-area .search-field .search-input{
  width: 100%;
  padding-left: 40px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / 1);
  border-style: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .header-central-area .search-field .search-input{
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header .site-context .header-central-area .search-field .search-input::-moz-placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(127 127 128 / 1);
}
body.deep-portal header .site-context .header-central-area .search-field .search-input::placeholder{
  --tw-placeholder-opacity: 1;
  color: rgb(127 127 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .header-central-area .search-field .search-input::-moz-placeholder{
    color: rgb(127 127 128 / var(--tw-placeholder-opacity, 1));
  }
body.deep-portal header .site-context .header-central-area .search-field .search-input::placeholder{
    color: rgb(127 127 128 / var(--tw-placeholder-opacity, 1));
  }
}
body.deep-portal header .site-context .header-central-area .search-field .search-input:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .header-central-area .search-field .search-input:focus{
    border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal header .site-context .actions{
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 16px;
  order: 2;
  height: calc(1.25rem + 32px);
}
body.deep-portal header .site-context .actions button{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px;
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .actions button{
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header .site-context .actions button .fa-fw{
  border-radius: 0.25rem;
  height: 32px;
  line-height: 32px;
  width: 32px;
}
body.deep-portal header .site-context .actions button:focus .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .actions button:focus .fa-fw{
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal header .site-context .actions button:hover .fa-fw{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / 1);
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context .actions button:hover .fa-fw{
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header .site-context nav#page_context_more_actions_menu{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  position: absolute;
  display: none;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context nav#page_context_more_actions_menu{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
  }
}
body.payment-method-update__error.deep-portal header .site-context nav#page_context_more_actions_menu {
  display: none;
}
body.subscription-checkout__error.deep-portal header .site-context nav#page_context_more_actions_menu {
  display: none;
}
body.token-purchase-form__error.deep-portal header .site-context nav#page_context_more_actions_menu {
  display: none;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu{
  border-bottom-right-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  white-space: nowrap;
  right: 0;
  top: calc(100% - 1px);
  z-index: 1;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu.expanded{
  display: flex;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li{
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li a{
  display: block;
}
body.app-card.deep-portal header .site-context nav#page_context_more_actions_menu ul li a{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal header .site-context nav#page_context_more_actions_menu ul li a:hover{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li a{
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li a:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / 1);
  --tw-text-opacity: 1;
  color: rgb(71 85 105 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal header .site-context nav#page_context_more_actions_menu ul li a:hover{
    background-color: rgb(226 232 240 / var(--tw-bg-opacity, 1));
    color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  min-height: 0;
}
body.deep-portal .main-wrapper main{
  display: flex;
  flex-grow: 1;
  flex-direction: row;
  position: relative;
  min-height: 0;
}
body.deep-portal .main-wrapper main aside#main_menu{
  position: absolute;
  flex-shrink: 0;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  background-color: rgba(0, 0, 0, 0.75);
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_menu{
    position: static;
    background-color: transparent;
    background-color: initial;
    height: auto;
    height: initial;
    width: 255px;
  }
}
body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) {
  background-color: rgba(0, 0, 0, 0);
  transform: translateX(-100%);
  transition: background-color ease-in-out 0.1s, transform 0.5s ease-in-out 0.5s;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_menu:not(.expanded){
    display: block;
  }
body.app-card.deep-portal .main-wrapper main aside#main_menu:not(.expanded){
    cursor: pointer;
    text-decoration-line: none;
    color: inherit;
  }
body.app-card.deep-portal .main-wrapper main aside#main_menu:not(.expanded):hover{
    text-decoration-line: none;
    color: inherit;
  }
  body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) {
    transform: translateX(0);
  }
}
body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) nav {
  transform: translateX(-100%);
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_menu:not(.expanded) nav {
    transform: translateX(0);
  }
}
body.deep-portal .main-wrapper main aside#main_menu nav{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
  display: block;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main aside#main_menu nav{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }
}
body.app-card.deep-portal .main-wrapper main aside#main_menu nav{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal .main-wrapper main aside#main_menu nav:hover{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal .main-wrapper main aside#main_menu nav{
  border-right-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  height: 100%;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
  width: 255px;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main aside#main_menu nav{
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal .main-wrapper main aside#main_menu nav h2{
  font-weight: 500;
  padding-bottom: 8px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul{
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main aside#main_menu nav ul{
    color: rgb(100 116 139 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li{
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li:first-child{
  padding-top: 8px;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a{
  display: block;
}
body.app-card.deep-portal .main-wrapper main aside#main_menu nav ul li a{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal .main-wrapper main aside#main_menu nav ul li a:hover{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a{
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 0.5rem;
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a.active, body.deep-portal .main-wrapper main aside#main_menu nav ul li a:active{
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main aside#main_menu nav ul li a.active, body.deep-portal .main-wrapper main aside#main_menu nav ul li a:active{
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper main aside#main_menu nav ul li a:focus, body.deep-portal .main-wrapper main aside#main_menu nav ul li a:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main aside#main_menu nav ul li a:focus, body.deep-portal .main-wrapper main aside#main_menu nav ul li a:hover{
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper main article{
  display: block;
}
body.app-card.deep-portal .main-wrapper main article{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal .main-wrapper main article:hover{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal .main-wrapper main article{
  flex-grow: 1;
  max-height: 100%;
  overflow-y: scroll;
  padding: 16px;
  --tw-text-opacity: 1;
  color: rgb(30 41 59 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main article{
    color: rgb(30 41 59 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper main article a{
  --tw-text-opacity: 1;
  color: rgb(3 105 161 / 1);
  text-decoration-line: underline;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main article a{
    color: rgb(3 105 161 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper main article a:hover{
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / 1);
  text-decoration-line: none;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main article a:hover{
    color: rgb(2 132 199 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper main article h1{
  font-weight: 700;
  padding-bottom: 16px;
  font-size: 1.5rem;
  line-height: 2rem;
}
body.deep-portal .main-wrapper main aside#main_context{
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / 1);
  border-left-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  flex-shrink: 0;
  height: 100%;
  display: none;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper main aside#main_context{
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
  }
}
body.payment-method-update__error.deep-portal .main-wrapper main aside#main_context {
  display: none;
}
body.subscription-checkout__error.deep-portal .main-wrapper main aside#main_context {
  display: none;
}
body.token-purchase-form__error.deep-portal .main-wrapper main aside#main_context {
  display: none;
}
body.deep-portal .main-wrapper main aside#main_context{
  overflow-y: scroll;
  font-size: 0.875rem;
  line-height: 1.25rem;
  width: 255px;
}
body.deep-portal .main-wrapper main aside#main_context:empty{
  display: none;
}
body.payment-method-update__error.deep-portal .main-wrapper main aside#main_context:empty {
  display: none;
}
body.subscription-checkout__error.deep-portal .main-wrapper main aside#main_context:empty {
  display: none;
}
body.token-purchase-form__error.deep-portal .main-wrapper main aside#main_context:empty {
  display: none;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper main aside#main_context{
    display: block;
  }
body.app-card.deep-portal .main-wrapper main aside#main_context{
    cursor: pointer;
    text-decoration-line: none;
    color: inherit;
  }
body.app-card.deep-portal .main-wrapper main aside#main_context:hover{
    text-decoration-line: none;
    color: inherit;
  }
}
body.deep-portal .main-wrapper > main article form.button_to{
  display: inline-block;
}
body.deep-portal .main-wrapper > main article .btn, body.deep-portal .main-wrapper > main article body.application .btn-primary, body.application body.deep-portal .main-wrapper > main article .btn-primary, body.deep-portal .main-wrapper > main article body.application .btn-success, body.application body.deep-portal .main-wrapper > main article .btn-success, body.deep-portal .main-wrapper > main article body.application .btn-danger, body.application body.deep-portal .main-wrapper > main article .btn-danger, body.deep-portal .main-wrapper > main article body.application .btn-warning, body.application body.deep-portal .main-wrapper > main article .btn-warning, body.deep-portal .main-wrapper > main article body.application form input[type=submit], body.application form body.deep-portal .main-wrapper > main article input[type=submit], body.deep-portal .main-wrapper > main article button{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0.375rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .btn, body.deep-portal .main-wrapper > main article body.application .btn-primary, body.application body.deep-portal .main-wrapper > main article .btn-primary, body.deep-portal .main-wrapper > main article body.application .btn-success, body.application body.deep-portal .main-wrapper > main article .btn-success, body.deep-portal .main-wrapper > main article body.application .btn-danger, body.application body.deep-portal .main-wrapper > main article .btn-danger, body.deep-portal .main-wrapper > main article body.application .btn-warning, body.application body.deep-portal .main-wrapper > main article .btn-warning, body.deep-portal .main-wrapper > main article body.application form input[type=submit], body.application form body.deep-portal .main-wrapper > main article input[type=submit], body.deep-portal .main-wrapper > main article button{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .btn:active, body.deep-portal .main-wrapper > main article body.application .btn-primary:active, body.application body.deep-portal .main-wrapper > main article .btn-primary:active, body.deep-portal .main-wrapper > main article body.application .btn-success:active, body.application body.deep-portal .main-wrapper > main article .btn-success:active, body.deep-portal .main-wrapper > main article body.application .btn-danger:active, body.application body.deep-portal .main-wrapper > main article .btn-danger:active, body.deep-portal .main-wrapper > main article body.application .btn-warning:active, body.application body.deep-portal .main-wrapper > main article .btn-warning:active, body.deep-portal .main-wrapper > main article body.application form input[type=submit]:active, body.application form body.deep-portal .main-wrapper > main article input[type=submit]:active, body.deep-portal .main-wrapper > main article .btn:focus, body.deep-portal .main-wrapper > main article body.application .btn-primary:focus, body.application body.deep-portal .main-wrapper > main article .btn-primary:focus, body.deep-portal .main-wrapper > main article body.application .btn-success:focus, body.application body.deep-portal .main-wrapper > main article .btn-success:focus, body.deep-portal .main-wrapper > main article body.application .btn-danger:focus, body.application body.deep-portal .main-wrapper > main article .btn-danger:focus, body.deep-portal .main-wrapper > main article body.application .btn-warning:focus, body.application body.deep-portal .main-wrapper > main article .btn-warning:focus, body.deep-portal .main-wrapper > main article body.application form input[type=submit]:focus, body.application form body.deep-portal .main-wrapper > main article input[type=submit]:focus, body.deep-portal .main-wrapper > main article .btn:focus-visible, body.deep-portal .main-wrapper > main article body.application .btn-primary:focus-visible, body.application body.deep-portal .main-wrapper > main article .btn-primary:focus-visible, body.deep-portal .main-wrapper > main article body.application .btn-success:focus-visible, body.application body.deep-portal .main-wrapper > main article .btn-success:focus-visible, body.deep-portal .main-wrapper > main article body.application .btn-danger:focus-visible, body.application body.deep-portal .main-wrapper > main article .btn-danger:focus-visible, body.deep-portal .main-wrapper > main article body.application .btn-warning:focus-visible, body.application body.deep-portal .main-wrapper > main article .btn-warning:focus-visible, body.deep-portal .main-wrapper > main article body.application form input[type=submit]:focus-visible, body.application form body.deep-portal .main-wrapper > main article input[type=submit]:focus-visible, body.deep-portal .main-wrapper > main article .btn:hover, body.deep-portal .main-wrapper > main article body.application .btn-primary:hover, body.application body.deep-portal .main-wrapper > main article .btn-primary:hover, body.deep-portal .main-wrapper > main article body.application .btn-success:hover, body.application body.deep-portal .main-wrapper > main article .btn-success:hover, body.deep-portal .main-wrapper > main article body.application .btn-danger:hover, body.application body.deep-portal .main-wrapper > main article .btn-danger:hover, body.deep-portal .main-wrapper > main article body.application .btn-warning:hover, body.application body.deep-portal .main-wrapper > main article .btn-warning:hover, body.deep-portal .main-wrapper > main article body.application form input[type=submit]:hover, body.application form body.deep-portal .main-wrapper > main article input[type=submit]:hover, body.deep-portal .main-wrapper > main article button:active, body.deep-portal .main-wrapper > main article button:focus, body.deep-portal .main-wrapper > main article button:focus-visible, body.deep-portal .main-wrapper > main article button:hover{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: transparent;
  outline-color: #0369a1;
}
body.deep-portal .main-wrapper > main article .btn.disabled, body.deep-portal .main-wrapper > main article body.application .disabled.btn-primary, body.application body.deep-portal .main-wrapper > main article .disabled.btn-primary, body.deep-portal .main-wrapper > main article body.application .disabled.btn-success, body.application body.deep-portal .main-wrapper > main article .disabled.btn-success, body.deep-portal .main-wrapper > main article body.application .disabled.btn-danger, body.application body.deep-portal .main-wrapper > main article .disabled.btn-danger, body.deep-portal .main-wrapper > main article body.application .disabled.btn-warning, body.application body.deep-portal .main-wrapper > main article .disabled.btn-warning, body.deep-portal .main-wrapper > main article body.application form input.disabled[type=submit], body.application form body.deep-portal .main-wrapper > main article input.disabled[type=submit], body.deep-portal .main-wrapper > main article .btn:disabled, body.deep-portal .main-wrapper > main article body.application .btn-primary:disabled, body.application body.deep-portal .main-wrapper > main article .btn-primary:disabled, body.deep-portal .main-wrapper > main article body.application .btn-success:disabled, body.application body.deep-portal .main-wrapper > main article .btn-success:disabled, body.deep-portal .main-wrapper > main article body.application .btn-danger:disabled, body.application body.deep-portal .main-wrapper > main article .btn-danger:disabled, body.deep-portal .main-wrapper > main article body.application .btn-warning:disabled, body.application body.deep-portal .main-wrapper > main article .btn-warning:disabled, body.deep-portal .main-wrapper > main article body.application form input[type=submit]:disabled, body.application form body.deep-portal .main-wrapper > main article input[type=submit]:disabled, body.deep-portal .main-wrapper > main article button.disabled, body.deep-portal .main-wrapper > main article button:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  cursor: not-allowed;
  outline-width: 0px;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .btn.disabled, body.deep-portal .main-wrapper > main article body.application .disabled.btn-primary, body.application body.deep-portal .main-wrapper > main article .disabled.btn-primary, body.deep-portal .main-wrapper > main article body.application .disabled.btn-success, body.application body.deep-portal .main-wrapper > main article .disabled.btn-success, body.deep-portal .main-wrapper > main article body.application .disabled.btn-danger, body.application body.deep-portal .main-wrapper > main article .disabled.btn-danger, body.deep-portal .main-wrapper > main article body.application .disabled.btn-warning, body.application body.deep-portal .main-wrapper > main article .disabled.btn-warning, body.deep-portal .main-wrapper > main article body.application form input.disabled[type=submit], body.application form body.deep-portal .main-wrapper > main article input.disabled[type=submit], body.deep-portal .main-wrapper > main article .btn:disabled, body.deep-portal .main-wrapper > main article body.application .btn-primary:disabled, body.application body.deep-portal .main-wrapper > main article .btn-primary:disabled, body.deep-portal .main-wrapper > main article body.application .btn-success:disabled, body.application body.deep-portal .main-wrapper > main article .btn-success:disabled, body.deep-portal .main-wrapper > main article body.application .btn-danger:disabled, body.application body.deep-portal .main-wrapper > main article .btn-danger:disabled, body.deep-portal .main-wrapper > main article body.application .btn-warning:disabled, body.application body.deep-portal .main-wrapper > main article .btn-warning:disabled, body.deep-portal .main-wrapper > main article body.application form input[type=submit]:disabled, body.application form body.deep-portal .main-wrapper > main article input[type=submit]:disabled, body.deep-portal .main-wrapper > main article button.disabled, body.deep-portal .main-wrapper > main article button:disabled{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .btn.primary, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary, body.deep-portal .main-wrapper > main article body.application .primary.btn-success, body.application body.deep-portal .main-wrapper > main article .primary.btn-success, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit], body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit], body.deep-portal .main-wrapper > main article button.primary{
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .btn.primary, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary, body.deep-portal .main-wrapper > main article body.application .primary.btn-success, body.application body.deep-portal .main-wrapper > main article .primary.btn-success, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit], body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit], body.deep-portal .main-wrapper > main article button.primary{
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .btn.primary:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-success:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-success:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning:active, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit]:active, body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit]:active, body.deep-portal .main-wrapper > main article .btn.primary:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-success:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-success:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning:focus, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit]:focus, body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit]:focus, body.deep-portal .main-wrapper > main article .btn.primary:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-success:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-success:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning:hover, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit]:hover, body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit]:hover, body.deep-portal .main-wrapper > main article button.primary:active, body.deep-portal .main-wrapper > main article button.primary:focus, body.deep-portal .main-wrapper > main article button.primary:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .btn.primary:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-success:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-success:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger:active, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning:active, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning:active, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit]:active, body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit]:active, body.deep-portal .main-wrapper > main article .btn.primary:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-success:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-success:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger:focus, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning:focus, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning:focus, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit]:focus, body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit]:focus, body.deep-portal .main-wrapper > main article .btn.primary:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-primary:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-primary:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-success:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-success:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-danger:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-danger:hover, body.deep-portal .main-wrapper > main article body.application .primary.btn-warning:hover, body.application body.deep-portal .main-wrapper > main article .primary.btn-warning:hover, body.deep-portal .main-wrapper > main article body.application form input.primary[type=submit]:hover, body.application form body.deep-portal .main-wrapper > main article input.primary[type=submit]:hover, body.deep-portal .main-wrapper > main article button.primary:active, body.deep-portal .main-wrapper > main article button.primary:focus, body.deep-portal .main-wrapper > main article button.primary:hover{
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .pagy-advanced{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
body.deep-portal .pagy-advanced > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * 0);
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - 0));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
  --tw-space-y-reverse: 0;
  margin-top: calc(8px * calc(1 - 0));
  margin-top: calc(8px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(8px * 0);
  margin-bottom: calc(8px * var(--tw-space-y-reverse));
}
@media (min-width: 768px) {
  body.deep-portal .pagy-advanced > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - 0));
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * 0);
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }
}
body.deep-portal .pagy-advanced input{
  border-radius: 0.125rem;
  font-size: 0.75rem;
  line-height: 1rem;
  min-width: 3rem !important;
}
body.deep-portal .pagy-advanced .pagy-combo-nav{
  flex-grow: 1;
  text-align: center;
}
body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a:focus, body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a:hover{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a:focus, body.deep-portal .pagy-advanced .pagy-combo-nav nav.pagy a:hover{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .pagy-advanced .pagy-info{
  text-align: right;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper body.app-actions.deep-portal .pagy-advanced .pagy-info{
  justify-content: flex-end;
}
body.deep-portal .main-wrapper > main article .simple_form{
  margin-left: 8px;
  margin-right: 8px;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  body.deep-portal .main-wrapper > main article .simple_form{
    margin-left: 32px;
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article .simple_form{
    margin-left: 96px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form .btn, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit], body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit], body.deep-portal .main-wrapper > main article .simple_form button{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  cursor: pointer;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid transparent;
  outline-offset: 2px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0.375rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form .btn, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit], body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit], body.deep-portal .main-wrapper > main article .simple_form button{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form .btn:active, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary:active, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary:active, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success:active, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success:active, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger:active, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger:active, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning:active, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning:active, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit]:active, body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit]:active, body.deep-portal .main-wrapper > main article .simple_form .btn:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning:focus, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit]:focus, body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit]:focus, body.deep-portal .main-wrapper > main article .simple_form .btn:focus-visible, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary:focus-visible, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary:focus-visible, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success:focus-visible, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success:focus-visible, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger:focus-visible, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger:focus-visible, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning:focus-visible, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning:focus-visible, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit]:focus-visible, body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit]:focus-visible, body.deep-portal .main-wrapper > main article .simple_form .btn:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning:hover, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit]:hover, body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit]:hover, body.deep-portal .main-wrapper > main article .simple_form button:active, body.deep-portal .main-wrapper > main article .simple_form button:focus, body.deep-portal .main-wrapper > main article .simple_form button:focus-visible, body.deep-portal .main-wrapper > main article .simple_form button:hover{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(1px + 0px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: transparent;
  outline-color: #0369a1;
}
body.deep-portal .main-wrapper > main article .simple_form .btn.disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-primary, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-primary, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-success, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-success, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-danger, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-danger, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-warning, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-warning, body.deep-portal .main-wrapper > main article .simple_form body.application form input.disabled[type=submit], body.application form body.deep-portal .main-wrapper > main article .simple_form input.disabled[type=submit], body.deep-portal .main-wrapper > main article .simple_form .btn:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit]:disabled, body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit]:disabled, body.deep-portal .main-wrapper > main article .simple_form button.disabled, body.deep-portal .main-wrapper > main article .simple_form button:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  cursor: not-allowed;
  outline-width: 0px;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form .btn.disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-primary, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-primary, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-success, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-success, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-danger, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-danger, body.deep-portal .main-wrapper > main article .simple_form body.application .disabled.btn-warning, body.application body.deep-portal .main-wrapper > main article .simple_form .disabled.btn-warning, body.deep-portal .main-wrapper > main article .simple_form body.application form input.disabled[type=submit], body.application form body.deep-portal .main-wrapper > main article .simple_form input.disabled[type=submit], body.deep-portal .main-wrapper > main article .simple_form .btn:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-primary:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-primary:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-success:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-success:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-danger:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-danger:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application .btn-warning:disabled, body.application body.deep-portal .main-wrapper > main article .simple_form .btn-warning:disabled, body.deep-portal .main-wrapper > main article .simple_form body.application form input[type=submit]:disabled, body.application form body.deep-portal .main-wrapper > main article .simple_form input[type=submit]:disabled, body.deep-portal .main-wrapper > main article .simple_form button.disabled, body.deep-portal .main-wrapper > main article .simple_form button:disabled{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form .btn.primary, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit], body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit], body.deep-portal .main-wrapper > main article .simple_form button.primary{
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / 1);
  --tw-text-opacity: 1;
  color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form .btn.primary, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit], body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit], body.deep-portal .main-wrapper > main article .simple_form button.primary{
    background-color: rgb(3 105 161 / var(--tw-bg-opacity, 1));
    color: rgb(243 244 246 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form .btn.primary:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning:active, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit]:active, body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit]:active, body.deep-portal .main-wrapper > main article .simple_form .btn.primary:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning:focus, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit]:focus, body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit]:focus, body.deep-portal .main-wrapper > main article .simple_form .btn.primary:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning:hover, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit]:hover, body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit]:hover, body.deep-portal .main-wrapper > main article .simple_form button.primary:active, body.deep-portal .main-wrapper > main article .simple_form button.primary:focus, body.deep-portal .main-wrapper > main article .simple_form button.primary:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form .btn.primary:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger:active, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning:active, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning:active, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit]:active, body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit]:active, body.deep-portal .main-wrapper > main article .simple_form .btn.primary:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger:focus, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning:focus, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning:focus, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit]:focus, body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit]:focus, body.deep-portal .main-wrapper > main article .simple_form .btn.primary:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-primary:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-primary:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-success:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-success:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-danger:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-danger:hover, body.deep-portal .main-wrapper > main article .simple_form body.application .primary.btn-warning:hover, body.application body.deep-portal .main-wrapper > main article .simple_form .primary.btn-warning:hover, body.deep-portal .main-wrapper > main article .simple_form body.application form input.primary[type=submit]:hover, body.application form body.deep-portal .main-wrapper > main article .simple_form input.primary[type=submit]:hover, body.deep-portal .main-wrapper > main article .simple_form button.primary:active, body.deep-portal .main-wrapper > main article .simple_form button.primary:focus, body.deep-portal .main-wrapper > main article .simple_form button.primary:hover{
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset legend, body.deep-portal .main-wrapper > main article .simple_form .fieldset legend{
  font-weight: 500;
  margin-bottom: 32px;
  font-size: 1.125rem;
  line-height: 1.75rem;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field{
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e5e7eb;
  border-bottom: 1px solid var(--gray-200);
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article .simple_form fieldset .field, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field{
    flex-direction: row;
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .label-wrapper, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .label-wrapper{
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article .simple_form fieldset .field .label-wrapper, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .label-wrapper{
    margin-right: 20px;
    max-width: 300px;
    min-width: 300px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .label-wrapper label, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .label-wrapper label{
  font-weight: 500;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .label-wrapper label abbr, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .label-wrapper label abbr{
  margin-right: 4px;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .label-wrapper .description, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .label-wrapper .description{
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .label-wrapper .description, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .label-wrapper .description{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper{
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper{
    flex-grow: 1;
    margin-top: 4px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:disabled, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:disabled, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:disabled, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:disabled{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  cursor: not-allowed;
  outline-width: 0px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:disabled, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:disabled, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:disabled, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:disabled{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:not(.boolean), body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:not(.boolean), body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:not(.boolean), body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:not(.boolean){
  display: block;
}
body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:not(.boolean), body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:not(.boolean), body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:not(.boolean), body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:not(.boolean){
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:not(.boolean):hover, body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:not(.boolean):hover, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:not(.boolean):hover, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:not(.boolean):hover{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:not(.boolean), body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:not(.boolean), body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:not(.boolean), body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:not(.boolean){
  border-radius: 0.5rem;
  width: 100%;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / 1);
  position: relative;
  border-radius: 9999px;
  height: 2rem;
  width: 4rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean{
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:before, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:before{
  position: absolute;
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / 1);
  display: block;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:before, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:before{
    background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
  }
}
body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:before, body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:before, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:before, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:before{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:hover:before, body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:hover:before, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:hover:before, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:hover:before{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:before, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:before{
  border-radius: 9999px;
  content: "";
  height: 100%;
  width: 100%;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:after, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:after{
  position: absolute;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  display: block;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:after, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:after{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:after, body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:after, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:after, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:after{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:hover:after, body.app-card.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:hover:after, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:hover:after, body.app-card.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:hover:after{
  text-decoration-line: none;
  color: inherit;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:after, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:after{
  border-radius: 9999px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  content: "";
  height: calc(2rem - 4px);
  left: 1px;
  top: 1px;
  width: calc(2rem - 4px);
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:checked:before, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:checked:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:checked:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:checked:before{
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:checked:before, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:checked:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:checked:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:checked:before{
    background-color: rgb(2 132 199 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.boolean:checked:after, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.boolean:checked:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.boolean:checked:after, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.boolean:checked:after {
  left: 5px;
  transform: translateX(100%);
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:focus-visible, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:focus-visible, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:focus-visible, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:focus-visible{
  --tw-border-opacity: 1;
  border-color: rgb(3 105 161 / 1);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 132 199 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input:focus-visible, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select:focus-visible, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input:focus-visible, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select:focus-visible{
    border-color: rgb(3 105 161 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.is-invalid, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.is-invalid, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.is-invalid, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.is-invalid{
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / 1);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper input.is-invalid, body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper select.is-invalid, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper input.is-invalid, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper select.is-invalid{
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper .error, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper .error{
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper .error, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper .error{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper .error:before, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper .error:before{
  display: inline-block;
  margin-right: 4px;
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper .hint, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper .hint{
  font-style: italic;
  margin-left: 12px;
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper .hint, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper .hint{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 1024px) {
  body.deep-portal .main-wrapper > main article .simple_form fieldset .field .input-wrapper .hint, body.deep-portal .main-wrapper > main article .simple_form .fieldset .field .input-wrapper .hint{
    margin-left: 0px;
  }
}
body.deep-portal .main-wrapper > main article .simple_form .form-actions{
  margin-top: 32px;
}
body.deep-portal .main-wrapper > main article table{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / 1);
  border-collapse: separate;
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: 0px 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
  overflow-x: scroll;
  font-size: 0.75rem;
  line-height: 1rem;
  width: 100%;
  border-radius: 4px;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table td, body.deep-portal .main-wrapper > main article table th{
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / 1);
  padding: 8px;
  text-align: left;
  white-space: nowrap;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table td, body.deep-portal .main-wrapper > main article table th{
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table td:not(:first-child), body.deep-portal .main-wrapper > main article table th:not(:first-child){
  border-left-width: 1px;
}
body.deep-portal .main-wrapper > main article table th{
  font-weight: 500;
}
body.deep-portal .main-wrapper > main article table thead tr{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  font-size: 0.75rem;
  line-height: 1rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table thead tr{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table thead tr:first-child th:first-child {
  border-top-left-radius: 4px;
}
body.deep-portal .main-wrapper > main article table thead tr:first-child th:last-child {
  border-top-right-radius: 4px;
}
body.deep-portal .main-wrapper > main article table thead tr:last-child th{
  border-bottom-width: 2px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.deep-portal .main-wrapper > main article table thead tr.title-row{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table thead tr.title-row{
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th{
  padding-top: 4px;
  padding-bottom: 4px;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0;
  margin-right: calc(8px * 0);
  margin-right: calc(8px * var(--tw-space-x-reverse));
  margin-left: calc(8px * calc(1 - 0));
  margin-left: calc(8px * calc(1 - var(--tw-space-x-reverse)));
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper .title{
  flex-grow: 1;
}
body.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper .actions{
  text-align: right;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper body.app-actions.deep-portal .main-wrapper > main article table thead tr.title-row th .title-wrapper .actions{
  justify-content: flex-end;
}
body.deep-portal .main-wrapper > main article table thead tr th.actions {
  width: 0; /* only take up needed width instead of equally growing with other columns. */
}
body.deep-portal .main-wrapper > main article table thead tr th.sortable button.sort-button{
  background-color: transparent;
  border-width: 0px;
  display: inline;
  margin-left: 4px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 0px;
  padding-bottom: 0px;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.deep-portal .main-wrapper > main article table tbody{
  font-size: 0.75rem;
  line-height: 1rem;
}
body.deep-portal .main-wrapper > main article table tbody tr:nth-child(even){
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table tbody tr:nth-child(even){
    background-color: rgb(248 250 252 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table tbody tr:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table tbody tr:hover{
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table tbody tr:first-child td{
  border-top-width: 0px;
}
body.deep-portal .main-wrapper > main article table tbody tr:last-child td{
  border-bottom-width: 0px;
}
body.deep-portal .main-wrapper > main article table tbody tr td.actions{
  white-space: nowrap;
}
body.deep-portal .main-wrapper > main article table tbody tr td.actions .button{
  margin-left: 2px;
  margin-right: 2px;
}
body.deep-portal .main-wrapper > main article table tfoot{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
body.deep-portal .main-wrapper > main article table tfoot tr:first-child td{
  border-top-width: 1px;
}
body.deep-portal .main-wrapper > main article table tfoot tr:last-child td{
  border-bottom-width: 0px;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav{
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page{
  margin-left: 2px;
  margin-right: 2px;
  padding: 0px;
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page.current{
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / 1);
  cursor: not-allowed;
  font-weight: 500;
  outline-width: 0px;
}
@supports (color: rgb(0 0 0 / 0)){
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page.current{
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
  }
}
body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page a, body.deep-portal .main-wrapper > main article table tfoot tr td nav.pagy_nav .page span{
  display: inline-block;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.onboarding-container{
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
@media (max-width: 768px) {
  .onboarding-container{
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 480px) {
  .onboarding-container{
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.onboarding-container .logo-container{
  margin-bottom: 40px;
}
.onboarding-container .logo-container .logo-wrapper{
  display: flex;
  align-items: center;
  justify-content: center;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  border-radius: 0.75rem;
  width: 60px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .logo-container .logo-wrapper{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .logo-container .logo-wrapper img{
  width: 32px;
  height: 32px;
}
.onboarding-container .welcome-header h1{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  margin-bottom: 16px;
  text-align: center;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .welcome-header h1{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .welcome-header p{
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin-bottom: 60px;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .welcome-header p{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .feature-cards{
  display: flex;
  gap: 24px;
  margin-bottom: 60px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .onboarding-container .feature-cards{
    gap: 16px;
    margin-bottom: 40px;
  }
}
.onboarding-container .feature-cards .feature-card{
  border-radius: 0.75rem;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  min-width: 16rem;
  flex: 1 1;
  max-width: 18rem;
}
.onboarding-container .feature-cards .feature-card--performance{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .feature-cards .feature-card--performance{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .feature-cards .feature-card--reviews{
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .feature-cards .feature-card--reviews{
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .feature-cards .feature-card--competitors{
  --tw-bg-opacity: 1;
  background-color: rgb(250 245 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .feature-cards .feature-card--competitors{
    background-color: rgb(250 245 255 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .feature-cards .feature-card .icon-wrapper{
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.onboarding-container .feature-cards .feature-card .icon-wrapper img{
  width: 32px;
  height: 32px;
}
.onboarding-container .feature-cards .feature-card h3{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  margin-bottom: 8px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .feature-cards .feature-card h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .feature-cards .feature-card p{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin: 0px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .feature-cards .feature-card p{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section{
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.onboarding-container .search-section .search-header{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.onboarding-container .search-section .search-header .search-icon{
  margin-right: 8px;
}
.onboarding-container .search-section .search-header .search-icon img{
  width: 20px;
  height: 20px;
}
.onboarding-container .search-section .search-header h2{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  margin: 0px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-header h2{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-description{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin-bottom: 24px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-description{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-input-wrapper{
  margin-bottom: 32px;
}
.onboarding-container .search-section .search-input-wrapper input{
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 20px;
  padding-right: 20px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  border-radius: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  box-sizing: border-box;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-input-wrapper input{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .search-input-wrapper input:focus{
  --tw-border-opacity: 1;
  border-color: rgb(82 82 91 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-input-wrapper input:focus{
    border-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }
}
.onboarding-container .search-section .search-results{
  margin-bottom: 32px;
  text-align: left;
}
.onboarding-container .search-section .search-results .search-results-header p{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin-bottom: 16px;
  font-weight: 500;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .search-results-header p{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .search-results-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - 0));
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * 0);
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
.onboarding-container .search-section .search-results .app-result-card{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  border-radius: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card:hover{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.onboarding-container .search-section .search-results .app-result-card .app-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  border-radius: 0.5rem;
  flex-shrink: 0;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-icon{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-icon .app-icon-image{
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.25rem;
}
.onboarding-container .search-section .search-results .app-result-card .app-icon .app-icon-placeholder{
  width: 32px;
  height: 32px;
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / 1);
  border-radius: 0.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-icon .app-icon-placeholder{
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-info{
  flex: 1 1;
  min-width: 0px;
}
.onboarding-container .search-section .search-results .app-result-card .app-info .app-name{
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  margin-bottom: 4px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-info .app-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-info .app-developer{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin-bottom: 4px;
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-info .app-developer{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-info .app-description{
  display: none;
}
.payment-method-update__error.onboarding-container .search-section .search-results .app-result-card .app-info .app-description {
  display: none;
}
.subscription-checkout__error.onboarding-container .search-section .search-results .app-result-card .app-info .app-description {
  display: none;
}
.token-purchase-form__error.onboarding-container .search-section .search-results .app-result-card .app-info .app-description {
  display: none;
}
.onboarding-container .search-section .search-results .app-result-card .app-info .app-description{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  margin: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-info .app-description{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 768px) {
  .onboarding-container .search-section .search-results .app-result-card .app-info .app-description{
    display: block;
  }
.app-card.onboarding-container .search-section .search-results .app-result-card .app-info .app-description{
    cursor: pointer;
    text-decoration-line: none;
    color: inherit;
  }
.app-card.onboarding-container .search-section .search-results .app-result-card .app-info .app-description:hover{
    text-decoration-line: none;
    color: inherit;
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-rating, .onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-downloads{
  display: flex;
  align-items: center;
  gap: 4px;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-rating .rating-icon, .onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-rating .download-icon, .onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-downloads .rating-icon, .onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-downloads .download-icon{
  width: 16px;
  height: 16px;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-rating span, .onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-downloads span{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  font-weight: 500;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-rating span, .onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-meta .app-downloads span{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions{
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions.text-right{
  justify-content: flex-end;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button{
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / 1);
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border-style: none;
  cursor: pointer;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
  width: 80px;
  text-align: center;
  white-space: nowrap;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button{
    background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.wider{
  width: 6rem;
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button:hover{
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.secondary{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / 1);
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  width: 7rem;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.secondary{
    background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.secondary:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.secondary:hover{
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.added{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / 1);
  cursor: default;
  width: 80px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.added{
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.added:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .add-app-button.added:hover{
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions .inline-form{
  display: inline-block;
}
.onboarding-container .search-section .search-results .no-results{
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
}
.onboarding-container .search-section .search-results .no-results p{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .search-results .no-results p{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .popular-apps{
  margin-bottom: 32px;
}
.onboarding-container .search-section .popular-apps p{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  margin-bottom: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .popular-apps p{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .popular-apps .app-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.onboarding-container .search-section .popular-apps .app-buttons .app-button{
  display: flex;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 16px;
  padding-right: 16px;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  cursor: pointer;
  text-decoration-line: none;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .popular-apps .app-buttons .app-button{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .popular-apps .app-buttons .app-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .popular-apps .app-buttons .app-button:hover{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.onboarding-container .search-section .popular-apps .app-buttons .app-button .icon{
  margin-right: 8px;
}
.onboarding-container .search-section .popular-apps .app-buttons .app-button .icon img{
  width: 0.875rem;
  height: 0.875rem;
}
.onboarding-container .search-section .tip-section{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(228 228 231 / 1);
  border-radius: 0.5rem;
  padding: 16px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .tip-section{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
    border-color: rgb(228 228 231 / var(--tw-border-opacity, 1));
  }
}
.onboarding-container .search-section .tip-section .tip-content{
  display: flex;
  align-items: flex-start;
}
.onboarding-container .search-section .tip-section .tip-content .tip-icon{
  margin-right: 12px;
  margin-top: 0.125rem;
}
.onboarding-container .search-section .tip-section .tip-content .tip-icon img{
  width: 16px;
  height: 16px;
}
.onboarding-container .search-section .tip-section .tip-content .tip-text strong{
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .tip-section .tip-content .tip-text strong{
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .tip-section .tip-content .tip-text span{
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-left: 4px;
}
@supports (color: rgb(0 0 0 / 0)){
.onboarding-container .search-section .tip-section .tip-content .tip-text span{
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
body.devise {
  font-family: "Roboto", Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
}
body.devise header{
  flex-grow: 0;
}
body.devise main{
  flex-grow: 1;
}
body.devise main article a:active{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
body.devise main article a:focus, body.devise main article a:hover{
  text-decoration-line: underline;
}
body.devise main article a:focus-visible{
  border-radius: 0.125rem;
  outline: 2px solid #185A87;
  outline: 2px solid var(--primary-600);
}
body.devise main article h1{
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article h1{
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
body.devise main article{
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  body.devise main article{
    flex-direction: row;
  }
}
body.devise main article button:focus-visible, body.devise main article .btn:focus-visible, body.devise main article body.application .btn-primary:focus-visible, body.application body.devise main article .btn-primary:focus-visible, body.devise main article body.application .btn-success:focus-visible, body.application body.devise main article .btn-success:focus-visible, body.devise main article body.application .btn-danger:focus-visible, body.application body.devise main article .btn-danger:focus-visible, body.devise main article body.application .btn-warning:focus-visible, body.application body.devise main article .btn-warning:focus-visible, body.devise main article body.application form input[type=submit]:focus-visible, body.application form body.devise main article input[type=submit]:focus-visible {
  outline: 2px solid #185A87;
  outline: 2px solid var(--primary-600);
}
body.devise main article section.accent{
  --tw-bg-opacity: 1;
  background-color: rgb(24 90 135 / 1);
  display: none;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.accent{
    background-color: rgb(24 90 135 / var(--tw-bg-opacity, 1));
  }
}
body.payment-method-update__error.devise main article section.accent {
  display: none;
}
body.subscription-checkout__error.devise main article section.accent {
  display: none;
}
body.token-purchase-form__error.devise main article section.accent {
  display: none;
}
@media (min-width: 1024px) {
  body.devise main article section.accent{
    display: flex;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    width: 50%;
    background: linear-gradient(0deg, rgb(79, 70, 229) 0%, rgb(129, 140, 248) 50%, rgb(209, 213, 219) 100%);
  }
}
body.devise main article section.primary{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1024px) {
  body.devise main article section.primary{
    width: 50%;
  }
}
body.devise main article section.primary .form-container{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  padding: 32px;
  width: 100%;
}
@media (min-width: 1024px) {
  body.devise main article section.primary .form-container{
    overflow-y: scroll;
    max-height: 100dvh;
  }
}
body.devise main article section.primary .form-container h1{
  margin-top: 32px;
}
body.devise main article section.primary .form-container .subtitle{
  font-weight: 300;
  margin-top: 4px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  text-align: center;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .subtitle{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
@media (min-width: 768px) {
  body.devise main article section.primary .form-container .subtitle {
    max-width: 500px;
  }
}
body.devise main article section.primary .form-container .form-wrapper{
  width: 100%;
}
@media (min-width: 768px) {
  body.devise main article section.primary .form-container .form-wrapper {
    max-width: 350px;
  }
}
body.devise main article section.primary .form-container .form-wrapper form{
  margin-top: 8px;
  width: 100%;
}
body.devise main article section.primary .form-container .form-wrapper form .error_notification{
  display: block;
}
body.app-card.devise main article section.primary .form-container .form-wrapper form .error_notification{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.devise main article section.primary .form-container .form-wrapper form .error_notification:hover{
  text-decoration-line: none;
  color: inherit;
}
body.devise main article section.primary .form-container .form-wrapper form .error_notification{
  margin-top: 16px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .error_notification{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .error_notification:empty{
  display: none;
}
body.payment-method-update__error.devise main article section.primary .form-container .form-wrapper form .error_notification:empty {
  display: none;
}
body.subscription-checkout__error.devise main article section.primary .form-container .form-wrapper form .error_notification:empty {
  display: none;
}
body.token-purchase-form__error.devise main article section.primary .form-container .form-wrapper form .error_notification:empty {
  display: none;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field{
  display: flex;
  flex-direction: column;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field.email, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field.password{
  margin-top: 24px;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .label label{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .label label{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .label + .input{
  margin-top: 4px;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input:focus-visible, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea:focus-visible{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 90 135 / var(--tw-ring-opacity, 1));
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input.is-invalid, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea.is-invalid{
  --tw-border-opacity: 1;
  border-color: rgb(220 38 38 / 1);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(220 38 38 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input.is-invalid, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea.is-invalid{
    border-color: rgb(220 38 38 / var(--tw-border-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=checkbox]{
  border-radius: 0.25rem;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=checkbox]:checked{
  --tw-bg-opacity: 1;
  background-color: rgb(24 90 135 / 1);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 90 135 / var(--tw-ring-opacity, 1));
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=checkbox]:checked{
    background-color: rgb(24 90 135 / var(--tw-bg-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=checkbox]:focus-visible {
  outline: 2px solid #185A87;
  outline: 2px solid var(--primary-600);
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=email],
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=password],
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=text],
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea{
  border-radius: 9999px;
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=email]::-moz-placeholder, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=password]::-moz-placeholder, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=text]::-moz-placeholder, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / 1);
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=email]::placeholder,
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=password]::placeholder,
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=text]::placeholder,
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea::placeholder{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=email]::-moz-placeholder, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=password]::-moz-placeholder, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=text]::-moz-placeholder, body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea::-moz-placeholder{
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=email]::placeholder,
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=password]::placeholder,
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input input[type=text]::placeholder,
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input textarea::placeholder{
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .hint{
  display: block;
}
body.app-card.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .hint{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .hint:hover{
  text-decoration-line: none;
  color: inherit;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .hint{
  font-weight: 300;
  margin-top: 4px;
  padding-left: 24px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  font-size: 0.75rem;
  line-height: 1rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .hint{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .error{
  display: block;
}
body.app-card.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .error{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
body.app-card.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .error:hover{
  text-decoration-line: none;
  color: inherit;
}
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .error{
  margin-top: 4px;
  padding-left: 24px;
  padding-right: 24px;
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
  font-size: 0.75rem;
  line-height: 1rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-inputs .field .input .error{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-actions{
  margin-top: 24px;
}
body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit], body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit], body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]{
  --tw-bg-opacity: 1;
  background-color: rgb(24 90 135 / 1);
  cursor: pointer;
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(24 90 135 / var(--tw-ring-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 9999px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  width: 100%;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit], body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit], body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]{
    background-color: rgb(24 90 135 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit]:disabled, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary:disabled, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success:disabled, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger:disabled, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning:disabled, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit]:disabled, body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit]:not(:disabled):active, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary:not(:disabled):active, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success:not(:disabled):active, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger:not(:disabled):active, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning:not(:disabled):active, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit]:not(:disabled):active, body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]:not(:disabled):active{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit]:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit]:not(:disabled):focus, body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit]:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit]:not(:disabled):hover, body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]:not(:disabled):hover{
  --tw-bg-opacity: 1;
  background-color: rgb(20 73 111 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit]:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit]:not(:disabled):focus, body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper form .form-actions input.btn[type=submit]:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-primary:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-success:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-danger:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper form .form-actions body.application input[type=submit].btn-warning:not(:disabled):hover, body.devise main article section.primary .form-container .form-wrapper body.application form .form-actions input[type=submit]:not(:disabled):hover, body.application body.devise main article section.primary .form-container .form-wrapper form .form-actions input[type=submit]:not(:disabled):hover{
    background-color: rgb(20 73 111 / var(--tw-bg-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .or-continue-with{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 100%;
}
body.devise main article section.primary .form-container .form-wrapper .or-continue-with .separator{
  flex-grow: 1;
}
body.devise main article section.primary .form-container .form-wrapper .or-continue-with .separator hr{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .or-continue-with .separator hr{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .or-continue-with .content{
  flex-grow: 0;
  flex-shrink: 0;
  font-weight: 300;
  margin: 0px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  padding-left: 8px;
  padding-right: 8px;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .or-continue-with .content{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options{
  margin-top: 12px;
  width: 100%;
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to + .button_to{
  margin-top: 8px;
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 18px;
  padding-right: 18px;
  border-radius: 9999px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  width: 100%;
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button:disabled{
  cursor: not-allowed;
  opacity: 0.5;
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button:not(:disabled):active{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button:not(:disabled):hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button:not(:disabled):focus, body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button:not(:disabled):hover{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button img{
  display: inline-block;
}
body.devise main article section.primary .form-container .form-wrapper .third-party-auth-options .button_to button img + span{
  margin-left: 8px;
}
body.devise main article section.primary .form-container .form-wrapper .guidance{
  font-weight: 300;
  margin-top: 32px;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .guidance{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .guidance a{
  font-weight: 400;
  padding-top: 16px;
  padding-bottom: 16px;
  --tw-text-opacity: 1;
  color: rgb(20 73 111 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .guidance a{
    color: rgb(20 73 111 / var(--tw-text-opacity, 1));
  }
}
body.devise main article section.primary .form-container .form-wrapper .guidance a:focus, body.devise main article section.primary .form-container .form-wrapper .guidance a:hover{
  --tw-text-opacity: 1;
  color: rgb(16 58 88 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article section.primary .form-container .form-wrapper .guidance a:focus, body.devise main article section.primary .form-container .form-wrapper .guidance a:hover{
    color: rgb(16 58 88 / var(--tw-text-opacity, 1));
  }
}
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms{
  margin-top: 24px;
}
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input input[type=checkbox]{
  margin-top: 4px;
}
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text{
  font-weight: 300;
  padding-left: 8px;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text a{
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(24 90 135 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text a{
    color: rgb(24 90 135 / var(--tw-text-opacity, 1));
  }
}
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text a:focus, body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text a:hover{
  --tw-text-opacity: 1;
  color: rgb(20 73 111 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text a:focus, body.devise main article.registrations-new section.primary .form-container .form-wrapper form .agree-to-terms label.input .label-text a:hover{
    color: rgb(20 73 111 / var(--tw-text-opacity, 1));
  }
}
body.devise main article.sessions-new {
  font-family: Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
body.devise main article.sessions-new section.primary {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
body.devise main article.sessions-new section.primary div.form-container {
  background: white;
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}
body.devise main article.sessions-new section.primary div.form-container .logo-container {
  text-align: center;
  margin-bottom: 24px;
}
body.devise main article.sessions-new section.primary div.form-container .logo-container .logo-image {
  height: 150px;
  width: auto;
  max-width: 250px;
}
body.devise main article.sessions-new section.primary div.form-container h1 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 1.5%;
  text-align: center;
  color: #1a202c;
  margin-bottom: 24px;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs {
  margin-bottom: 24px;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .form-group {
  margin-bottom: 20px;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .form-group label {
  font-family: Avenir, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
  display: block;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .form-group input[type=email],
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .form-group input[type=password] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: Avenir, sans-serif;
  font-size: 16px;
  color: #1f2937;
  background-color: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .form-group input[type=email]:focus,
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .form-group input[type=password]:focus {
  outline: none;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper{
  display: flex;
  flex-direction: row;
  margin-top: 12px;
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .user_remember_me label{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: Avenir, sans-serif;
  font-size: 14px;
  color: #374151;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .user_remember_me label .label-text{
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 0px;
  padding-bottom: 0px;
  order: 2;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .user_remember_me label input{
  order: 1;
  margin-right: 8px;
  width: 16px;
  height: 16px;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .forgot-password{
  display: inline-flex;
  align-items: center;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .forgot-password a {
  font-family: Avenir, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #0C4A6E;
  text-decoration: none;
  transition: color 0.2s ease;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .forgot-password a:focus, body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-inputs .remember-me-wrapper .forgot-password a:hover {
  color: #0f5a7a;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-actions {
  margin-bottom: 24px;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-actions input[type=submit] {
  width: 100%;
  background-color: #0C4A6E;
  color: white;
  padding: 16px 32px;
  border-radius: 24px;
  border: none;
  font-family: Avenir, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  cursor: pointer;
  transition: all 0.2s ease;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-actions input[type=submit]:hover {
  background-color: #0f5a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 74, 110, 0.4);
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper form .form-actions input[type=submit]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper .guidance {
  text-align: center;
  font-family: Avenir, sans-serif;
  font-size: 14px;
  color: #64748b;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper .guidance a {
  color: #0C4A6E;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
body.devise main article.sessions-new section.primary div.form-container .form-wrapper .guidance a:hover {
  color: #0f5a7a;
}
@media (max-width: 768px) {
  body.devise main article.sessions-new {
    padding: 12px;
  }
  body.devise main article.sessions-new section.primary div.form-container {
    padding: 26px 20px;
  }
  body.devise main article.sessions-new section.primary div.form-container .logo-container {
    margin-bottom: 20px;
  }
  body.devise main article.sessions-new section.primary div.form-container .logo-container .logo-image {
    height: 100px;
  }
  body.devise main article.sessions-new section.primary div.form-container h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  body.devise main article.sessions-new {
    padding: 10px;
  }
  body.devise main article.sessions-new section.primary div.form-container {
    padding: 20px 16px;
  }
  body.devise main article.sessions-new section.primary div.form-container .logo-container {
    margin-bottom: 16px;
  }
  body.devise main article.sessions-new section.primary div.form-container .logo-container .logo-image {
    height: 75px;
  }
  body.devise main article.sessions-new section.primary div.form-container h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
/**
 * Uncomment one of the following lines to apply common variants to the layout.
 */
body.devise main article section.accent{
  display: none;
}
body.payment-method-update__error.devise main article section.accent {
  display: none;
}
body.subscription-checkout__error.devise main article section.accent {
  display: none;
}
body.token-purchase-form__error.devise main article section.accent {
  display: none;
}
@media (min-width: 1024px) {
  body.devise main article section.accent{
    display: flex;
    height: 100%;
    max-height: 100%;
    min-height: 100%;
    width: 50%;
    background-image: url(/assets/backgrounds/building-536c0d9f77de2a981b6d97825b2e0c02918fe087a5b4a7a672e986a5080c869a.jpg);
    background-position: center;
    background-size: cover;
  }
}
body.legal {
  font-family: "Roboto", Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
}
body.legal a{
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.legal a{
    color: rgb(0 0 0 / var(--tw-text-opacity, 1));
  }
}
body.legal a:active{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
body.legal a:focus, body.legal a:hover{
  text-decoration-line: underline;
}
body.legal a:focus-visible{
  border-radius: 0.125rem;
  outline: 2px solid #185A87;
  outline: 2px solid var(--primary-600);
}
body.legal header{
  flex-grow: 0;
}
body.legal header .logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
}
body.legal main{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
}
body.legal main article{
  padding: 32px;
  width: 100%;
  max-width: 1100px;
}
body.legal main article h1{
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
  text-transform: uppercase;
}
@supports (color: rgb(0 0 0 / 0)){
body.legal main article h1{
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
body.legal main article p{
  font-weight: 300;
  margin-top: 32px;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
body.legal main article p{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.account-subscriptions-show{
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .account-subscriptions-show{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 1024px) {
  .account-subscriptions-show{
    padding-left: 32px;
    padding-right: 32px;
  }
}
.account-subscriptions-show__content{
  margin-top: 32px;
}
.account-subscriptions-show__current > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - 0));
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * 0);
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
.account-subscriptions-show__current{
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.account-subscriptions-show__plans{
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.account-subscriptions-show__title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.5rem;
  line-height: 2rem;
  line-height: 1.25;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .account-subscriptions-show__title{
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
}
.account-subscriptions-show__title{
  text-align: center;
  margin-bottom: 32px;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-subscriptions-show__title{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.account-subscriptions-show__grid{
  display: grid;
  grid-gap: 24px;
  gap: 24px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .account-subscriptions-show__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .account-subscriptions-show__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.account-token-grants-index .page-title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.25rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
}
@media (min-width: 1024px) {
  .account-token-grants-index .page-title{
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.account-token-grants-index .section-title{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .section-title{
  color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.account-token-grants-index .section-description{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .section-description{
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.account-token-grants-index .active-grants{
  margin-top: 32px;
}
@media (min-width: 640px) {
  .account-token-grants-index .active-grants__header{
    display: flex;
    align-items: center;
  }
  .account-token-grants-index .active-grants__title-wrapper{
    flex: 1 1 auto;
  }
}
.account-token-grants-index .active-grants__button-wrapper{
  margin-top: 16px;
}
@media (min-width: 640px) {
  .account-token-grants-index .active-grants__button-wrapper{
    margin-left: 64px;
    margin-top: 0px;
    flex: none;
  }
}
.account-token-grants-index .active-grants__purchase-button{
  display: block;
}
.app-card.account-token-grants-index .active-grants__purchase-button{
  cursor: pointer;
  text-decoration-line: none;
  color: inherit;
}
.app-card.account-token-grants-index .active-grants__purchase-button:hover{
  text-decoration-line: none;
  color: inherit;
}
.account-token-grants-index .active-grants__purchase-button{
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(79 70 229 / 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .active-grants__purchase-button{
    background-color: rgb(79 70 229 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.account-token-grants-index .active-grants__purchase-button:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(99 102 241 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .active-grants__purchase-button:hover{
    background-color: rgb(99 102 241 / var(--tw-bg-opacity, 1));
  }
}
.account-token-grants-index .active-grants__purchase-button:focus-visible{
  outline-style: solid;
  outline-width: 2px;
  outline-offset: 2px;
  outline-color: #4f46e5;
}
.account-token-grants-index .active-grants__table{
  margin-top: 32px;
}
.account-token-grants-index .active-grants__empty-state{
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .account-token-grants-index .active-grants__empty-state{
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.account-token-grants-index .active-grants__empty-state-heading{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .active-grants__empty-state-heading{
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.account-token-grants-index .active-grants__empty-state-description{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .active-grants__empty-state-description{
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.account-token-grants-index .history{
  margin-top: 64px;
}
.account-token-grants-index .history__table{
  margin-top: 32px;
}
.account-token-grants-index .history__empty-state{
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 1024px) {
  .account-token-grants-index .history__empty-state{
    margin-top: 72px;
    margin-bottom: 72px;
  }
}
.account-token-grants-index .history__empty-state-heading{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.125rem;
  line-height: 1.75rem;
  line-height: 1.375;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .history__empty-state-heading{
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.account-token-grants-index .history__empty-state-description{
  font-family: Inter var, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  line-height: 1.25rem;
  line-height: 1.5;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.account-token-grants-index .history__empty-state-description{
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
article.admin-dashboard-index section.kpi-chart-cards{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  article.admin-dashboard-index section.kpi-chart-cards{
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media print {
  article.admin-dashboard-index section.kpi-chart-cards{
    gap: 0px;
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
article.admin-dashboard-index section.kpi-chart-cards .chart{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / 1);
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 0.25rem;
  min-height: 200px;
}
@supports (color: rgb(0 0 0 / 0)){
article.admin-dashboard-index section.kpi-chart-cards .chart{
    border-color: rgb(226 232 240 / var(--tw-border-opacity, 1));
  }
}
article.admin-dashboard-index section.kpi-chart-cards .chart h2{
  margin-bottom: 16px;
  text-align: center;
}
article.admin-dashboard-index section.kpi-chart-cards .chart .chartjs{
  flex-grow: 1;
}
article.admin-dashboard-index section.kpi-chart-cards .chart.doughnut .chartjs{
  flex-grow: 0;
  margin-left: auto;
  margin-right: auto;
  max-height: 300px;
  max-width: 300px;
}
article.admin-dashboard-index section.kpi-chart-cards .chart .metric{
  flex-grow: 1;
}
article.admin-dashboard-index section.kpi-chart-cards .chart .metric .current{
  margin-bottom: 16px;
}
article.admin-users-index table tr td.admin__users__actions a{
  padding: 8px;
}
.application .home-page {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  background-color: #f8fafc;
}
.application {
  /* Header styles for home page */
}
.application .header {
  background-color: white;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.application .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1a202c;
}
.application .logo-image {
  height: 40px;
  width: auto;
}
.application .nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.application .desktop-nav {
  display: flex;
}
.application .mobile-nav {
  display: none;
  align-items: center;
  gap: 12px;
}
.application .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.application {
  /* Hamburger Menu Styles */
}
.application .hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  gap: 4px;
  transition: all 0.3s ease;
}
.application .hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #1a202c;
  transition: all 0.3s ease;
  transform-origin: center;
}
.application .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.application .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.application .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.application {
  /* Mobile Menu Overlay */
}
.application .mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.application .mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.application .mobile-menu-nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background-color: white;
  padding: 80px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.application .mobile-menu-overlay.active .mobile-menu-nav {
  transform: translateX(0);
}
.application .mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.application .mobile-menu-links li {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 16px;
}
.application .mobile-menu-links li:last-child {
  border-bottom: none;
}
.application .mobile-menu-links a {
  text-decoration: none;
  color: #1a202c;
  font-family: Avenir;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.5%;
  transition: color 0.2s ease;
  display: block;
  padding: 8px 0;
}
.application .mobile-menu-links a:hover {
  color: #0C4A6E;
}
.application .mobile-cta {
  display: none;
}
.application .nav-links a {
  text-decoration: none;
  color: #64748b;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: color 0.2s ease;
}
.application .nav-links a:hover {
  color: #0C4A6E;
}
.application .cta-button {
  background-color: #0C4A6E;
  color: white;
  padding: 12px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application .cta-button:hover {
  background-color: #0f5a7a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 74, 110, 0.4);
}
.application {
  /* Hero Section */
}
.application .hero {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 24px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.application .hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
}
.application .hero-content {
  flex: 1 1;
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.application .hero-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 96px;
  line-height: 100%;
  letter-spacing: 1.5%;
  text-align: left;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 24px;
}
.application .hero-description {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: left;
  vertical-align: middle;
  color: #64748b;
  margin-bottom: 32px;
}
.application .hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.application .hero-buttons a{
  flex-grow: 1;
  flex-shrink: 0;
  min-width: 150px;
}
.application .btn-primary, body.application form input[type=submit] {
  background-color: #0C4A6E;
  color: white;
  padding: 14px 28px;
  border-radius: 24px;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application .btn-primary:hover, body.application form input[type=submit]:hover {
  background-color: #0f5a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 74, 110, 0.4);
}
.application .btn-secondary {
  background-color: transparent;
  color: #0C4A6E;
  padding: 14px 28px;
  border: 2px solid #0C4A6E;
  border-radius: 24px;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.application .btn-secondary:hover {
  background-color: #0C4A6E;
  color: white;
  transform: translateY(-2px);
}
.application .hero-image {
  flex: 1 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.application {
  /* Features Section */
}
.application .features {
  padding: 100px 24px;
  background-color: white;
}
.application .features-container {
  max-width: 1200px;
  margin: 0 auto;
}
.application .features-header {
  text-align: center;
  margin-bottom: 40px;
}
.application .features-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 16px;
}
.application .features-subtitle {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.application .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .application .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.application .feature-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.application .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.application .feature-icon {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  background: #EFF6FF;
  border-radius: 50%;
  flex-shrink: 0;
}
.application .feature-content {
  flex: 1 1;
}
.application .feature-title {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: left;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 8px;
}
.application .feature-description {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: left;
  vertical-align: middle;
  color: #64748b;
}
.application {
  /* How It Works Section */
}
.application .how-it-works {
  padding: 0px 24px;
  background-color: white;
}
.application .how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}
.application .how-it-works-header {
  text-align: center;
  margin-bottom: 40px;
}
.application .how-it-works-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 16px;
}
.application .how-it-works-subtitle {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}
.application .steps-horizontal {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.application .step-card {
  text-align: center;
  padding: 20px;
  flex: 1 1;
}
.application .step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}
.application .step-title {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 12px;
}
.application .step-description {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
}
.application {
  /* Pricing Section */
}
.application .pricing {
  padding: 100px 24px;
  background-color: white;
}
.application .pricing-container {
  max-width: 600px;
  margin: 0 auto;
}
.application .pricing-header {
  text-align: center;
  margin-bottom: 60px;
}
.application .pricing-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 16px;
}
.application .pricing-subtitle {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
}
.application .pricing-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.application .plan-name {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 16px;
}
.application .plan-price {
  margin-bottom: 16px;
}
.application .price {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
}
.application .period {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
}
.application .plan-description {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
  margin-bottom: 32px;
}
.application .feature-list {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.application .feature-list li {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
  margin-bottom: 12px;
  padding-left: 8px;
}
.application .pricing-cta {
  background-color: #0C4A6E;
  color: white;
  padding: 16px 32px;
  border-radius: 24px;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  transition: all 0.2s ease;
  width: 100%;
}
.application .pricing-cta:hover {
  background-color: #0f5a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 74, 110, 0.4);
}
.application .enterprise-section {
  border-top: 1px solid #e2e8f0;
  padding-top: 32px;
}
.application .enterprise-title {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 12px;
}
.application .enterprise-description {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
  margin-bottom: 16px;
}
.application .enterprise-cta {
  display: block;
  color: #0C4A6E;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: all 0.2s ease;
  padding: 8px 16px;
  border: 1px solid #0C4A6E;
  border-radius: 20px;
  display: inline-block;
  margin-top: 8px;
}
.application .enterprise-cta:hover {
  background-color: #0C4A6E;
  color: white;
  transform: translateY(-1px);
}
.application {
  /* Contact Section */
}
.application .contact {
  padding: 100px 24px;
  background-color: #f8fafc;
}
.application .contact-container {
  max-width: 600px;
  margin: 0 auto;
}
.application .contact-header {
  text-align: center;
  margin-bottom: 40px;
}
.application .contact-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 1.5%;
  text-align: center;
  vertical-align: middle;
  color: #1a202c;
  margin-bottom: 16px;
}
.application .contact-subtitle {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #64748b;
}
.application .contact-form-wrapper {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}
.application .contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.application .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  gap: 20px;
}
.application .form-group {
  display: flex;
  flex-direction: column;
}
.application .form-group label {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: left;
  vertical-align: middle;
  color: #374151;
  margin-bottom: 8px;
}
.application .form-group input,
.application .form-group select {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: left;
  vertical-align: middle;
  color: #1f2937;
  background-color: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.application .form-group input:focus,
.application .form-group select:focus {
  outline: none;
  border-color: #0C4A6E;
  box-shadow: 0 0 0 3px rgba(12, 74, 110, 0.1);
}
.application .checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 12px;
  gap: 12px;
  margin-top: 8px;
}
.application .checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #374151;
}
.application .checkbox-item input[type=checkbox] {
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
}
.application .checkbox-grid .checkbox-item input[type=checkbox] {
  display: none;
}
.application .checkbox-grid .checkbox-item span {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  color: #374151;
  background-color: white;
  transition: all 0.2s ease;
  display: block;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.application .checkbox-grid .checkbox-item input[type=checkbox]:checked + span {
  background-color: #0C4A6E;
  color: white !important;
  border-color: #0C4A6E;
}
.application .checkbox-grid .checkbox-item:hover span {
  border-color: #0C4A6E;
}
.application .tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.application .tag-item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.application .tag-item input[type=checkbox] {
  display: none;
}
.application .tag-item span {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #374151;
  background-color: white;
  transition: all 0.2s ease;
}
.application .tag-item input[type=checkbox]:checked + span {
  background-color: #0C4A6E;
  color: white;
  border-color: #0C4A6E;
}
.application .tag-item:hover span {
  border-color: #0C4A6E;
}
.application .checkbox-item.agreement {
  margin-top: 8px;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #6b7280;
}
.application .checkbox-item.agreement input:checked {
  background-color: black;
  color: white;
}
.application .contact-cta {
  background-color: #0C4A6E;
  color: white;
  padding: 16px 32px;
  border-radius: 24px;
  border: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 8px;
}
.application .contact-cta:hover {
  background-color: #0f5a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(12, 74, 110, 0.4);
}
.application .contact-disclaimer {
  text-align: center;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  vertical-align: middle;
  color: #6b7280;
  margin-top: 16px;
  margin-bottom: 0;
}
.application {
  /* Footer */
}
.application .footer {
  background-color: #1a202c;
  color: white;
  padding: 60px 24px 40px;
}
.application .footer-container {
  max-width: 1200px;
  margin: 0 auto;
}
.application .footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  margin-bottom: 40px;
}
.application .footer-brand {
  display: flex;
  flex-direction: column;
}
.application .footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  text-decoration: none;
  color: white;
}
.application .footer-logo-image {
  height: 36px;
  width: auto;
}
.application .footer-description {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #94a3b8;
  margin-bottom: 24px;
}
.application .footer-social {
  display: flex;
  gap: 16px;
}
.application .social-link {
  width: 40px;
  height: 40px;
  background-color: #334155;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #94a3b8;
  transition: all 0.2s ease;
}
.application .social-link:hover {
  background-color: #0C4A6E;
  color: white;
  transform: translateY(-2px);
}
.application .footer-section {
  display: flex;
  flex-direction: column;
}
.application .footer-section-title {
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: white;
  margin-bottom: 16px;
}
.application .footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.application .footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: color 0.2s ease;
}
.application .footer-links a:hover {
  color: white;
}
.application .footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  color: #94a3b8;
}
.application .footer-copyright {
  display: flex;
  align-items: center;
  gap: 24px;
}
.application .footer-legal {
  display: flex;
  gap: 24px;
}
.application .footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-family: Avenir;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.5%;
  text-align: center;
  vertical-align: middle;
  transition: color 0.2s ease;
}
.application .footer-legal a:hover {
  color: white;
}
.application {
  /* Mobile responsiveness */
}
@media (max-width: 968px) {
  .application .header {
    padding: 0 16px;
    height: 64px;
    gap: 16px;
  }
  .application .desktop-nav {
    display: none;
  }
  .application .mobile-nav {
    display: flex;
  }
  .application .mobile-cta {
    display: flex;
    padding: 8px 16px;
    font-size: 14px;
    white-space: nowrap;
  }
  .application .logo-image {
    height: 32px;
  }
  .application .mobile-menu-nav {
    width: 300px;
  }
  .application .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .application .hero-content {
    padding-right: 0;
  }
  .application .hero-title {
    font-size: clamp(48px, 8vw, 72px);
  }
  .application .hero {
    padding: 60px 16px;
  }
  .application .steps-horizontal {
    flex-direction: column;
    gap: 40px;
  }
  .application .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .application .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .application .header {
    padding: 0 12px;
    height: 56px;
    gap: 12px;
  }
  .application .logo-image {
    height: 28px;
    min-width: 28px;
    flex-shrink: 0;
  }
  .application .nav {
    gap: 12px;
    flex-shrink: 0;
  }
  .application .nav-links {
    gap: 12px;
  }
  .application .nav-links a {
    font-size: 12px;
  }
  .application .cta-button {
    padding: 6px 12px;
    font-size: 12px;
    white-space: nowrap;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
  .application .hero {
    padding: 60px 16px;
  }
  .application .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }
  .application .hero-description {
    font-size: 16px;
  }
  .application .hero-buttons {
    justify-content: center;
  }
  .application .features {
    padding: 80px 16px;
  }
  .application .features-title {
    font-size: clamp(32px, 8vw, 56px);
  }
  .application .features-grid {
    gap: 24px;
  }
  .application .feature-card {
    padding: 24px;
  }
  .application .how-it-works {
    padding: 80px 16px;
  }
  .application .how-it-works-title {
    font-size: clamp(32px, 8vw, 56px);
  }
  .application .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .application .pricing {
    padding: 80px 16px;
  }
  .application .pricing-title {
    font-size: clamp(32px, 8vw, 56px);
  }
  .application .pricing-card {
    padding: 32px 24px;
  }
  .application .plan-name {
    font-size: 20px;
  }
  .application .price {
    font-size: 40px;
  }
  .application .contact {
    padding: 80px 16px;
  }
  .application .contact-title {
    font-size: clamp(32px, 8vw, 56px);
  }
  .application .contact-form-wrapper {
    padding: 32px 24px;
  }
  .application .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .application .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .application .tag-group {
    gap: 6px;
  }
  .application .tag-item span {
    padding: 6px 12px;
    font-size: 13px;
  }
  .application .footer {
    padding: 40px 16px 24px;
  }
  .application .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .application .footer-social {
    justify-content: center;
  }
}
.application {
  /* Extra small mobile devices */
}
@media (max-width: 480px) {
  .application .header {
    padding: 0 8px;
    height: 52px;
    gap: 8px;
  }
  .application .logo-image {
    height: 24px;
    min-width: 24px;
  }
  .application .nav {
    gap: 8px;
  }
  .application .cta-button {
    padding: 4px 8px;
    font-size: 11px;
    border-radius: 16px;
  }
  .application .hero-title {
    font-size: clamp(28px, 12vw, 48px);
  }
  .application .features-title,
  .application .how-it-works-title,
  .application .pricing-title,
  .application .contact-title {
    font-size: clamp(28px, 10vw, 48px);
  }
}
.workspace-show{
  margin-left: auto;
  margin-right: auto;
  margin-left: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 32px;
  padding-bottom: 32px;
  padding-right: 8rem;
}
.workspace-show .dashboard-header{
  margin-bottom: 32px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.workspace-show .dashboard-header h1{
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header h1{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .dashboard-header .subtitle{
  font-size: 1.125rem;
  line-height: 1.75rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header .subtitle{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .dashboard-header .dashboard-controls{
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.workspace-show .dashboard-header .dashboard-controls .control-group{
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  border-style: none;
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header .dashboard-controls .control-group{
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .dashboard-header .dashboard-controls .control-group:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header .dashboard-controls .control-group:hover{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .dashboard-header .dashboard-controls .control-group{
  position: relative;
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-icon{
  height: 16px;
  width: 16px;
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-flag{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-text{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header .dashboard-controls .control-group .control-text{
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-arrow{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(127 127 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header .dashboard-controls .control-group .control-arrow{
    color: rgb(127 127 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-select{
  cursor: pointer;
  border-style: none;
  background-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / 1);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%237f7f80' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0 center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .dashboard-header .dashboard-controls .control-group .control-select{
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-select:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.workspace-show .dashboard-header .dashboard-controls .control-group .control-select::-ms-expand {
  display: none;
}
.workspace-show .metrics-grid{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
@media (min-width: 640px) {
  .workspace-show .metrics-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .workspace-show .metrics-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .workspace-show .metrics-grid{
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.workspace-show .metrics-grid .metric-card{
  border-radius: 1rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 24px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .metrics-grid .metric-card{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .metrics-grid .metric-card:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.workspace-show .metrics-grid .metric-card .metric-header{
  margin-bottom: 24px;
  margin-right: 8px;
  display: flex;
  align-items: center;
}
.workspace-show .metrics-grid .metric-card .metric-header .metric-title{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(127 127 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .metrics-grid .metric-card .metric-header .metric-title{
    color: rgb(127 127 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .metrics-grid .metric-card .metric-header .metric-trend-icon{
  height: 24px;
  width: 24px;
  opacity: 0.8;
}
.workspace-show .metrics-grid .metric-card .metric-value{
  margin-bottom: 8px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  line-height: 1;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .metrics-grid .metric-card .metric-value{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .metrics-grid .metric-card .metric-subtitle{
  margin-bottom: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(127 127 128 / 1);
  font-weight: 400;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .metrics-grid .metric-card .metric-subtitle{
    color: rgb(127 127 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .metrics-grid .metric-card .metric-change{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  line-height: 1.625;
}
.workspace-show .metrics-grid .metric-card .metric-change.positive{
  --tw-text-opacity: 1;
  color: rgb(36 163 124 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .metrics-grid .metric-card .metric-change.positive{
    color: rgb(36 163 124 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .metrics-grid .metric-card .metric-change.negative{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .metrics-grid .metric-card .metric-change.negative{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .analysis-alerts-container{
  margin-top: 32px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
@media (min-width: 1024px) {
  .workspace-show .analysis-alerts-container{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .workspace-show .competition-section{
    grid-column: span 2 / span 2;
  }
}
.workspace-show .competition-section .new-cards-grid{
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
@media (min-width: 1024px) {
  .workspace-show .competition-section .new-cards-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.workspace-show .competition-section .section-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .competition-section .section-header h2{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header h2{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls{
  display: flex;
  width: 100%;
  gap: 16px;
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper{
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1;
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-label{
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
  margin-bottom: 4px;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-label{
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select{
  width: 100%;
  cursor: pointer;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select:focus{
  border-color: transparent;
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group{
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group .control-text{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group .control-text{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group .control-arrow{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .section-header .section-controls .control-wrapper .control-group .control-arrow{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .competition-content{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competition-section .competition-content .chart-with-labels{
  display: grid;
  grid-gap: 16px;
  gap: 16px;
  grid-template-areas: "y-label chart" ". x-label";
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
}
.workspace-show .competition-section .competition-content .chart-with-labels .y-axis-label {
  grid-area: y-label;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(-90deg) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-with-labels .y-axis-label {
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
}
.workspace-show .competition-section .competition-content .chart-with-labels .y-axis-label img{
  margin-right: 4px;
  margin-top: 4px;
  transform: rotate(180deg);
}
.workspace-show .competition-section .competition-content .chart-with-labels .chart-container {
  grid-area: chart;
}
.workspace-show .competition-section .competition-content .chart-with-labels .x-axis-label {
  grid-area: x-label;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 300;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-with-labels .x-axis-label {
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
}
.workspace-show .competition-section .competition-content .chart-with-labels .x-axis-label img{
  margin-left: 4px;
}
.workspace-show .competition-section .competition-content .chart-container-wrapper{
  --tw-bg-opacity: 1;
  background-color: rgb(251 252 253 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  position: relative;
  border-radius: 1rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-container-wrapper{
    background-color: rgb(251 252 253 / var(--tw-bg-opacity, 1));
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .competition-section .competition-content .chart-container {
  /* quadrant-background.png scales to cover and center. use rails image helper. */
  background-image: url(/assets/backgrounds/quadrant-background-d57f4b7cae560c72d5758821773f4ce866a9c71e9fcf909d26dee4ba7424bb02.png);
  background-size: cover;
  background-position: center;
}
.workspace-show .competition-section .competition-content .chart-container .bubble-chart{
  position: relative;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  --tw-gradient-from: #f9fafb var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(249 250 251 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
  overflow: hidden;
  z-index: 9;
}
.workspace-show .competition-section .competition-content .chart-footer{
  justify-content: center;
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.workspace-show .competition-section .competition-content .chart-footer .live-data-indicator{
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgb(75 85 99 / 1);
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 8px;
  padding-right: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(236 253 245 / 1);
  border-radius: 9999px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(36 163 124 / 1);
  --tw-text-opacity: 1;
  color: rgb(36 163 124 / 1);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-footer .live-data-indicator{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
    background-color: rgb(236 253 245 / var(--tw-bg-opacity, 1));
    border-color: rgb(36 163 124 / var(--tw-border-opacity, 1));
    color: rgb(36 163 124 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .competition-content .chart-footer .live-data-indicator .status-dot{
  height: 8px;
  width: 8px;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(36 163 124 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-footer .live-data-indicator .status-dot{
    background-color: rgb(36 163 124 / var(--tw-bg-opacity, 1));
  }
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.workspace-show .competition-section .competition-content .chart-footer .live-data-indicator .status-dot{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.workspace-show .competition-section .competition-content .chart-footer .chart-link{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(82 82 91 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-footer .chart-link{
    color: rgb(82 82 91 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .competition-content .chart-footer .chart-link:hover{
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competition-section .competition-content .chart-footer .chart-link:hover{
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competition-section .competition-content .chart-footer .chart-link{
  cursor: pointer;
}
@media (min-width: 1024px) {
  .workspace-show .alerts-section{
    grid-column: span 1 / span 1;
  }
}
.workspace-show .alerts-section .alerts-wrapper{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  padding: 16px;
  border-radius: 1rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-wrapper{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .alerts-section .section-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .alerts-section .section-header .alerts-title{
  display: flex;
  align-items: center;
  gap: 12px;
}
.workspace-show .alerts-section .section-header .alerts-title .alerts-icon{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.workspace-show .alerts-section .section-header .alerts-title h3{
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .section-header .alerts-title h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .section-header .alerts-title .alerts-count{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / 1);
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / 1);
  display: flex;
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .section-header .alerts-title .alerts-count{
    background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn{
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .section-header .alerts-controls .alert-rules-btn .settings-icon{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.workspace-show .alerts-section .alerts-list > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(12px * calc(1 - 0));
  margin-top: calc(12px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(12px * 0);
  margin-bottom: calc(12px * var(--tw-space-y-reverse));
}
.workspace-show .alerts-section .alerts-list .alert-item{
  border-radius: 0.75rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  padding: 16px;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item:hover{
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item{
  display: flex;
  gap: 12px;
}
.workspace-show .alerts-section .alerts-list .alert-item.high-priority{
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-left-color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item.high-priority{
    border-left-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item.medium-priority{
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-left-color: rgb(234 179 8 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item.medium-priority{
    border-left-color: rgb(234 179 8 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item.low-priority{
  border-left-width: 4px;
  --tw-border-opacity: 1;
  border-left-color: rgb(82 82 91 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item.low-priority{
    border-left-color: rgb(82 82 91 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-icon{
  display: flex;
  height: 12px;
  width: 12px;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.75rem;
  flex-shrink: 0;
  margin-top: 4px;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content{
  flex: 1 1;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header{
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-title{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-title{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority{
  border-radius: 9999px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority.high{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority.high{
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority.medium{
  --tw-bg-opacity: 1;
  background-color: rgb(254 249 195 / 1);
  --tw-text-opacity: 1;
  color: rgb(133 77 14 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority.medium{
    background-color: rgb(254 249 195 / var(--tw-bg-opacity, 1));
    color: rgb(133 77 14 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority.low{
  --tw-bg-opacity: 1;
  background-color: rgb(244 244 245 / 1);
  --tw-text-opacity: 1;
  color: rgb(39 39 42 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-priority.low{
    background-color: rgb(244 244 245 / var(--tw-bg-opacity, 1));
    color: rgb(39 39 42 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss:hover{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss:hover{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss{
  display: flex;
  height: 24px;
  width: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss:hover{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  border-style: none;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: 0 0 #0000, 0 0 #0000, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-header .alert-dismiss img {
  height: 20px;
  width: 20px;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-description{
  font-weight: 300;
  margin-bottom: 8px;
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / 1);
  line-height: 1.375;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-description{
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-details{
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-details{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions{
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-time{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  flex-grow: 1;
  font-size: 0.75rem;
  line-height: 1rem;
  align-self: center;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-time{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action{
  border-radius: 0.375rem;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 300;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  cursor: pointer;
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.snooze{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.snooze{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.snooze:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.snooze:hover{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.investigate{
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  --tw-text-opacity: 1;
  color: rgb(63 63 70 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.investigate{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
    color: rgb(63 63 70 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.investigate:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .alerts-section .alerts-list .alert-item .alert-content .alert-actions .alert-action.investigate:hover{
    background-color: rgb(250 250 250 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section{
  margin-top: 32px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  border-radius: 0.5rem;
  padding: 32px;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section{
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
  }
}
@media (min-width: 1024px) {
  .workspace-show .competitor-snapshot-section{
    grid-column: span 2 / span 2;
  }
}
.workspace-show .competitor-snapshot-section .section-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .competitor-snapshot-section .section-header h2{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .section-header h2{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group{
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group .control-text{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group .control-text{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group .control-arrow{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .section-header .section-controls .control-group .control-arrow{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards{
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}
@media (min-width: 768px) {
  .workspace-show .competitor-snapshot-section .competitor-cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card{
  border-radius: 1rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 24px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card:hover{
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header{
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-name{
  display: flex;
  align-items: center;
  gap: 8px;
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-name .app-name{
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-name .app-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-name .crown-icon{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-trend{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-trend.positive{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-trend.positive{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-trend.negative{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-header .competitor-trend.negative{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-metrics{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 16px;
  gap: 16px;
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-metrics .metric-group{
  display: flex;
  flex-direction: column;
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-metrics .metric-group .metric-label{
  margin-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-metrics .metric-group .metric-label{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-metrics .metric-group .metric-value{
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .competitor-cards .competitor-card .competitor-metrics .metric-group .metric-value{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison{
  margin-bottom: 32px;
}
.workspace-show .competitor-snapshot-section .installs-comparison h3{
  margin-bottom: 16px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container{
  border-radius: 1rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding: 24px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart{
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 16rem;
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 32px;
  height: 100%;
  width: 100%;
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group{
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 80px;
  flex: 1 1;
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar{
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar:hover{
  opacity: 0.8;
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar.dozepro-bar{
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar.dozepro-bar{
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar.sleepwell-bar{
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar.sleepwell-bar{
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar.nightowl-bar{
  --tw-bg-opacity: 1;
  background-color: rgb(20 184 166 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar.nightowl-bar{
    background-color: rgb(20 184 166 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar-label{
  margin-top: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  text-align: center;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-bars .bar-group .bar-label{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-y-axis{
  position: absolute;
  left: 0px;
  top: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / 1);
  margin-left: -32px;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-y-axis{
    color: rgb(107 114 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .installs-comparison .chart-container .bar-chart .chart-y-axis .y-tick{
  line-height: 1;
}
.workspace-show .competitor-snapshot-section .share-of-voice h3{
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(24px * calc(1 - 0));
  margin-top: calc(24px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(24px * 0);
  margin-bottom: calc(24px * var(--tw-space-y-reverse));
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row{
  display: flex;
  align-items: center;
  gap: 24px;
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-name{
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  width: 6rem;
  flex-shrink: 0;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares{
  flex: 1 1;
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar{
  display: flex;
  height: 24px;
  overflow: hidden;
  border-radius: 9999px;
  margin-bottom: 8px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment{
  height: 100%;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment:hover{
  opacity: 0.8;
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment.zensleep{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment.zensleep{
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment.dozepro{
  --tw-bg-opacity: 1;
  background-color: rgb(249 115 22 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment.dozepro{
    background-color: rgb(249 115 22 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment.sleepwell{
  --tw-bg-opacity: 1;
  background-color: rgb(168 85 247 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-bar .share-segment.sleepwell{
    background-color: rgb(168 85 247 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend{
  display: flex;
  gap: 16px;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item{
  display: flex;
  align-items: center;
  gap: 4px;
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item.zensleep{
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item.zensleep{
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item.dozepro{
  --tw-text-opacity: 1;
  color: rgb(234 88 12 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item.dozepro{
    color: rgb(234 88 12 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item.sleepwell{
  --tw-text-opacity: 1;
  color: rgb(147 51 234 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .competitor-snapshot-section .share-of-voice .keyword-analysis .keyword-row .keyword-shares .share-legend .legend-item.sleepwell{
    color: rgb(147 51 234 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section{
  margin-top: 32px;
  padding: 32px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(232 232 232 / 1);
  border-radius: 0.5rem;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section{
    border-color: rgb(232 232 232 / var(--tw-border-opacity, 1));
  }
}
@media (min-width: 1024px) {
  .workspace-show .reviews-section{
    grid-column: span 3 / span 3;
  }
}
.workspace-show .reviews-section .section-header{
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .reviews-section .section-header h2{
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .section-header h2{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .section-header .section-controls .control-group{
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  border-radius: 0.5rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / 1);
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .section-header .section-controls .control-group{
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
    background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .reviews-section .section-header .section-controls .control-group:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .section-header .section-controls .control-group:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .reviews-section .section-header .section-controls .control-group .control-text{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .section-header .section-controls .control-group .control-text{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .section-header .section-controls .control-group .control-arrow{
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .section-header .section-controls .control-group .control-arrow{
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.workspace-show .reviews-section .reviews-content .sentiment-overview{
  margin-bottom: 32px;
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
@media (min-width: 768px) {
  .workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric{
  text-align: center;
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-score{
  margin-bottom: 8px;
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
  line-height: 1;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-score{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-label{
  margin-bottom: 8px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(127 127 128 / 1);
  font-weight: 400;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-label{
    color: rgb(127 127 128 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-change{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  line-height: 1.625;
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-change.positive{
  --tw-text-opacity: 1;
  color: rgb(36 163 124 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-change.positive{
    color: rgb(36 163 124 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-change.negative{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-overview .sentiment-stats .sentiment-metric .sentiment-change.negative{
    color: rgb(239 68 68 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .rating-breakdown{
  margin-bottom: 32px;
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  padding-bottom: 32px;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .rating-breakdown{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .rating-breakdown h3{
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .rating-breakdown h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(16px * calc(1 - 0));
  margin-top: calc(16px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(16px * 0);
  margin-bottom: calc(16px * var(--tw-space-y-reverse));
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row{
  display: flex;
  align-items: center;
  gap: 16px;
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-stars{
  font-size: 0.875rem;
  line-height: 1.25rem;
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / 1);
  width: 80px;
  flex-shrink: 0;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-stars{
    color: rgb(250 204 21 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-bar{
  height: 16px;
  flex: 1 1;
  overflow: hidden;
  border-radius: 9999px;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-bar{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-bar .rating-fill{
  height: 100%;
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
  --tw-gradient-from: #facc15 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(250 204 21 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  --tw-gradient-to: #eab308 var(--tw-gradient-to-position);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-bar .rating-fill:hover{
  opacity: 0.8;
}
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-count{
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
  width: 48px;
  text-align: right;
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-count{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.onboarding-container .search-section .search-results .app-result-card .app-meta-wrapper .app-actions.workspace-show .reviews-section .reviews-content .rating-breakdown .rating-bars .rating-row .rating-count{
  justify-content: flex-end;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends h3{
  margin-bottom: 24px;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends h3{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
}
@media (min-width: 768px) {
  .workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category{
  border-radius: 0.75rem;
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
  padding: 24px;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive{
  --tw-border-opacity: 1;
  border-color: rgb(220 252 231 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive{
    border-color: rgb(220 252 231 / var(--tw-border-opacity, 1));
    background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .category-header .category-icon{
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .category-header .category-icon{
    color: rgb(22 163 74 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .category-header .category-name{
  --tw-text-opacity: 1;
  color: rgb(20 83 45 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .category-header .category-name{
    color: rgb(20 83 45 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .category-header .category-percentage{
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .category-header .category-percentage{
    color: rgb(21 128 61 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .keyword{
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / 1);
  --tw-text-opacity: 1;
  color: rgb(22 101 52 / 1);
  --tw-border-opacity: 1;
  border-color: rgb(187 247 208 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.positive .keyword{
    background-color: rgb(220 252 231 / var(--tw-bg-opacity, 1));
    color: rgb(22 101 52 / var(--tw-text-opacity, 1));
    border-color: rgb(187 247 208 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral{
    border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .category-header .category-icon{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .category-header .category-icon{
    color: rgb(75 85 99 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .category-header .category-name{
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .category-header .category-name{
    color: rgb(17 24 39 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .category-header .category-percentage{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .category-header .category-percentage{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .keyword{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / 1);
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / 1);
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.neutral .keyword{
    background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
    color: rgb(31 41 55 / var(--tw-text-opacity, 1));
    border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative{
  --tw-border-opacity: 1;
  border-color: rgb(254 226 226 / 1);
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative{
    border-color: rgb(254 226 226 / var(--tw-border-opacity, 1));
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .category-header .category-icon{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .category-header .category-icon{
    color: rgb(220 38 38 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .category-header .category-name{
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .category-header .category-name{
    color: rgb(127 29 29 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .category-header .category-percentage{
  --tw-text-opacity: 1;
  color: rgb(185 28 28 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .category-header .category-percentage{
    color: rgb(185 28 28 / var(--tw-text-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .keyword{
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / 1);
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / 1);
  --tw-border-opacity: 1;
  border-color: rgb(254 202 202 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category.negative .keyword{
    background-color: rgb(254 226 226 / var(--tw-bg-opacity, 1));
    color: rgb(153 27 27 / var(--tw-text-opacity, 1));
    border-color: rgb(254 202 202 / var(--tw-border-opacity, 1));
  }
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-header{
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-header .category-icon{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-header .category-name{
  font-weight: 600;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-header .category-percentage{
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-keywords{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-keywords .keyword{
  border-radius: 9999px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 4px;
  padding-bottom: 4px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 500;
  border-width: 1px;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}
.workspace-show .reviews-section .reviews-content .sentiment-trends .trends-chart .sentiment-categories .sentiment-category .category-keywords .keyword:hover{
  opacity: 0.8;
}
.hover\:border-gray-300:hover{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:border-gray-300:hover{
    border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
  }
}
.hover\:bg-blue-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(29 78 216 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:bg-blue-700:hover{
    background-color: rgb(29 78 216 / var(--tw-bg-opacity, 1));
  }
}
.hover\:bg-gray-300:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:bg-gray-300:hover{
    background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
  }
}
.hover\:bg-gray-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:bg-gray-50:hover{
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
  }
}
.hover\:bg-gray-800:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:bg-gray-800:hover{
    background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
  }
}
.hover\:bg-red-50:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:bg-red-50:hover{
    background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
  }
}
.hover\:bg-zinc-700:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:bg-zinc-700:hover{
    background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
  }
}
.hover\:text-blue-500:hover{
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / 1);
}
@supports (color: rgb(0 0 0 / 0)){
.hover\:text-blue-500:hover{
    color: rgb(59 130 246 / var(--tw-text-opacity, 1));
  }
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:no-underline:hover{
  text-decoration-line: none;
}
.hover\:shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: 0 0 #0000, 0 0 #0000, 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:outline-none:focus{
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: /*!*/ /*!*/ 0 0 0 0px #fff, /*!*/ /*!*/ 0 0 0 calc(2px + 2px) #2563eb, 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-blue-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity, 1));
}
.focus\:ring-gray-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(107 114 128 / var(--tw-ring-opacity, 1));
}
.focus\:ring-red-500:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity, 1));
}
.focus\:ring-zinc-600:focus{
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(82 82 91 / var(--tw-ring-opacity, 1));
}
.focus\:ring-offset-2:focus{
  --tw-ring-offset-width: 2px;
}
@media (min-width: 640px){
  .sm\:flex{
    display: flex;
  }
  .sm\:hidden{
    display: none;
  }
  .sm\:flex-1{
    flex: 1 1;
  }
  .sm\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sm\:items-center{
    align-items: center;
  }
  .sm\:justify-between{
    justify-content: space-between;
  }
  .sm\:px-6{
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (min-width: 768px){
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1024px){
  .lg\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .lg\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .lg\:px-8{
    padding-left: 32px;
    padding-right: 32px;
  }
}
