@charset "UTF-8";

/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Attention seekers  */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

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

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

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

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

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

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

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Back entrances */

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

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

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

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

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

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

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

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

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

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

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

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

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

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

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

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

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

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

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

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

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

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

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

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

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

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

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

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */

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

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

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

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

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

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

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

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

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

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

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

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

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

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

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

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

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

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

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

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

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

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

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

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

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

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

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

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Bouncing exits  */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Fading entrances  */

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

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

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

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

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

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

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

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

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

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

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

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

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

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

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

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

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */

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

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

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

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

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

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

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

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

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

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

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

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

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

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

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

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

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

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

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

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Lightspeed */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

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

/* Rotating entrances */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Rotating exits */

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

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

@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

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

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

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

@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

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

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

/* Specials */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

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

/* Zooming entrances */

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Zooming exits */

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

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

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Sliding entrances */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Sliding exits */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@charset "UTF-8";

/*
  If you are using a preprocessor, start here. This holds any global settings for your project.
  I'd like to stress the word global – this layer should only house settings that need to be accessed from anywhere.
  Settings like $heading-size-1 should be defined in the Headings partial. This ensures this layer stays nice and slim,
  and means that most settings can be found alongside the code that uses them, making finding things far simpler.

  Examples of global settings might be things like the base font size, colour palettes, config (for example, $environment: dev;) and so on.
 */

/*
  ! tailwindcss v2.0.4 | MIT License | https://tailwindcss.com
 */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
}

/*
Text-level semantics
====================
*/

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

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

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

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

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

small {
  font-size: 80%;
}

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/

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

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

/*
Forms
=====
*/

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

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

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

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

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

/**
Remove the inner border and padding in Firefox.
*/

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

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

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

legend {
  padding: 0;
}

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

progress {
  vertical-align: baseline;
}

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

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

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

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

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

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

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

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

/*
Interactive
===========
*/

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

summary {
  display: list-item;
}

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

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

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

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

fieldset {
  margin: 0;
  padding: 0;
}

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

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

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

/*
 * Ensure horizontal rules are visible by default
 */

hr {
  border-top-width: 1px;
}

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

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

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #a1a1aa;
}

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

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

table {
  border-collapse: collapse;
}

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

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

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

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
optgroup,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code,
kbd,
samp {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

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

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

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

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

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

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

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

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

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

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

.u-space-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
}

.u-space-x-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
}

.u-space-x-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
  margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
}

.u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
}

.u--space-x-0 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
  margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-1 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-6 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-7 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-9 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-10 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-11 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-12 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-14 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-16 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-20 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-24 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-28 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-32 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-36 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-40 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-44 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-48 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-52 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-56 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-60 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-64 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-72 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-80 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-96 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
}

.u--space-x-px > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0 !important;
  margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
  margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
}

.u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 0 !important;
  margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
  margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
}

.u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 1 !important;
}

.u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-space-x-reverse: 1 !important;
}

.u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0 !important;
  border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
  border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
}

.u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0 !important;
  border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
  border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
}

.u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0 !important;
  border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
  border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
}

.u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0 !important;
  border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
  border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
}

.u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0 !important;
  border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
  border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
}

.u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0 !important;
  border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
  border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
}

.u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0 !important;
  border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
  border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
}

.u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0 !important;
  border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
  border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
}

.u-divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0 !important;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
}

.u-divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0 !important;
  border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
}

.u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 1 !important;
}

.u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 1 !important;
}

.u-divide-black > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
}

.u-divide-white > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
}

.u-divide-faded > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
}

.u-divide-transparent > :not([hidden]) ~ :not([hidden]){
  border-color: transparent !important;
}

.u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
}

.u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
}

.u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
}

.u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
}

.u-divide-success > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
}

.u-divide-danger > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
  border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
}

.u-divide-solid > :not([hidden]) ~ :not([hidden]){
  border-style: solid !important;
}

.u-divide-dashed > :not([hidden]) ~ :not([hidden]){
  border-style: dashed !important;
}

.u-divide-dotted > :not([hidden]) ~ :not([hidden]){
  border-style: dotted !important;
}

.u-divide-double > :not([hidden]) ~ :not([hidden]){
  border-style: double !important;
}

.u-divide-none > :not([hidden]) ~ :not([hidden]){
  border-style: none !important;
}

.u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0 !important;
}

.u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.05 !important;
}

.u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.1 !important;
}

.u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.2 !important;
}

.u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.25 !important;
}

.u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.3 !important;
}

.u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.4 !important;
}

.u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.5 !important;
}

.u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.6 !important;
}

.u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.7 !important;
}

.u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.75 !important;
}

.u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.8 !important;
}

.u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.9 !important;
}

.u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 0.95 !important;
}

.u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1 !important;
}

.u-sr-only{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

.u-not-sr-only{
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.focus-within\:u-sr-only:focus-within{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

.focus-within\:u-not-sr-only:focus-within{
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.focus\:u-sr-only:focus{
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border-width: 0 !important;
}

.focus\:u-not-sr-only:focus{
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.u-appearance-none{
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}

.u-bg-fixed{
  background-attachment: fixed !important;
}

.u-bg-local{
  background-attachment: local !important;
}

.u-bg-scroll{
  background-attachment: scroll !important;
}

.u-bg-clip-border{
  background-clip: border-box !important;
}

.u-bg-clip-padding{
  background-clip: padding-box !important;
}

.u-bg-clip-content{
  background-clip: content-box !important;
}

.u-bg-clip-text{
  -webkit-background-clip: text !important;
          background-clip: text !important;
}

.u-bg-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-bg-faded{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.u-bg-transparent{
  background-color: transparent !important;
}

.u-bg-neutral-1{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-15{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-45{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
}

.u-bg-neutral-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
}

.u-bg-primary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
}

.u-bg-secundary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
}

.u-bg-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
}

.u-bg-danger{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-black{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-white{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-faded{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-transparent{
  background-color: transparent !important;
}

.u-group:hover .group-hover\:u-bg-neutral-1{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-15{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-45{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-neutral-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-primary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-0{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-10{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-20{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-30{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-40{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-50{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-secundary-60{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-success{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
}

.u-group:hover .group-hover\:u-bg-danger{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-black:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-white:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-faded:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-transparent:focus-within{
  background-color: transparent !important;
}

.focus-within\:u-bg-neutral-1:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-10:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-15:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-45:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-neutral-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-0:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-10:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-primary-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-0:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-10:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-20:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-30:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-40:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-50:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-secundary-60:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-success:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
}

.focus-within\:u-bg-danger:focus-within{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-black:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-white:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-faded:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-transparent:hover{
  background-color: transparent !important;
}

.hover\:u-bg-neutral-1:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-10:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-15:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-45:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-neutral-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-0:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-10:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-primary-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-0:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-10:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-20:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-30:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-40:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-50:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-secundary-60:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-success:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
}

.hover\:u-bg-danger:hover{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-black:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-white:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-faded:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-transparent:focus{
  background-color: transparent !important;
}

.focus\:u-bg-neutral-1:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-10:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-15:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-45:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-neutral-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-0:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-10:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-primary-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-0:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-10:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-20:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-30:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-40:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-50:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-secundary-60:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-success:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
}

.focus\:u-bg-danger:focus{
  --tw-bg-opacity: 1 !important;
  background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
}

.u-bg-none{
  background-image: none !important;
}

.u-bg-gradient-to-t{
  background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-tr{
  background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-r{
  background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-br{
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-bl{
  background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-l{
  background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
}

.u-bg-gradient-to-tl{
  background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
}

.u-from-black{
  --tw-gradient-from: #000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-from-white{
  --tw-gradient-from: #fff !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-from-faded{
  --tw-gradient-from: #818181 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.u-from-transparent{
  --tw-gradient-from: transparent !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-from-neutral-1{
  --tw-gradient-from: #FFFFFF !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-from-neutral-10{
  --tw-gradient-from: #F7F7F7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.u-from-neutral-15{
  --tw-gradient-from: #F2F2F2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
}

.u-from-neutral-20{
  --tw-gradient-from: #e3e3e3 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.u-from-neutral-30{
  --tw-gradient-from: #D9D9D9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.u-from-neutral-40{
  --tw-gradient-from: #C1C1C1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.u-from-neutral-45{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.u-from-neutral-50{
  --tw-gradient-from: #2d2d2d !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
}

.u-from-neutral-60{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-from-primary-0{
  --tw-gradient-from: #FAFCFE !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
}

.u-from-primary-10{
  --tw-gradient-from: #BEDDF2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
}

.u-from-primary-20{
  --tw-gradient-from: #83BEE6 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
}

.u-from-primary-30{
  --tw-gradient-from: #489FDA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
}

.u-from-primary-40{
  --tw-gradient-from: #257BB5 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
}

.u-from-primary-50{
  --tw-gradient-from: #1C5E8B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
}

.u-from-primary-60{
  --tw-gradient-from: #144160 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
}

.u-from-secundary-0{
  --tw-gradient-from: #F6FCF6 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
}

.u-from-secundary-10{
  --tw-gradient-from: #C4EAC1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
}

.u-from-secundary-20{
  --tw-gradient-from: #93D78B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
}

.u-from-secundary-30{
  --tw-gradient-from: #61C556 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
}

.u-from-secundary-40{
  --tw-gradient-from: #409E36 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
}

.u-from-secundary-50{
  --tw-gradient-from: #317829 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
}

.u-from-secundary-60{
  --tw-gradient-from: #21521C !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
}

.u-from-success{
  --tw-gradient-from: #296A33 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
}

.u-from-danger{
  --tw-gradient-from: #FD6262 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.u-via-black{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-via-white{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-via-faded{
  --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.u-via-transparent{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-via-neutral-1{
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.u-via-neutral-10{
  --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.u-via-neutral-15{
  --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
}

.u-via-neutral-20{
  --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.u-via-neutral-30{
  --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.u-via-neutral-40{
  --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.u-via-neutral-45{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.u-via-neutral-50{
  --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
}

.u-via-neutral-60{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.u-via-primary-0{
  --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
}

.u-via-primary-10{
  --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
}

.u-via-primary-20{
  --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
}

.u-via-primary-30{
  --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
}

.u-via-primary-40{
  --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
}

.u-via-primary-50{
  --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
}

.u-via-primary-60{
  --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
}

.u-via-secundary-0{
  --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
}

.u-via-secundary-10{
  --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
}

.u-via-secundary-20{
  --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
}

.u-via-secundary-30{
  --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
}

.u-via-secundary-40{
  --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
}

.u-via-secundary-50{
  --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
}

.u-via-secundary-60{
  --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
}

.u-via-success{
  --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
}

.u-via-danger{
  --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.u-to-black{
  --tw-gradient-to: #000 !important;
}

.u-to-white{
  --tw-gradient-to: #fff !important;
}

.u-to-faded{
  --tw-gradient-to: #818181 !important;
}

.u-to-transparent{
  --tw-gradient-to: transparent !important;
}

.u-to-neutral-1{
  --tw-gradient-to: #FFFFFF !important;
}

.u-to-neutral-10{
  --tw-gradient-to: #F7F7F7 !important;
}

.u-to-neutral-15{
  --tw-gradient-to: #F2F2F2 !important;
}

.u-to-neutral-20{
  --tw-gradient-to: #e3e3e3 !important;
}

.u-to-neutral-30{
  --tw-gradient-to: #D9D9D9 !important;
}

.u-to-neutral-40{
  --tw-gradient-to: #C1C1C1 !important;
}

.u-to-neutral-45{
  --tw-gradient-to: #494949 !important;
}

.u-to-neutral-50{
  --tw-gradient-to: #2d2d2d !important;
}

.u-to-neutral-60{
  --tw-gradient-to: #000000 !important;
}

.u-to-primary-0{
  --tw-gradient-to: #FAFCFE !important;
}

.u-to-primary-10{
  --tw-gradient-to: #BEDDF2 !important;
}

.u-to-primary-20{
  --tw-gradient-to: #83BEE6 !important;
}

.u-to-primary-30{
  --tw-gradient-to: #489FDA !important;
}

.u-to-primary-40{
  --tw-gradient-to: #257BB5 !important;
}

.u-to-primary-50{
  --tw-gradient-to: #1C5E8B !important;
}

.u-to-primary-60{
  --tw-gradient-to: #144160 !important;
}

.u-to-secundary-0{
  --tw-gradient-to: #F6FCF6 !important;
}

.u-to-secundary-10{
  --tw-gradient-to: #C4EAC1 !important;
}

.u-to-secundary-20{
  --tw-gradient-to: #93D78B !important;
}

.u-to-secundary-30{
  --tw-gradient-to: #61C556 !important;
}

.u-to-secundary-40{
  --tw-gradient-to: #409E36 !important;
}

.u-to-secundary-50{
  --tw-gradient-to: #317829 !important;
}

.u-to-secundary-60{
  --tw-gradient-to: #21521C !important;
}

.u-to-success{
  --tw-gradient-to: #296A33 !important;
}

.u-to-danger{
  --tw-gradient-to: #FD6262 !important;
}

.hover\:u-from-black:hover{
  --tw-gradient-from: #000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-from-white:hover{
  --tw-gradient-from: #fff !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-from-faded:hover{
  --tw-gradient-from: #818181 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.hover\:u-from-transparent:hover{
  --tw-gradient-from: transparent !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-from-neutral-1:hover{
  --tw-gradient-from: #FFFFFF !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-from-neutral-10:hover{
  --tw-gradient-from: #F7F7F7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.hover\:u-from-neutral-15:hover{
  --tw-gradient-from: #F2F2F2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
}

.hover\:u-from-neutral-20:hover{
  --tw-gradient-from: #e3e3e3 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.hover\:u-from-neutral-30:hover{
  --tw-gradient-from: #D9D9D9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.hover\:u-from-neutral-40:hover{
  --tw-gradient-from: #C1C1C1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.hover\:u-from-neutral-45:hover{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.hover\:u-from-neutral-50:hover{
  --tw-gradient-from: #2d2d2d !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
}

.hover\:u-from-neutral-60:hover{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-from-primary-0:hover{
  --tw-gradient-from: #FAFCFE !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
}

.hover\:u-from-primary-10:hover{
  --tw-gradient-from: #BEDDF2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
}

.hover\:u-from-primary-20:hover{
  --tw-gradient-from: #83BEE6 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
}

.hover\:u-from-primary-30:hover{
  --tw-gradient-from: #489FDA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
}

.hover\:u-from-primary-40:hover{
  --tw-gradient-from: #257BB5 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
}

.hover\:u-from-primary-50:hover{
  --tw-gradient-from: #1C5E8B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
}

.hover\:u-from-primary-60:hover{
  --tw-gradient-from: #144160 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
}

.hover\:u-from-secundary-0:hover{
  --tw-gradient-from: #F6FCF6 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
}

.hover\:u-from-secundary-10:hover{
  --tw-gradient-from: #C4EAC1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
}

.hover\:u-from-secundary-20:hover{
  --tw-gradient-from: #93D78B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
}

.hover\:u-from-secundary-30:hover{
  --tw-gradient-from: #61C556 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
}

.hover\:u-from-secundary-40:hover{
  --tw-gradient-from: #409E36 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
}

.hover\:u-from-secundary-50:hover{
  --tw-gradient-from: #317829 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
}

.hover\:u-from-secundary-60:hover{
  --tw-gradient-from: #21521C !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
}

.hover\:u-from-success:hover{
  --tw-gradient-from: #296A33 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
}

.hover\:u-from-danger:hover{
  --tw-gradient-from: #FD6262 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.hover\:u-via-black:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-via-white:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-via-faded:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.hover\:u-via-transparent:hover{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-via-neutral-1:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.hover\:u-via-neutral-10:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.hover\:u-via-neutral-15:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
}

.hover\:u-via-neutral-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.hover\:u-via-neutral-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.hover\:u-via-neutral-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.hover\:u-via-neutral-45:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.hover\:u-via-neutral-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
}

.hover\:u-via-neutral-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.hover\:u-via-primary-0:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
}

.hover\:u-via-primary-10:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
}

.hover\:u-via-primary-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
}

.hover\:u-via-primary-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
}

.hover\:u-via-primary-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
}

.hover\:u-via-primary-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
}

.hover\:u-via-primary-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
}

.hover\:u-via-secundary-0:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
}

.hover\:u-via-secundary-10:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
}

.hover\:u-via-secundary-20:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
}

.hover\:u-via-secundary-30:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
}

.hover\:u-via-secundary-40:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
}

.hover\:u-via-secundary-50:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
}

.hover\:u-via-secundary-60:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
}

.hover\:u-via-success:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
}

.hover\:u-via-danger:hover{
  --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.hover\:u-to-black:hover{
  --tw-gradient-to: #000 !important;
}

.hover\:u-to-white:hover{
  --tw-gradient-to: #fff !important;
}

.hover\:u-to-faded:hover{
  --tw-gradient-to: #818181 !important;
}

.hover\:u-to-transparent:hover{
  --tw-gradient-to: transparent !important;
}

.hover\:u-to-neutral-1:hover{
  --tw-gradient-to: #FFFFFF !important;
}

.hover\:u-to-neutral-10:hover{
  --tw-gradient-to: #F7F7F7 !important;
}

.hover\:u-to-neutral-15:hover{
  --tw-gradient-to: #F2F2F2 !important;
}

.hover\:u-to-neutral-20:hover{
  --tw-gradient-to: #e3e3e3 !important;
}

.hover\:u-to-neutral-30:hover{
  --tw-gradient-to: #D9D9D9 !important;
}

.hover\:u-to-neutral-40:hover{
  --tw-gradient-to: #C1C1C1 !important;
}

.hover\:u-to-neutral-45:hover{
  --tw-gradient-to: #494949 !important;
}

.hover\:u-to-neutral-50:hover{
  --tw-gradient-to: #2d2d2d !important;
}

.hover\:u-to-neutral-60:hover{
  --tw-gradient-to: #000000 !important;
}

.hover\:u-to-primary-0:hover{
  --tw-gradient-to: #FAFCFE !important;
}

.hover\:u-to-primary-10:hover{
  --tw-gradient-to: #BEDDF2 !important;
}

.hover\:u-to-primary-20:hover{
  --tw-gradient-to: #83BEE6 !important;
}

.hover\:u-to-primary-30:hover{
  --tw-gradient-to: #489FDA !important;
}

.hover\:u-to-primary-40:hover{
  --tw-gradient-to: #257BB5 !important;
}

.hover\:u-to-primary-50:hover{
  --tw-gradient-to: #1C5E8B !important;
}

.hover\:u-to-primary-60:hover{
  --tw-gradient-to: #144160 !important;
}

.hover\:u-to-secundary-0:hover{
  --tw-gradient-to: #F6FCF6 !important;
}

.hover\:u-to-secundary-10:hover{
  --tw-gradient-to: #C4EAC1 !important;
}

.hover\:u-to-secundary-20:hover{
  --tw-gradient-to: #93D78B !important;
}

.hover\:u-to-secundary-30:hover{
  --tw-gradient-to: #61C556 !important;
}

.hover\:u-to-secundary-40:hover{
  --tw-gradient-to: #409E36 !important;
}

.hover\:u-to-secundary-50:hover{
  --tw-gradient-to: #317829 !important;
}

.hover\:u-to-secundary-60:hover{
  --tw-gradient-to: #21521C !important;
}

.hover\:u-to-success:hover{
  --tw-gradient-to: #296A33 !important;
}

.hover\:u-to-danger:hover{
  --tw-gradient-to: #FD6262 !important;
}

.focus\:u-from-black:focus{
  --tw-gradient-from: #000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-from-white:focus{
  --tw-gradient-from: #fff !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-from-faded:focus{
  --tw-gradient-from: #818181 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.focus\:u-from-transparent:focus{
  --tw-gradient-from: transparent !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-from-neutral-1:focus{
  --tw-gradient-from: #FFFFFF !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-from-neutral-10:focus{
  --tw-gradient-from: #F7F7F7 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.focus\:u-from-neutral-15:focus{
  --tw-gradient-from: #F2F2F2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
}

.focus\:u-from-neutral-20:focus{
  --tw-gradient-from: #e3e3e3 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.focus\:u-from-neutral-30:focus{
  --tw-gradient-from: #D9D9D9 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.focus\:u-from-neutral-40:focus{
  --tw-gradient-from: #C1C1C1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.focus\:u-from-neutral-45:focus{
  --tw-gradient-from: #494949 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.focus\:u-from-neutral-50:focus{
  --tw-gradient-from: #2d2d2d !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
}

.focus\:u-from-neutral-60:focus{
  --tw-gradient-from: #000000 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-from-primary-0:focus{
  --tw-gradient-from: #FAFCFE !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
}

.focus\:u-from-primary-10:focus{
  --tw-gradient-from: #BEDDF2 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
}

.focus\:u-from-primary-20:focus{
  --tw-gradient-from: #83BEE6 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
}

.focus\:u-from-primary-30:focus{
  --tw-gradient-from: #489FDA !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
}

.focus\:u-from-primary-40:focus{
  --tw-gradient-from: #257BB5 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
}

.focus\:u-from-primary-50:focus{
  --tw-gradient-from: #1C5E8B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
}

.focus\:u-from-primary-60:focus{
  --tw-gradient-from: #144160 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
}

.focus\:u-from-secundary-0:focus{
  --tw-gradient-from: #F6FCF6 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
}

.focus\:u-from-secundary-10:focus{
  --tw-gradient-from: #C4EAC1 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
}

.focus\:u-from-secundary-20:focus{
  --tw-gradient-from: #93D78B !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
}

.focus\:u-from-secundary-30:focus{
  --tw-gradient-from: #61C556 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
}

.focus\:u-from-secundary-40:focus{
  --tw-gradient-from: #409E36 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
}

.focus\:u-from-secundary-50:focus{
  --tw-gradient-from: #317829 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
}

.focus\:u-from-secundary-60:focus{
  --tw-gradient-from: #21521C !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
}

.focus\:u-from-success:focus{
  --tw-gradient-from: #296A33 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
}

.focus\:u-from-danger:focus{
  --tw-gradient-from: #FD6262 !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.focus\:u-via-black:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-via-white:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-via-faded:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
}

.focus\:u-via-transparent:focus{
  --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-via-neutral-1:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
}

.focus\:u-via-neutral-10:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
}

.focus\:u-via-neutral-15:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
}

.focus\:u-via-neutral-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
}

.focus\:u-via-neutral-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
}

.focus\:u-via-neutral-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
}

.focus\:u-via-neutral-45:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
}

.focus\:u-via-neutral-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
}

.focus\:u-via-neutral-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
}

.focus\:u-via-primary-0:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
}

.focus\:u-via-primary-10:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
}

.focus\:u-via-primary-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
}

.focus\:u-via-primary-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
}

.focus\:u-via-primary-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
}

.focus\:u-via-primary-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
}

.focus\:u-via-primary-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
}

.focus\:u-via-secundary-0:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
}

.focus\:u-via-secundary-10:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
}

.focus\:u-via-secundary-20:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
}

.focus\:u-via-secundary-30:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
}

.focus\:u-via-secundary-40:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
}

.focus\:u-via-secundary-50:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
}

.focus\:u-via-secundary-60:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
}

.focus\:u-via-success:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
}

.focus\:u-via-danger:focus{
  --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
}

.focus\:u-to-black:focus{
  --tw-gradient-to: #000 !important;
}

.focus\:u-to-white:focus{
  --tw-gradient-to: #fff !important;
}

.focus\:u-to-faded:focus{
  --tw-gradient-to: #818181 !important;
}

.focus\:u-to-transparent:focus{
  --tw-gradient-to: transparent !important;
}

.focus\:u-to-neutral-1:focus{
  --tw-gradient-to: #FFFFFF !important;
}

.focus\:u-to-neutral-10:focus{
  --tw-gradient-to: #F7F7F7 !important;
}

.focus\:u-to-neutral-15:focus{
  --tw-gradient-to: #F2F2F2 !important;
}

.focus\:u-to-neutral-20:focus{
  --tw-gradient-to: #e3e3e3 !important;
}

.focus\:u-to-neutral-30:focus{
  --tw-gradient-to: #D9D9D9 !important;
}

.focus\:u-to-neutral-40:focus{
  --tw-gradient-to: #C1C1C1 !important;
}

.focus\:u-to-neutral-45:focus{
  --tw-gradient-to: #494949 !important;
}

.focus\:u-to-neutral-50:focus{
  --tw-gradient-to: #2d2d2d !important;
}

.focus\:u-to-neutral-60:focus{
  --tw-gradient-to: #000000 !important;
}

.focus\:u-to-primary-0:focus{
  --tw-gradient-to: #FAFCFE !important;
}

.focus\:u-to-primary-10:focus{
  --tw-gradient-to: #BEDDF2 !important;
}

.focus\:u-to-primary-20:focus{
  --tw-gradient-to: #83BEE6 !important;
}

.focus\:u-to-primary-30:focus{
  --tw-gradient-to: #489FDA !important;
}

.focus\:u-to-primary-40:focus{
  --tw-gradient-to: #257BB5 !important;
}

.focus\:u-to-primary-50:focus{
  --tw-gradient-to: #1C5E8B !important;
}

.focus\:u-to-primary-60:focus{
  --tw-gradient-to: #144160 !important;
}

.focus\:u-to-secundary-0:focus{
  --tw-gradient-to: #F6FCF6 !important;
}

.focus\:u-to-secundary-10:focus{
  --tw-gradient-to: #C4EAC1 !important;
}

.focus\:u-to-secundary-20:focus{
  --tw-gradient-to: #93D78B !important;
}

.focus\:u-to-secundary-30:focus{
  --tw-gradient-to: #61C556 !important;
}

.focus\:u-to-secundary-40:focus{
  --tw-gradient-to: #409E36 !important;
}

.focus\:u-to-secundary-50:focus{
  --tw-gradient-to: #317829 !important;
}

.focus\:u-to-secundary-60:focus{
  --tw-gradient-to: #21521C !important;
}

.focus\:u-to-success:focus{
  --tw-gradient-to: #296A33 !important;
}

.focus\:u-to-danger:focus{
  --tw-gradient-to: #FD6262 !important;
}

.u-bg-opacity-0{
  --tw-bg-opacity: 0 !important;
}

.u-bg-opacity-5{
  --tw-bg-opacity: 0.05 !important;
}

.u-bg-opacity-10{
  --tw-bg-opacity: 0.1 !important;
}

.u-bg-opacity-20{
  --tw-bg-opacity: 0.2 !important;
}

.u-bg-opacity-25{
  --tw-bg-opacity: 0.25 !important;
}

.u-bg-opacity-30{
  --tw-bg-opacity: 0.3 !important;
}

.u-bg-opacity-40{
  --tw-bg-opacity: 0.4 !important;
}

.u-bg-opacity-50{
  --tw-bg-opacity: 0.5 !important;
}

.u-bg-opacity-60{
  --tw-bg-opacity: 0.6 !important;
}

.u-bg-opacity-70{
  --tw-bg-opacity: 0.7 !important;
}

.u-bg-opacity-75{
  --tw-bg-opacity: 0.75 !important;
}

.u-bg-opacity-80{
  --tw-bg-opacity: 0.8 !important;
}

.u-bg-opacity-90{
  --tw-bg-opacity: 0.9 !important;
}

.u-bg-opacity-95{
  --tw-bg-opacity: 0.95 !important;
}

.u-bg-opacity-100{
  --tw-bg-opacity: 1 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-0{
  --tw-bg-opacity: 0 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-5{
  --tw-bg-opacity: 0.05 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-10{
  --tw-bg-opacity: 0.1 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-20{
  --tw-bg-opacity: 0.2 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-25{
  --tw-bg-opacity: 0.25 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-30{
  --tw-bg-opacity: 0.3 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-40{
  --tw-bg-opacity: 0.4 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-50{
  --tw-bg-opacity: 0.5 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-60{
  --tw-bg-opacity: 0.6 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-70{
  --tw-bg-opacity: 0.7 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-75{
  --tw-bg-opacity: 0.75 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-80{
  --tw-bg-opacity: 0.8 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-90{
  --tw-bg-opacity: 0.9 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-95{
  --tw-bg-opacity: 0.95 !important;
}

.u-group:hover .group-hover\:u-bg-opacity-100{
  --tw-bg-opacity: 1 !important;
}

.focus-within\:u-bg-opacity-0:focus-within{
  --tw-bg-opacity: 0 !important;
}

.focus-within\:u-bg-opacity-5:focus-within{
  --tw-bg-opacity: 0.05 !important;
}

.focus-within\:u-bg-opacity-10:focus-within{
  --tw-bg-opacity: 0.1 !important;
}

.focus-within\:u-bg-opacity-20:focus-within{
  --tw-bg-opacity: 0.2 !important;
}

.focus-within\:u-bg-opacity-25:focus-within{
  --tw-bg-opacity: 0.25 !important;
}

.focus-within\:u-bg-opacity-30:focus-within{
  --tw-bg-opacity: 0.3 !important;
}

.focus-within\:u-bg-opacity-40:focus-within{
  --tw-bg-opacity: 0.4 !important;
}

.focus-within\:u-bg-opacity-50:focus-within{
  --tw-bg-opacity: 0.5 !important;
}

.focus-within\:u-bg-opacity-60:focus-within{
  --tw-bg-opacity: 0.6 !important;
}

.focus-within\:u-bg-opacity-70:focus-within{
  --tw-bg-opacity: 0.7 !important;
}

.focus-within\:u-bg-opacity-75:focus-within{
  --tw-bg-opacity: 0.75 !important;
}

.focus-within\:u-bg-opacity-80:focus-within{
  --tw-bg-opacity: 0.8 !important;
}

.focus-within\:u-bg-opacity-90:focus-within{
  --tw-bg-opacity: 0.9 !important;
}

.focus-within\:u-bg-opacity-95:focus-within{
  --tw-bg-opacity: 0.95 !important;
}

.focus-within\:u-bg-opacity-100:focus-within{
  --tw-bg-opacity: 1 !important;
}

.hover\:u-bg-opacity-0:hover{
  --tw-bg-opacity: 0 !important;
}

.hover\:u-bg-opacity-5:hover{
  --tw-bg-opacity: 0.05 !important;
}

.hover\:u-bg-opacity-10:hover{
  --tw-bg-opacity: 0.1 !important;
}

.hover\:u-bg-opacity-20:hover{
  --tw-bg-opacity: 0.2 !important;
}

.hover\:u-bg-opacity-25:hover{
  --tw-bg-opacity: 0.25 !important;
}

.hover\:u-bg-opacity-30:hover{
  --tw-bg-opacity: 0.3 !important;
}

.hover\:u-bg-opacity-40:hover{
  --tw-bg-opacity: 0.4 !important;
}

.hover\:u-bg-opacity-50:hover{
  --tw-bg-opacity: 0.5 !important;
}

.hover\:u-bg-opacity-60:hover{
  --tw-bg-opacity: 0.6 !important;
}

.hover\:u-bg-opacity-70:hover{
  --tw-bg-opacity: 0.7 !important;
}

.hover\:u-bg-opacity-75:hover{
  --tw-bg-opacity: 0.75 !important;
}

.hover\:u-bg-opacity-80:hover{
  --tw-bg-opacity: 0.8 !important;
}

.hover\:u-bg-opacity-90:hover{
  --tw-bg-opacity: 0.9 !important;
}

.hover\:u-bg-opacity-95:hover{
  --tw-bg-opacity: 0.95 !important;
}

.hover\:u-bg-opacity-100:hover{
  --tw-bg-opacity: 1 !important;
}

.focus\:u-bg-opacity-0:focus{
  --tw-bg-opacity: 0 !important;
}

.focus\:u-bg-opacity-5:focus{
  --tw-bg-opacity: 0.05 !important;
}

.focus\:u-bg-opacity-10:focus{
  --tw-bg-opacity: 0.1 !important;
}

.focus\:u-bg-opacity-20:focus{
  --tw-bg-opacity: 0.2 !important;
}

.focus\:u-bg-opacity-25:focus{
  --tw-bg-opacity: 0.25 !important;
}

.focus\:u-bg-opacity-30:focus{
  --tw-bg-opacity: 0.3 !important;
}

.focus\:u-bg-opacity-40:focus{
  --tw-bg-opacity: 0.4 !important;
}

.focus\:u-bg-opacity-50:focus{
  --tw-bg-opacity: 0.5 !important;
}

.focus\:u-bg-opacity-60:focus{
  --tw-bg-opacity: 0.6 !important;
}

.focus\:u-bg-opacity-70:focus{
  --tw-bg-opacity: 0.7 !important;
}

.focus\:u-bg-opacity-75:focus{
  --tw-bg-opacity: 0.75 !important;
}

.focus\:u-bg-opacity-80:focus{
  --tw-bg-opacity: 0.8 !important;
}

.focus\:u-bg-opacity-90:focus{
  --tw-bg-opacity: 0.9 !important;
}

.focus\:u-bg-opacity-95:focus{
  --tw-bg-opacity: 0.95 !important;
}

.focus\:u-bg-opacity-100:focus{
  --tw-bg-opacity: 1 !important;
}

.u-bg-bottom{
  background-position: bottom !important;
}

.u-bg-center{
  background-position: center !important;
}

.u-bg-left{
  background-position: left !important;
}

.u-bg-left-bottom{
  background-position: left bottom !important;
}

.u-bg-left-top{
  background-position: left top !important;
}

.u-bg-right{
  background-position: right !important;
}

.u-bg-right-bottom{
  background-position: right bottom !important;
}

.u-bg-right-top{
  background-position: right top !important;
}

.u-bg-top{
  background-position: top !important;
}

.u-bg-repeat{
  background-repeat: repeat !important;
}

.u-bg-no-repeat{
  background-repeat: no-repeat !important;
}

.u-bg-repeat-x{
  background-repeat: repeat-x !important;
}

.u-bg-repeat-y{
  background-repeat: repeat-y !important;
}

.u-bg-repeat-round{
  background-repeat: round !important;
}

.u-bg-repeat-space{
  background-repeat: space !important;
}

.u-bg-auto{
  background-size: auto !important;
}

.u-bg-cover{
  background-size: cover !important;
}

.u-bg-contain{
  background-size: contain !important;
}

.u-bg-100\%{
  background-size: 100% auto !important;
}

.u-border-collapse{
  border-collapse: collapse !important;
}

.u-border-separate{
  border-collapse: separate !important;
}

.u-border-black{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-border-white{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-border-faded{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.u-border-transparent{
  border-color: transparent !important;
}

.u-border-neutral-1{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-border-neutral-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
}

.u-border-neutral-15{
  --tw-border-opacity: 1 !important;
  border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
}

.u-border-neutral-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
}

.u-border-neutral-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
}

.u-border-neutral-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
}

.u-border-neutral-45{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.u-border-neutral-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
}

.u-border-neutral-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-border-primary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
}

.u-border-primary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
}

.u-border-primary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
}

.u-border-primary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
}

.u-border-primary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
}

.u-border-primary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
}

.u-border-primary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
}

.u-border-secundary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
}

.u-border-secundary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
}

.u-border-secundary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
}

.u-border-secundary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
}

.u-border-secundary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
}

.u-border-secundary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
}

.u-border-secundary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
}

.u-border-success{
  --tw-border-opacity: 1 !important;
  border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
}

.u-border-danger{
  --tw-border-opacity: 1 !important;
  border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-black{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-white{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-faded{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-transparent{
  border-color: transparent !important;
}

.u-group:hover .group-hover\:u-border-neutral-1{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-15{
  --tw-border-opacity: 1 !important;
  border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-45{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-neutral-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-primary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-0{
  --tw-border-opacity: 1 !important;
  border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-10{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-20{
  --tw-border-opacity: 1 !important;
  border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-30{
  --tw-border-opacity: 1 !important;
  border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-40{
  --tw-border-opacity: 1 !important;
  border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-50{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-secundary-60{
  --tw-border-opacity: 1 !important;
  border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-success{
  --tw-border-opacity: 1 !important;
  border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
}

.u-group:hover .group-hover\:u-border-danger{
  --tw-border-opacity: 1 !important;
  border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-black:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-white:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-faded:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-transparent:focus-within{
  border-color: transparent !important;
}

.focus-within\:u-border-neutral-1:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-10:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-15:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-20:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-45:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-neutral-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-0:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-10:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-20:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-primary-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-0:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-10:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-20:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-30:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-40:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-50:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-secundary-60:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-success:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
}

.focus-within\:u-border-danger:focus-within{
  --tw-border-opacity: 1 !important;
  border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
}

.hover\:u-border-black:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.hover\:u-border-white:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.hover\:u-border-faded:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.hover\:u-border-transparent:hover{
  border-color: transparent !important;
}

.hover\:u-border-neutral-1:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-10:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-15:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-45:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
}

.hover\:u-border-neutral-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-0:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-10:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
}

.hover\:u-border-primary-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-0:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-10:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-20:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-30:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-40:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-50:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
}

.hover\:u-border-secundary-60:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
}

.hover\:u-border-success:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
}

.hover\:u-border-danger:hover{
  --tw-border-opacity: 1 !important;
  border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
}

.focus\:u-border-black:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus\:u-border-white:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.focus\:u-border-faded:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
}

.focus\:u-border-transparent:focus{
  border-color: transparent !important;
}

.focus\:u-border-neutral-1:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-10:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-15:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-45:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
}

.focus\:u-border-neutral-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-0:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-10:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
}

.focus\:u-border-primary-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-0:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-10:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-20:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-30:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-40:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-50:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
}

.focus\:u-border-secundary-60:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
}

.focus\:u-border-success:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
}

.focus\:u-border-danger:focus{
  --tw-border-opacity: 1 !important;
  border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
}

.u-border-opacity-0{
  --tw-border-opacity: 0 !important;
}

.u-border-opacity-5{
  --tw-border-opacity: 0.05 !important;
}

.u-border-opacity-10{
  --tw-border-opacity: 0.1 !important;
}

.u-border-opacity-20{
  --tw-border-opacity: 0.2 !important;
}

.u-border-opacity-25{
  --tw-border-opacity: 0.25 !important;
}

.u-border-opacity-30{
  --tw-border-opacity: 0.3 !important;
}

.u-border-opacity-40{
  --tw-border-opacity: 0.4 !important;
}

.u-border-opacity-50{
  --tw-border-opacity: 0.5 !important;
}

.u-border-opacity-60{
  --tw-border-opacity: 0.6 !important;
}

.u-border-opacity-70{
  --tw-border-opacity: 0.7 !important;
}

.u-border-opacity-75{
  --tw-border-opacity: 0.75 !important;
}

.u-border-opacity-80{
  --tw-border-opacity: 0.8 !important;
}

.u-border-opacity-90{
  --tw-border-opacity: 0.9 !important;
}

.u-border-opacity-95{
  --tw-border-opacity: 0.95 !important;
}

.u-border-opacity-100{
  --tw-border-opacity: 1 !important;
}

.u-group:hover .group-hover\:u-border-opacity-0{
  --tw-border-opacity: 0 !important;
}

.u-group:hover .group-hover\:u-border-opacity-5{
  --tw-border-opacity: 0.05 !important;
}

.u-group:hover .group-hover\:u-border-opacity-10{
  --tw-border-opacity: 0.1 !important;
}

.u-group:hover .group-hover\:u-border-opacity-20{
  --tw-border-opacity: 0.2 !important;
}

.u-group:hover .group-hover\:u-border-opacity-25{
  --tw-border-opacity: 0.25 !important;
}

.u-group:hover .group-hover\:u-border-opacity-30{
  --tw-border-opacity: 0.3 !important;
}

.u-group:hover .group-hover\:u-border-opacity-40{
  --tw-border-opacity: 0.4 !important;
}

.u-group:hover .group-hover\:u-border-opacity-50{
  --tw-border-opacity: 0.5 !important;
}

.u-group:hover .group-hover\:u-border-opacity-60{
  --tw-border-opacity: 0.6 !important;
}

.u-group:hover .group-hover\:u-border-opacity-70{
  --tw-border-opacity: 0.7 !important;
}

.u-group:hover .group-hover\:u-border-opacity-75{
  --tw-border-opacity: 0.75 !important;
}

.u-group:hover .group-hover\:u-border-opacity-80{
  --tw-border-opacity: 0.8 !important;
}

.u-group:hover .group-hover\:u-border-opacity-90{
  --tw-border-opacity: 0.9 !important;
}

.u-group:hover .group-hover\:u-border-opacity-95{
  --tw-border-opacity: 0.95 !important;
}

.u-group:hover .group-hover\:u-border-opacity-100{
  --tw-border-opacity: 1 !important;
}

.focus-within\:u-border-opacity-0:focus-within{
  --tw-border-opacity: 0 !important;
}

.focus-within\:u-border-opacity-5:focus-within{
  --tw-border-opacity: 0.05 !important;
}

.focus-within\:u-border-opacity-10:focus-within{
  --tw-border-opacity: 0.1 !important;
}

.focus-within\:u-border-opacity-20:focus-within{
  --tw-border-opacity: 0.2 !important;
}

.focus-within\:u-border-opacity-25:focus-within{
  --tw-border-opacity: 0.25 !important;
}

.focus-within\:u-border-opacity-30:focus-within{
  --tw-border-opacity: 0.3 !important;
}

.focus-within\:u-border-opacity-40:focus-within{
  --tw-border-opacity: 0.4 !important;
}

.focus-within\:u-border-opacity-50:focus-within{
  --tw-border-opacity: 0.5 !important;
}

.focus-within\:u-border-opacity-60:focus-within{
  --tw-border-opacity: 0.6 !important;
}

.focus-within\:u-border-opacity-70:focus-within{
  --tw-border-opacity: 0.7 !important;
}

.focus-within\:u-border-opacity-75:focus-within{
  --tw-border-opacity: 0.75 !important;
}

.focus-within\:u-border-opacity-80:focus-within{
  --tw-border-opacity: 0.8 !important;
}

.focus-within\:u-border-opacity-90:focus-within{
  --tw-border-opacity: 0.9 !important;
}

.focus-within\:u-border-opacity-95:focus-within{
  --tw-border-opacity: 0.95 !important;
}

.focus-within\:u-border-opacity-100:focus-within{
  --tw-border-opacity: 1 !important;
}

.hover\:u-border-opacity-0:hover{
  --tw-border-opacity: 0 !important;
}

.hover\:u-border-opacity-5:hover{
  --tw-border-opacity: 0.05 !important;
}

.hover\:u-border-opacity-10:hover{
  --tw-border-opacity: 0.1 !important;
}

.hover\:u-border-opacity-20:hover{
  --tw-border-opacity: 0.2 !important;
}

.hover\:u-border-opacity-25:hover{
  --tw-border-opacity: 0.25 !important;
}

.hover\:u-border-opacity-30:hover{
  --tw-border-opacity: 0.3 !important;
}

.hover\:u-border-opacity-40:hover{
  --tw-border-opacity: 0.4 !important;
}

.hover\:u-border-opacity-50:hover{
  --tw-border-opacity: 0.5 !important;
}

.hover\:u-border-opacity-60:hover{
  --tw-border-opacity: 0.6 !important;
}

.hover\:u-border-opacity-70:hover{
  --tw-border-opacity: 0.7 !important;
}

.hover\:u-border-opacity-75:hover{
  --tw-border-opacity: 0.75 !important;
}

.hover\:u-border-opacity-80:hover{
  --tw-border-opacity: 0.8 !important;
}

.hover\:u-border-opacity-90:hover{
  --tw-border-opacity: 0.9 !important;
}

.hover\:u-border-opacity-95:hover{
  --tw-border-opacity: 0.95 !important;
}

.hover\:u-border-opacity-100:hover{
  --tw-border-opacity: 1 !important;
}

.focus\:u-border-opacity-0:focus{
  --tw-border-opacity: 0 !important;
}

.focus\:u-border-opacity-5:focus{
  --tw-border-opacity: 0.05 !important;
}

.focus\:u-border-opacity-10:focus{
  --tw-border-opacity: 0.1 !important;
}

.focus\:u-border-opacity-20:focus{
  --tw-border-opacity: 0.2 !important;
}

.focus\:u-border-opacity-25:focus{
  --tw-border-opacity: 0.25 !important;
}

.focus\:u-border-opacity-30:focus{
  --tw-border-opacity: 0.3 !important;
}

.focus\:u-border-opacity-40:focus{
  --tw-border-opacity: 0.4 !important;
}

.focus\:u-border-opacity-50:focus{
  --tw-border-opacity: 0.5 !important;
}

.focus\:u-border-opacity-60:focus{
  --tw-border-opacity: 0.6 !important;
}

.focus\:u-border-opacity-70:focus{
  --tw-border-opacity: 0.7 !important;
}

.focus\:u-border-opacity-75:focus{
  --tw-border-opacity: 0.75 !important;
}

.focus\:u-border-opacity-80:focus{
  --tw-border-opacity: 0.8 !important;
}

.focus\:u-border-opacity-90:focus{
  --tw-border-opacity: 0.9 !important;
}

.focus\:u-border-opacity-95:focus{
  --tw-border-opacity: 0.95 !important;
}

.focus\:u-border-opacity-100:focus{
  --tw-border-opacity: 1 !important;
}

.u-rounded-none{
  border-radius: 0 !important;
}

.u-rounded-sm{
  border-radius: 0.125rem !important;
}

.u-rounded-default{
  border-radius: 0.25rem !important;
}

.u-rounded-md{
  border-radius: 0.375rem !important;
}

.u-rounded-lg{
  border-radius: 4rem !important;
}

.u-rounded-full{
  border-radius: 9999px !important;
}

.u-rounded-t-none{
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.u-rounded-r-none{
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.u-rounded-b-none{
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.u-rounded-l-none{
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.u-rounded-t-sm{
  border-top-left-radius: 0.125rem !important;
  border-top-right-radius: 0.125rem !important;
}

.u-rounded-r-sm{
  border-top-right-radius: 0.125rem !important;
  border-bottom-right-radius: 0.125rem !important;
}

.u-rounded-b-sm{
  border-bottom-right-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.u-rounded-l-sm{
  border-top-left-radius: 0.125rem !important;
  border-bottom-left-radius: 0.125rem !important;
}

.u-rounded-t-default{
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.u-rounded-r-default{
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.u-rounded-b-default{
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.u-rounded-l-default{
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.u-rounded-t-md{
  border-top-left-radius: 0.375rem !important;
  border-top-right-radius: 0.375rem !important;
}

.u-rounded-r-md{
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

.u-rounded-b-md{
  border-bottom-right-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.u-rounded-l-md{
  border-top-left-radius: 0.375rem !important;
  border-bottom-left-radius: 0.375rem !important;
}

.u-rounded-t-lg{
  border-top-left-radius: 4rem !important;
  border-top-right-radius: 4rem !important;
}

.u-rounded-r-lg{
  border-top-right-radius: 4rem !important;
  border-bottom-right-radius: 4rem !important;
}

.u-rounded-b-lg{
  border-bottom-right-radius: 4rem !important;
  border-bottom-left-radius: 4rem !important;
}

.u-rounded-l-lg{
  border-top-left-radius: 4rem !important;
  border-bottom-left-radius: 4rem !important;
}

.u-rounded-t-full{
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}

.u-rounded-r-full{
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}

.u-rounded-b-full{
  border-bottom-right-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.u-rounded-l-full{
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}

.u-rounded-tl-none{
  border-top-left-radius: 0 !important;
}

.u-rounded-tr-none{
  border-top-right-radius: 0 !important;
}

.u-rounded-br-none{
  border-bottom-right-radius: 0 !important;
}

.u-rounded-bl-none{
  border-bottom-left-radius: 0 !important;
}

.u-rounded-tl-sm{
  border-top-left-radius: 0.125rem !important;
}

.u-rounded-tr-sm{
  border-top-right-radius: 0.125rem !important;
}

.u-rounded-br-sm{
  border-bottom-right-radius: 0.125rem !important;
}

.u-rounded-bl-sm{
  border-bottom-left-radius: 0.125rem !important;
}

.u-rounded-tl-default{
  border-top-left-radius: 0.25rem !important;
}

.u-rounded-tr-default{
  border-top-right-radius: 0.25rem !important;
}

.u-rounded-br-default{
  border-bottom-right-radius: 0.25rem !important;
}

.u-rounded-bl-default{
  border-bottom-left-radius: 0.25rem !important;
}

.u-rounded-tl-md{
  border-top-left-radius: 0.375rem !important;
}

.u-rounded-tr-md{
  border-top-right-radius: 0.375rem !important;
}

.u-rounded-br-md{
  border-bottom-right-radius: 0.375rem !important;
}

.u-rounded-bl-md{
  border-bottom-left-radius: 0.375rem !important;
}

.u-rounded-tl-lg{
  border-top-left-radius: 4rem !important;
}

.u-rounded-tr-lg{
  border-top-right-radius: 4rem !important;
}

.u-rounded-br-lg{
  border-bottom-right-radius: 4rem !important;
}

.u-rounded-bl-lg{
  border-bottom-left-radius: 4rem !important;
}

.u-rounded-tl-full{
  border-top-left-radius: 9999px !important;
}

.u-rounded-tr-full{
  border-top-right-radius: 9999px !important;
}

.u-rounded-br-full{
  border-bottom-right-radius: 9999px !important;
}

.u-rounded-bl-full{
  border-bottom-left-radius: 9999px !important;
}

.u-border-solid{
  border-style: solid !important;
}

.u-border-dashed{
  border-style: dashed !important;
}

.u-border-dotted{
  border-style: dotted !important;
}

.u-border-double{
  border-style: double !important;
}

.u-border-none{
  border-style: none !important;
}

.u-border-0{
  border-width: 0px !important;
}

.u-border-2{
  border-width: 2px !important;
}

.u-border-4{
  border-width: 4px !important;
}

.u-border-8{
  border-width: 8px !important;
}

.u-border{
  border-width: 1px !important;
}

.u-border-t-0{
  border-top-width: 0px !important;
}

.u-border-r-0{
  border-right-width: 0px !important;
}

.u-border-b-0{
  border-bottom-width: 0px !important;
}

.u-border-l-0{
  border-left-width: 0px !important;
}

.u-border-t-2{
  border-top-width: 2px !important;
}

.u-border-r-2{
  border-right-width: 2px !important;
}

.u-border-b-2{
  border-bottom-width: 2px !important;
}

.u-border-l-2{
  border-left-width: 2px !important;
}

.u-border-t-4{
  border-top-width: 4px !important;
}

.u-border-r-4{
  border-right-width: 4px !important;
}

.u-border-b-4{
  border-bottom-width: 4px !important;
}

.u-border-l-4{
  border-left-width: 4px !important;
}

.u-border-t-8{
  border-top-width: 8px !important;
}

.u-border-r-8{
  border-right-width: 8px !important;
}

.u-border-b-8{
  border-bottom-width: 8px !important;
}

.u-border-l-8{
  border-left-width: 8px !important;
}

.u-border-t{
  border-top-width: 1px !important;
}

.u-border-r{
  border-right-width: 1px !important;
}

.u-border-b{
  border-bottom-width: 1px !important;
}

.u-border-l{
  border-left-width: 1px !important;
}

.u-box-border{
  box-sizing: border-box !important;
}

.u-box-content{
  box-sizing: content-box !important;
}

.u-cursor-auto{
  cursor: auto !important;
}

.u-cursor-default{
  cursor: default !important;
}

.u-cursor-pointer{
  cursor: pointer !important;
}

.u-cursor-wait{
  cursor: wait !important;
}

.u-cursor-text{
  cursor: text !important;
}

.u-cursor-move{
  cursor: move !important;
}

.u-cursor-help{
  cursor: help !important;
}

.u-cursor-not-allowed{
  cursor: not-allowed !important;
}

.u-block{
  display: block !important;
}

.u-inline-block{
  display: inline-block !important;
}

.u-inline{
  display: inline !important;
}

.u-flex{
  display: flex !important;
}

.u-inline-flex{
  display: inline-flex !important;
}

.u-table{
  display: table !important;
}

.u-table-caption{
  display: table-caption !important;
}

.u-table-cell{
  display: table-cell !important;
}

.u-table-column{
  display: table-column !important;
}

.u-table-column-group{
  display: table-column-group !important;
}

.u-table-footer-group{
  display: table-footer-group !important;
}

.u-table-header-group{
  display: table-header-group !important;
}

.u-table-row-group{
  display: table-row-group !important;
}

.u-table-row{
  display: table-row !important;
}

.u-flow-root{
  display: flow-root !important;
}

.u-grid{
  display: grid !important;
}

.u-inline-grid{
  display: inline-grid !important;
}

.u-contents{
  display: contents !important;
}

.u-hidden{
  display: none !important;
}

.u-flex-row{
  flex-direction: row !important;
}

.u-flex-row-reverse{
  flex-direction: row-reverse !important;
}

.u-flex-col{
  flex-direction: column !important;
}

.u-flex-col-reverse{
  flex-direction: column-reverse !important;
}

.u-flex-wrap{
  flex-wrap: wrap !important;
}

.u-flex-wrap-reverse{
  flex-wrap: wrap-reverse !important;
}

.u-flex-nowrap{
  flex-wrap: nowrap !important;
}

.u-place-items-auto{
  place-items: auto !important;
}

.u-place-items-start{
  place-items: start !important;
}

.u-place-items-end{
  place-items: end !important;
}

.u-place-items-center{
  place-items: center !important;
}

.u-place-items-stretch{
  place-items: stretch !important;
}

.u-place-content-center{
  place-content: center !important;
}

.u-place-content-start{
  place-content: start !important;
}

.u-place-content-end{
  place-content: end !important;
}

.u-place-content-between{
  place-content: space-between !important;
}

.u-place-content-around{
  place-content: space-around !important;
}

.u-place-content-evenly{
  place-content: space-evenly !important;
}

.u-place-content-stretch{
  place-content: stretch !important;
}

.u-place-self-auto{
  place-self: auto !important;
}

.u-place-self-start{
  place-self: start !important;
}

.u-place-self-end{
  place-self: end !important;
}

.u-place-self-center{
  place-self: center !important;
}

.u-place-self-stretch{
  place-self: stretch !important;
}

.u-items-start{
  align-items: flex-start !important;
}

.u-items-end{
  align-items: flex-end !important;
}

.u-items-center{
  align-items: center !important;
}

.u-items-baseline{
  align-items: baseline !important;
}

.u-items-stretch{
  align-items: stretch !important;
}

.u-content-center{
  align-content: center !important;
}

.u-content-start{
  align-content: flex-start !important;
}

.u-content-end{
  align-content: flex-end !important;
}

.u-content-between{
  align-content: space-between !important;
}

.u-content-around{
  align-content: space-around !important;
}

.u-content-evenly{
  align-content: space-evenly !important;
}

.u-self-auto{
  align-self: auto !important;
}

.u-self-start{
  align-self: flex-start !important;
}

.u-self-end{
  align-self: flex-end !important;
}

.u-self-center{
  align-self: center !important;
}

.u-self-stretch{
  align-self: stretch !important;
}

.u-justify-items-auto{
  justify-items: auto !important;
}

.u-justify-items-start{
  justify-items: start !important;
}

.u-justify-items-end{
  justify-items: end !important;
}

.u-justify-items-center{
  justify-items: center !important;
}

.u-justify-items-stretch{
  justify-items: stretch !important;
}

.u-justify-start{
  justify-content: flex-start !important;
}

.u-justify-end{
  justify-content: flex-end !important;
}

.u-justify-center{
  justify-content: center !important;
}

.u-justify-between{
  justify-content: space-between !important;
}

.u-justify-around{
  justify-content: space-around !important;
}

.u-justify-evenly{
  justify-content: space-evenly !important;
}

.u-justify-self-auto{
  justify-self: auto !important;
}

.u-justify-self-start{
  justify-self: start !important;
}

.u-justify-self-end{
  justify-self: end !important;
}

.u-justify-self-center{
  justify-self: center !important;
}

.u-justify-self-stretch{
  justify-self: stretch !important;
}

.u-flex-1{
  flex: 1 1 0% !important;
}

.u-flex-auto{
  flex: 1 1 auto !important;
}

.u-flex-initial{
  flex: 0 1 auto !important;
}

.u-flex-horizontal{
  flex: 1 0 320px !important;
}

.u-flex-none{
  flex: none !important;
}

.u-flex-grow-0{
  flex-grow: 0 !important;
}

.u-flex-grow{
  flex-grow: 1 !important;
}

.u-flex-shrink-0{
  flex-shrink: 0 !important;
}

.u-flex-shrink{
  flex-shrink: 1 !important;
}

.u-order-1{
  order: 1 !important;
}

.u-order-2{
  order: 2 !important;
}

.u-order-3{
  order: 3 !important;
}

.u-order-4{
  order: 4 !important;
}

.u-order-5{
  order: 5 !important;
}

.u-order-6{
  order: 6 !important;
}

.u-order-7{
  order: 7 !important;
}

.u-order-8{
  order: 8 !important;
}

.u-order-9{
  order: 9 !important;
}

.u-order-10{
  order: 10 !important;
}

.u-order-11{
  order: 11 !important;
}

.u-order-12{
  order: 12 !important;
}

.u-order-first{
  order: -9999 !important;
}

.u-order-last{
  order: 9999 !important;
}

.u-order-none{
  order: 0 !important;
}

.u-float-right{
  float: right !important;
}

.u-float-left{
  float: left !important;
}

.u-float-none{
  float: none !important;
}

.u-clear-left{
  clear: left !important;
}

.u-clear-right{
  clear: right !important;
}

.u-clear-both{
  clear: both !important;
}

.u-clear-none{
  clear: none !important;
}

.u-font-body{
  font-family: Raleway, sans-serif !important;
}

.u-font-heading{
  font-family: Raleway, serif !important;
}

.u-font-thin{
  font-weight: 100 !important;
}

.u-font-extralight{
  font-weight: 200 !important;
}

.u-font-light{
  font-weight: 300 !important;
}

.u-font-normal{
  font-weight: 400 !important;
}

.u-font-medium{
  font-weight: 500 !important;
}

.u-font-semibold{
  font-weight: 600 !important;
}

.u-font-bold{
  font-weight: 700 !important;
}

.u-font-extrabold{
  font-weight: 800 !important;
}

.u-font-black{
  font-weight: 900 !important;
}

.u-h-0{
  height: 0px !important;
}

.u-h-1{
  height: 0.25rem !important;
}

.u-h-2{
  height: 0.5rem !important;
}

.u-h-3{
  height: 0.75rem !important;
}

.u-h-4{
  height: 1rem !important;
}

.u-h-5{
  height: 1.25rem !important;
}

.u-h-6{
  height: 1.5rem !important;
}

.u-h-7{
  height: 1.75rem !important;
}

.u-h-8{
  height: 2rem !important;
}

.u-h-9{
  height: 2.25rem !important;
}

.u-h-10{
  height: 2.5rem !important;
}

.u-h-11{
  height: 2.75rem !important;
}

.u-h-12{
  height: 3rem !important;
}

.u-h-14{
  height: 3.5rem !important;
}

.u-h-16{
  height: 4rem !important;
}

.u-h-20{
  height: 5rem !important;
}

.u-h-24{
  height: 6rem !important;
}

.u-h-28{
  height: 7rem !important;
}

.u-h-32{
  height: 8rem !important;
}

.u-h-36{
  height: 9rem !important;
}

.u-h-40{
  height: 10rem !important;
}

.u-h-44{
  height: 11rem !important;
}

.u-h-48{
  height: 12rem !important;
}

.u-h-52{
  height: 13rem !important;
}

.u-h-56{
  height: 14rem !important;
}

.u-h-60{
  height: 15rem !important;
}

.u-h-64{
  height: 16rem !important;
}

.u-h-72{
  height: 18rem !important;
}

.u-h-80{
  height: 20rem !important;
}

.u-h-96{
  height: 24rem !important;
}

.u-h-auto{
  height: auto !important;
}

.u-h-px{
  height: 1px !important;
}

.u-h-0\.5{
  height: 0.125rem !important;
}

.u-h-1\.5{
  height: 0.375rem !important;
}

.u-h-2\.5{
  height: 0.625rem !important;
}

.u-h-3\.5{
  height: 0.875rem !important;
}

.u-h-1\/2{
  height: 50% !important;
}

.u-h-1\/3{
  height: 33.333333% !important;
}

.u-h-2\/3{
  height: 66.666667% !important;
}

.u-h-1\/4{
  height: 25% !important;
}

.u-h-2\/4{
  height: 50% !important;
}

.u-h-3\/4{
  height: 75% !important;
}

.u-h-1\/5{
  height: 20% !important;
}

.u-h-2\/5{
  height: 40% !important;
}

.u-h-3\/5{
  height: 60% !important;
}

.u-h-4\/5{
  height: 80% !important;
}

.u-h-1\/6{
  height: 16.666667% !important;
}

.u-h-2\/6{
  height: 33.333333% !important;
}

.u-h-3\/6{
  height: 50% !important;
}

.u-h-4\/6{
  height: 66.666667% !important;
}

.u-h-5\/6{
  height: 83.333333% !important;
}

.u-h-full{
  height: 100% !important;
}

.u-h-screen{
  height: 100vh !important;
}

.u-text-xs{
  font-size: 0.75rem !important;
}

.u-text-sm{
  font-size: 0.875rem !important;
}

.u-text-base{
  font-size: 1rem !important;
}

.u-text-lg{
  font-size: 1.125rem !important;
}

.u-text-xl{
  font-size: 1.25rem !important;
}

.u-text-2xl{
  font-size: 1.5rem !important;
}

.u-text-3xl{
  font-size: 1.875rem !important;
}

.u-text-4xl{
  font-size: 2.25rem !important;
}

.u-text-5xl{
  font-size: 3rem !important;
}

.u-text-6xl{
  font-size: 4rem !important;
}

.u-text-7xl{
  font-size: 5rem !important;
}

.u-text-8xl{
  font-size: 5.5rem !important;
}

.u-leading-3{
  line-height: .75rem !important;
}

.u-leading-4{
  line-height: 1rem !important;
}

.u-leading-5{
  line-height: 1.25rem !important;
}

.u-leading-6{
  line-height: 1.5rem !important;
}

.u-leading-7{
  line-height: 1.75rem !important;
}

.u-leading-8{
  line-height: 2rem !important;
}

.u-leading-9{
  line-height: 2.25rem !important;
}

.u-leading-10{
  line-height: 2.5rem !important;
}

.u-leading-none{
  line-height: 1 !important;
}

.u-leading-tight{
  line-height: 1.25 !important;
}

.u-leading-snug{
  line-height: 1.375 !important;
}

.u-leading-normal{
  line-height: 1.75 !important;
}

.u-leading-relaxed{
  line-height: 1.85 !important;
}

.u-leading-loose{
  line-height: 2 !important;
}

.u-list-inside{
  list-style-position: inside !important;
}

.u-list-outside{
  list-style-position: outside !important;
}

.u-list-none{
  list-style-type: none !important;
}

.u-list-disc{
  list-style-type: disc !important;
}

.u-list-decimal{
  list-style-type: decimal !important;
}

.u-m-0{
  margin: 0px !important;
}

.u-m-1{
  margin: 0.25rem !important;
}

.u-m-2{
  margin: 0.5rem !important;
}

.u-m-3{
  margin: 0.75rem !important;
}

.u-m-4{
  margin: 1rem !important;
}

.u-m-5{
  margin: 1.25rem !important;
}

.u-m-6{
  margin: 1.5rem !important;
}

.u-m-7{
  margin: 1.75rem !important;
}

.u-m-8{
  margin: 2rem !important;
}

.u-m-9{
  margin: 2.25rem !important;
}

.u-m-10{
  margin: 2.5rem !important;
}

.u-m-11{
  margin: 2.75rem !important;
}

.u-m-12{
  margin: 3rem !important;
}

.u-m-14{
  margin: 3.5rem !important;
}

.u-m-16{
  margin: 4rem !important;
}

.u-m-20{
  margin: 5rem !important;
}

.u-m-24{
  margin: 6rem !important;
}

.u-m-28{
  margin: 7rem !important;
}

.u-m-32{
  margin: 8rem !important;
}

.u-m-36{
  margin: 9rem !important;
}

.u-m-40{
  margin: 10rem !important;
}

.u-m-44{
  margin: 11rem !important;
}

.u-m-48{
  margin: 12rem !important;
}

.u-m-52{
  margin: 13rem !important;
}

.u-m-56{
  margin: 14rem !important;
}

.u-m-60{
  margin: 15rem !important;
}

.u-m-64{
  margin: 16rem !important;
}

.u-m-72{
  margin: 18rem !important;
}

.u-m-80{
  margin: 20rem !important;
}

.u-m-96{
  margin: 24rem !important;
}

.u-m-auto{
  margin: auto !important;
}

.u-m-px{
  margin: 1px !important;
}

.u-m-0\.5{
  margin: 0.125rem !important;
}

.u-m-1\.5{
  margin: 0.375rem !important;
}

.u-m-2\.5{
  margin: 0.625rem !important;
}

.u-m-3\.5{
  margin: 0.875rem !important;
}

.u--m-0{
  margin: 0px !important;
}

.u--m-1{
  margin: -0.25rem !important;
}

.u--m-2{
  margin: -0.5rem !important;
}

.u--m-3{
  margin: -0.75rem !important;
}

.u--m-4{
  margin: -1rem !important;
}

.u--m-5{
  margin: -1.25rem !important;
}

.u--m-6{
  margin: -1.5rem !important;
}

.u--m-7{
  margin: -1.75rem !important;
}

.u--m-8{
  margin: -2rem !important;
}

.u--m-9{
  margin: -2.25rem !important;
}

.u--m-10{
  margin: -2.5rem !important;
}

.u--m-11{
  margin: -2.75rem !important;
}

.u--m-12{
  margin: -3rem !important;
}

.u--m-14{
  margin: -3.5rem !important;
}

.u--m-16{
  margin: -4rem !important;
}

.u--m-20{
  margin: -5rem !important;
}

.u--m-24{
  margin: -6rem !important;
}

.u--m-28{
  margin: -7rem !important;
}

.u--m-32{
  margin: -8rem !important;
}

.u--m-36{
  margin: -9rem !important;
}

.u--m-40{
  margin: -10rem !important;
}

.u--m-44{
  margin: -11rem !important;
}

.u--m-48{
  margin: -12rem !important;
}

.u--m-52{
  margin: -13rem !important;
}

.u--m-56{
  margin: -14rem !important;
}

.u--m-60{
  margin: -15rem !important;
}

.u--m-64{
  margin: -16rem !important;
}

.u--m-72{
  margin: -18rem !important;
}

.u--m-80{
  margin: -20rem !important;
}

.u--m-96{
  margin: -24rem !important;
}

.u--m-px{
  margin: -1px !important;
}

.u--m-0\.5{
  margin: -0.125rem !important;
}

.u--m-1\.5{
  margin: -0.375rem !important;
}

.u--m-2\.5{
  margin: -0.625rem !important;
}

.u--m-3\.5{
  margin: -0.875rem !important;
}

.u-m-full{
  margin: 100% !important;
}

.u-my-0{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u-mx-0{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u-my-1{
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.u-mx-1{
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.u-my-2{
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.u-mx-2{
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.u-my-3{
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.u-mx-3{
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.u-my-4{
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.u-mx-4{
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.u-my-5{
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.u-mx-5{
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.u-my-6{
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.u-mx-6{
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.u-my-7{
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.u-mx-7{
  margin-left: 1.75rem !important;
  margin-right: 1.75rem !important;
}

.u-my-8{
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.u-mx-8{
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.u-my-9{
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.u-mx-9{
  margin-left: 2.25rem !important;
  margin-right: 2.25rem !important;
}

.u-my-10{
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.u-mx-10{
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.u-my-11{
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.u-mx-11{
  margin-left: 2.75rem !important;
  margin-right: 2.75rem !important;
}

.u-my-12{
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.u-mx-12{
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.u-my-14{
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.u-mx-14{
  margin-left: 3.5rem !important;
  margin-right: 3.5rem !important;
}

.u-my-16{
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.u-mx-16{
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.u-my-20{
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.u-mx-20{
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.u-my-24{
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.u-mx-24{
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.u-my-28{
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.u-mx-28{
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.u-my-32{
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.u-mx-32{
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.u-my-36{
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.u-mx-36{
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.u-my-40{
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.u-mx-40{
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.u-my-44{
  margin-top: 11rem !important;
  margin-bottom: 11rem !important;
}

.u-mx-44{
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.u-my-48{
  margin-top: 12rem !important;
  margin-bottom: 12rem !important;
}

.u-mx-48{
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.u-my-52{
  margin-top: 13rem !important;
  margin-bottom: 13rem !important;
}

.u-mx-52{
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.u-my-56{
  margin-top: 14rem !important;
  margin-bottom: 14rem !important;
}

.u-mx-56{
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}

.u-my-60{
  margin-top: 15rem !important;
  margin-bottom: 15rem !important;
}

.u-mx-60{
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.u-my-64{
  margin-top: 16rem !important;
  margin-bottom: 16rem !important;
}

.u-mx-64{
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}

.u-my-72{
  margin-top: 18rem !important;
  margin-bottom: 18rem !important;
}

.u-mx-72{
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.u-my-80{
  margin-top: 20rem !important;
  margin-bottom: 20rem !important;
}

.u-mx-80{
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.u-my-96{
  margin-top: 24rem !important;
  margin-bottom: 24rem !important;
}

.u-mx-96{
  margin-left: 24rem !important;
  margin-right: 24rem !important;
}

.u-my-auto{
  margin-top: auto !important;
  margin-bottom: auto !important;
}

.u-mx-auto{
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-my-px{
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.u-mx-px{
  margin-left: 1px !important;
  margin-right: 1px !important;
}

.u-my-0\.5{
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}

.u-mx-0\.5{
  margin-left: 0.125rem !important;
  margin-right: 0.125rem !important;
}

.u-my-1\.5{
  margin-top: 0.375rem !important;
  margin-bottom: 0.375rem !important;
}

.u-mx-1\.5{
  margin-left: 0.375rem !important;
  margin-right: 0.375rem !important;
}

.u-my-2\.5{
  margin-top: 0.625rem !important;
  margin-bottom: 0.625rem !important;
}

.u-mx-2\.5{
  margin-left: 0.625rem !important;
  margin-right: 0.625rem !important;
}

.u-my-3\.5{
  margin-top: 0.875rem !important;
  margin-bottom: 0.875rem !important;
}

.u-mx-3\.5{
  margin-left: 0.875rem !important;
  margin-right: 0.875rem !important;
}

.u--my-0{
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.u--mx-0{
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.u--my-1{
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.u--mx-1{
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.u--my-2{
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.u--mx-2{
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.u--my-3{
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.u--mx-3{
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}

.u--my-4{
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.u--mx-4{
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.u--my-5{
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.u--mx-5{
  margin-left: -1.25rem !important;
  margin-right: -1.25rem !important;
}

.u--my-6{
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.u--mx-6{
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.u--my-7{
  margin-top: -1.75rem !important;
  margin-bottom: -1.75rem !important;
}

.u--mx-7{
  margin-left: -1.75rem !important;
  margin-right: -1.75rem !important;
}

.u--my-8{
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.u--mx-8{
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}

.u--my-9{
  margin-top: -2.25rem !important;
  margin-bottom: -2.25rem !important;
}

.u--mx-9{
  margin-left: -2.25rem !important;
  margin-right: -2.25rem !important;
}

.u--my-10{
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.u--mx-10{
  margin-left: -2.5rem !important;
  margin-right: -2.5rem !important;
}

.u--my-11{
  margin-top: -2.75rem !important;
  margin-bottom: -2.75rem !important;
}

.u--mx-11{
  margin-left: -2.75rem !important;
  margin-right: -2.75rem !important;
}

.u--my-12{
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.u--mx-12{
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.u--my-14{
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

.u--mx-14{
  margin-left: -3.5rem !important;
  margin-right: -3.5rem !important;
}

.u--my-16{
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.u--mx-16{
  margin-left: -4rem !important;
  margin-right: -4rem !important;
}

.u--my-20{
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.u--mx-20{
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.u--my-24{
  margin-top: -6rem !important;
  margin-bottom: -6rem !important;
}

.u--mx-24{
  margin-left: -6rem !important;
  margin-right: -6rem !important;
}

.u--my-28{
  margin-top: -7rem !important;
  margin-bottom: -7rem !important;
}

.u--mx-28{
  margin-left: -7rem !important;
  margin-right: -7rem !important;
}

.u--my-32{
  margin-top: -8rem !important;
  margin-bottom: -8rem !important;
}

.u--mx-32{
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.u--my-36{
  margin-top: -9rem !important;
  margin-bottom: -9rem !important;
}

.u--mx-36{
  margin-left: -9rem !important;
  margin-right: -9rem !important;
}

.u--my-40{
  margin-top: -10rem !important;
  margin-bottom: -10rem !important;
}

.u--mx-40{
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}

.u--my-44{
  margin-top: -11rem !important;
  margin-bottom: -11rem !important;
}

.u--mx-44{
  margin-left: -11rem !important;
  margin-right: -11rem !important;
}

.u--my-48{
  margin-top: -12rem !important;
  margin-bottom: -12rem !important;
}

.u--mx-48{
  margin-left: -12rem !important;
  margin-right: -12rem !important;
}

.u--my-52{
  margin-top: -13rem !important;
  margin-bottom: -13rem !important;
}

.u--mx-52{
  margin-left: -13rem !important;
  margin-right: -13rem !important;
}

.u--my-56{
  margin-top: -14rem !important;
  margin-bottom: -14rem !important;
}

.u--mx-56{
  margin-left: -14rem !important;
  margin-right: -14rem !important;
}

.u--my-60{
  margin-top: -15rem !important;
  margin-bottom: -15rem !important;
}

.u--mx-60{
  margin-left: -15rem !important;
  margin-right: -15rem !important;
}

.u--my-64{
  margin-top: -16rem !important;
  margin-bottom: -16rem !important;
}

.u--mx-64{
  margin-left: -16rem !important;
  margin-right: -16rem !important;
}

.u--my-72{
  margin-top: -18rem !important;
  margin-bottom: -18rem !important;
}

.u--mx-72{
  margin-left: -18rem !important;
  margin-right: -18rem !important;
}

.u--my-80{
  margin-top: -20rem !important;
  margin-bottom: -20rem !important;
}

.u--mx-80{
  margin-left: -20rem !important;
  margin-right: -20rem !important;
}

.u--my-96{
  margin-top: -24rem !important;
  margin-bottom: -24rem !important;
}

.u--mx-96{
  margin-left: -24rem !important;
  margin-right: -24rem !important;
}

.u--my-px{
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}

.u--mx-px{
  margin-left: -1px !important;
  margin-right: -1px !important;
}

.u--my-0\.5{
  margin-top: -0.125rem !important;
  margin-bottom: -0.125rem !important;
}

.u--mx-0\.5{
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}

.u--my-1\.5{
  margin-top: -0.375rem !important;
  margin-bottom: -0.375rem !important;
}

.u--mx-1\.5{
  margin-left: -0.375rem !important;
  margin-right: -0.375rem !important;
}

.u--my-2\.5{
  margin-top: -0.625rem !important;
  margin-bottom: -0.625rem !important;
}

.u--mx-2\.5{
  margin-left: -0.625rem !important;
  margin-right: -0.625rem !important;
}

.u--my-3\.5{
  margin-top: -0.875rem !important;
  margin-bottom: -0.875rem !important;
}

.u--mx-3\.5{
  margin-left: -0.875rem !important;
  margin-right: -0.875rem !important;
}

.u-my-full{
  margin-top: 100% !important;
  margin-bottom: 100% !important;
}

.u-mx-full{
  margin-left: 100% !important;
  margin-right: 100% !important;
}

.u-mt-0{
  margin-top: 0px !important;
}

.u-mr-0{
  margin-right: 0px !important;
}

.u-mb-0{
  margin-bottom: 0px !important;
}

.u-ml-0{
  margin-left: 0px !important;
}

.u-mt-1{
  margin-top: 0.25rem !important;
}

.u-mr-1{
  margin-right: 0.25rem !important;
}

.u-mb-1{
  margin-bottom: 0.25rem !important;
}

.u-ml-1{
  margin-left: 0.25rem !important;
}

.u-mt-2{
  margin-top: 0.5rem !important;
}

.u-mr-2{
  margin-right: 0.5rem !important;
}

.u-mb-2{
  margin-bottom: 0.5rem !important;
}

.u-ml-2{
  margin-left: 0.5rem !important;
}

.u-mt-3{
  margin-top: 0.75rem !important;
}

.u-mr-3{
  margin-right: 0.75rem !important;
}

.u-mb-3{
  margin-bottom: 0.75rem !important;
}

.u-ml-3{
  margin-left: 0.75rem !important;
}

.u-mt-4{
  margin-top: 1rem !important;
}

.u-mr-4{
  margin-right: 1rem !important;
}

.u-mb-4{
  margin-bottom: 1rem !important;
}

.u-ml-4{
  margin-left: 1rem !important;
}

.u-mt-5{
  margin-top: 1.25rem !important;
}

.u-mr-5{
  margin-right: 1.25rem !important;
}

.u-mb-5{
  margin-bottom: 1.25rem !important;
}

.u-ml-5{
  margin-left: 1.25rem !important;
}

.u-mt-6{
  margin-top: 1.5rem !important;
}

.u-mr-6{
  margin-right: 1.5rem !important;
}

.u-mb-6{
  margin-bottom: 1.5rem !important;
}

.u-ml-6{
  margin-left: 1.5rem !important;
}

.u-mt-7{
  margin-top: 1.75rem !important;
}

.u-mr-7{
  margin-right: 1.75rem !important;
}

.u-mb-7{
  margin-bottom: 1.75rem !important;
}

.u-ml-7{
  margin-left: 1.75rem !important;
}

.u-mt-8{
  margin-top: 2rem !important;
}

.u-mr-8{
  margin-right: 2rem !important;
}

.u-mb-8{
  margin-bottom: 2rem !important;
}

.u-ml-8{
  margin-left: 2rem !important;
}

.u-mt-9{
  margin-top: 2.25rem !important;
}

.u-mr-9{
  margin-right: 2.25rem !important;
}

.u-mb-9{
  margin-bottom: 2.25rem !important;
}

.u-ml-9{
  margin-left: 2.25rem !important;
}

.u-mt-10{
  margin-top: 2.5rem !important;
}

.u-mr-10{
  margin-right: 2.5rem !important;
}

.u-mb-10{
  margin-bottom: 2.5rem !important;
}

.u-ml-10{
  margin-left: 2.5rem !important;
}

.u-mt-11{
  margin-top: 2.75rem !important;
}

.u-mr-11{
  margin-right: 2.75rem !important;
}

.u-mb-11{
  margin-bottom: 2.75rem !important;
}

.u-ml-11{
  margin-left: 2.75rem !important;
}

.u-mt-12{
  margin-top: 3rem !important;
}

.u-mr-12{
  margin-right: 3rem !important;
}

.u-mb-12{
  margin-bottom: 3rem !important;
}

.u-ml-12{
  margin-left: 3rem !important;
}

.u-mt-14{
  margin-top: 3.5rem !important;
}

.u-mr-14{
  margin-right: 3.5rem !important;
}

.u-mb-14{
  margin-bottom: 3.5rem !important;
}

.u-ml-14{
  margin-left: 3.5rem !important;
}

.u-mt-16{
  margin-top: 4rem !important;
}

.u-mr-16{
  margin-right: 4rem !important;
}

.u-mb-16{
  margin-bottom: 4rem !important;
}

.u-ml-16{
  margin-left: 4rem !important;
}

.u-mt-20{
  margin-top: 5rem !important;
}

.u-mr-20{
  margin-right: 5rem !important;
}

.u-mb-20{
  margin-bottom: 5rem !important;
}

.u-ml-20{
  margin-left: 5rem !important;
}

.u-mt-24{
  margin-top: 6rem !important;
}

.u-mr-24{
  margin-right: 6rem !important;
}

.u-mb-24{
  margin-bottom: 6rem !important;
}

.u-ml-24{
  margin-left: 6rem !important;
}

.u-mt-28{
  margin-top: 7rem !important;
}

.u-mr-28{
  margin-right: 7rem !important;
}

.u-mb-28{
  margin-bottom: 7rem !important;
}

.u-ml-28{
  margin-left: 7rem !important;
}

.u-mt-32{
  margin-top: 8rem !important;
}

.u-mr-32{
  margin-right: 8rem !important;
}

.u-mb-32{
  margin-bottom: 8rem !important;
}

.u-ml-32{
  margin-left: 8rem !important;
}

.u-mt-36{
  margin-top: 9rem !important;
}

.u-mr-36{
  margin-right: 9rem !important;
}

.u-mb-36{
  margin-bottom: 9rem !important;
}

.u-ml-36{
  margin-left: 9rem !important;
}

.u-mt-40{
  margin-top: 10rem !important;
}

.u-mr-40{
  margin-right: 10rem !important;
}

.u-mb-40{
  margin-bottom: 10rem !important;
}

.u-ml-40{
  margin-left: 10rem !important;
}

.u-mt-44{
  margin-top: 11rem !important;
}

.u-mr-44{
  margin-right: 11rem !important;
}

.u-mb-44{
  margin-bottom: 11rem !important;
}

.u-ml-44{
  margin-left: 11rem !important;
}

.u-mt-48{
  margin-top: 12rem !important;
}

.u-mr-48{
  margin-right: 12rem !important;
}

.u-mb-48{
  margin-bottom: 12rem !important;
}

.u-ml-48{
  margin-left: 12rem !important;
}

.u-mt-52{
  margin-top: 13rem !important;
}

.u-mr-52{
  margin-right: 13rem !important;
}

.u-mb-52{
  margin-bottom: 13rem !important;
}

.u-ml-52{
  margin-left: 13rem !important;
}

.u-mt-56{
  margin-top: 14rem !important;
}

.u-mr-56{
  margin-right: 14rem !important;
}

.u-mb-56{
  margin-bottom: 14rem !important;
}

.u-ml-56{
  margin-left: 14rem !important;
}

.u-mt-60{
  margin-top: 15rem !important;
}

.u-mr-60{
  margin-right: 15rem !important;
}

.u-mb-60{
  margin-bottom: 15rem !important;
}

.u-ml-60{
  margin-left: 15rem !important;
}

.u-mt-64{
  margin-top: 16rem !important;
}

.u-mr-64{
  margin-right: 16rem !important;
}

.u-mb-64{
  margin-bottom: 16rem !important;
}

.u-ml-64{
  margin-left: 16rem !important;
}

.u-mt-72{
  margin-top: 18rem !important;
}

.u-mr-72{
  margin-right: 18rem !important;
}

.u-mb-72{
  margin-bottom: 18rem !important;
}

.u-ml-72{
  margin-left: 18rem !important;
}

.u-mt-80{
  margin-top: 20rem !important;
}

.u-mr-80{
  margin-right: 20rem !important;
}

.u-mb-80{
  margin-bottom: 20rem !important;
}

.u-ml-80{
  margin-left: 20rem !important;
}

.u-mt-96{
  margin-top: 24rem !important;
}

.u-mr-96{
  margin-right: 24rem !important;
}

.u-mb-96{
  margin-bottom: 24rem !important;
}

.u-ml-96{
  margin-left: 24rem !important;
}

.u-mt-auto{
  margin-top: auto !important;
}

.u-mr-auto{
  margin-right: auto !important;
}

.u-mb-auto{
  margin-bottom: auto !important;
}

.u-ml-auto{
  margin-left: auto !important;
}

.u-mt-px{
  margin-top: 1px !important;
}

.u-mr-px{
  margin-right: 1px !important;
}

.u-mb-px{
  margin-bottom: 1px !important;
}

.u-ml-px{
  margin-left: 1px !important;
}

.u-mt-0\.5{
  margin-top: 0.125rem !important;
}

.u-mr-0\.5{
  margin-right: 0.125rem !important;
}

.u-mb-0\.5{
  margin-bottom: 0.125rem !important;
}

.u-ml-0\.5{
  margin-left: 0.125rem !important;
}

.u-mt-1\.5{
  margin-top: 0.375rem !important;
}

.u-mr-1\.5{
  margin-right: 0.375rem !important;
}

.u-mb-1\.5{
  margin-bottom: 0.375rem !important;
}

.u-ml-1\.5{
  margin-left: 0.375rem !important;
}

.u-mt-2\.5{
  margin-top: 0.625rem !important;
}

.u-mr-2\.5{
  margin-right: 0.625rem !important;
}

.u-mb-2\.5{
  margin-bottom: 0.625rem !important;
}

.u-ml-2\.5{
  margin-left: 0.625rem !important;
}

.u-mt-3\.5{
  margin-top: 0.875rem !important;
}

.u-mr-3\.5{
  margin-right: 0.875rem !important;
}

.u-mb-3\.5{
  margin-bottom: 0.875rem !important;
}

.u-ml-3\.5{
  margin-left: 0.875rem !important;
}

.u--mt-0{
  margin-top: 0px !important;
}

.u--mr-0{
  margin-right: 0px !important;
}

.u--mb-0{
  margin-bottom: 0px !important;
}

.u--ml-0{
  margin-left: 0px !important;
}

.u--mt-1{
  margin-top: -0.25rem !important;
}

.u--mr-1{
  margin-right: -0.25rem !important;
}

.u--mb-1{
  margin-bottom: -0.25rem !important;
}

.u--ml-1{
  margin-left: -0.25rem !important;
}

.u--mt-2{
  margin-top: -0.5rem !important;
}

.u--mr-2{
  margin-right: -0.5rem !important;
}

.u--mb-2{
  margin-bottom: -0.5rem !important;
}

.u--ml-2{
  margin-left: -0.5rem !important;
}

.u--mt-3{
  margin-top: -0.75rem !important;
}

.u--mr-3{
  margin-right: -0.75rem !important;
}

.u--mb-3{
  margin-bottom: -0.75rem !important;
}

.u--ml-3{
  margin-left: -0.75rem !important;
}

.u--mt-4{
  margin-top: -1rem !important;
}

.u--mr-4{
  margin-right: -1rem !important;
}

.u--mb-4{
  margin-bottom: -1rem !important;
}

.u--ml-4{
  margin-left: -1rem !important;
}

.u--mt-5{
  margin-top: -1.25rem !important;
}

.u--mr-5{
  margin-right: -1.25rem !important;
}

.u--mb-5{
  margin-bottom: -1.25rem !important;
}

.u--ml-5{
  margin-left: -1.25rem !important;
}

.u--mt-6{
  margin-top: -1.5rem !important;
}

.u--mr-6{
  margin-right: -1.5rem !important;
}

.u--mb-6{
  margin-bottom: -1.5rem !important;
}

.u--ml-6{
  margin-left: -1.5rem !important;
}

.u--mt-7{
  margin-top: -1.75rem !important;
}

.u--mr-7{
  margin-right: -1.75rem !important;
}

.u--mb-7{
  margin-bottom: -1.75rem !important;
}

.u--ml-7{
  margin-left: -1.75rem !important;
}

.u--mt-8{
  margin-top: -2rem !important;
}

.u--mr-8{
  margin-right: -2rem !important;
}

.u--mb-8{
  margin-bottom: -2rem !important;
}

.u--ml-8{
  margin-left: -2rem !important;
}

.u--mt-9{
  margin-top: -2.25rem !important;
}

.u--mr-9{
  margin-right: -2.25rem !important;
}

.u--mb-9{
  margin-bottom: -2.25rem !important;
}

.u--ml-9{
  margin-left: -2.25rem !important;
}

.u--mt-10{
  margin-top: -2.5rem !important;
}

.u--mr-10{
  margin-right: -2.5rem !important;
}

.u--mb-10{
  margin-bottom: -2.5rem !important;
}

.u--ml-10{
  margin-left: -2.5rem !important;
}

.u--mt-11{
  margin-top: -2.75rem !important;
}

.u--mr-11{
  margin-right: -2.75rem !important;
}

.u--mb-11{
  margin-bottom: -2.75rem !important;
}

.u--ml-11{
  margin-left: -2.75rem !important;
}

.u--mt-12{
  margin-top: -3rem !important;
}

.u--mr-12{
  margin-right: -3rem !important;
}

.u--mb-12{
  margin-bottom: -3rem !important;
}

.u--ml-12{
  margin-left: -3rem !important;
}

.u--mt-14{
  margin-top: -3.5rem !important;
}

.u--mr-14{
  margin-right: -3.5rem !important;
}

.u--mb-14{
  margin-bottom: -3.5rem !important;
}

.u--ml-14{
  margin-left: -3.5rem !important;
}

.u--mt-16{
  margin-top: -4rem !important;
}

.u--mr-16{
  margin-right: -4rem !important;
}

.u--mb-16{
  margin-bottom: -4rem !important;
}

.u--ml-16{
  margin-left: -4rem !important;
}

.u--mt-20{
  margin-top: -5rem !important;
}

.u--mr-20{
  margin-right: -5rem !important;
}

.u--mb-20{
  margin-bottom: -5rem !important;
}

.u--ml-20{
  margin-left: -5rem !important;
}

.u--mt-24{
  margin-top: -6rem !important;
}

.u--mr-24{
  margin-right: -6rem !important;
}

.u--mb-24{
  margin-bottom: -6rem !important;
}

.u--ml-24{
  margin-left: -6rem !important;
}

.u--mt-28{
  margin-top: -7rem !important;
}

.u--mr-28{
  margin-right: -7rem !important;
}

.u--mb-28{
  margin-bottom: -7rem !important;
}

.u--ml-28{
  margin-left: -7rem !important;
}

.u--mt-32{
  margin-top: -8rem !important;
}

.u--mr-32{
  margin-right: -8rem !important;
}

.u--mb-32{
  margin-bottom: -8rem !important;
}

.u--ml-32{
  margin-left: -8rem !important;
}

.u--mt-36{
  margin-top: -9rem !important;
}

.u--mr-36{
  margin-right: -9rem !important;
}

.u--mb-36{
  margin-bottom: -9rem !important;
}

.u--ml-36{
  margin-left: -9rem !important;
}

.u--mt-40{
  margin-top: -10rem !important;
}

.u--mr-40{
  margin-right: -10rem !important;
}

.u--mb-40{
  margin-bottom: -10rem !important;
}

.u--ml-40{
  margin-left: -10rem !important;
}

.u--mt-44{
  margin-top: -11rem !important;
}

.u--mr-44{
  margin-right: -11rem !important;
}

.u--mb-44{
  margin-bottom: -11rem !important;
}

.u--ml-44{
  margin-left: -11rem !important;
}

.u--mt-48{
  margin-top: -12rem !important;
}

.u--mr-48{
  margin-right: -12rem !important;
}

.u--mb-48{
  margin-bottom: -12rem !important;
}

.u--ml-48{
  margin-left: -12rem !important;
}

.u--mt-52{
  margin-top: -13rem !important;
}

.u--mr-52{
  margin-right: -13rem !important;
}

.u--mb-52{
  margin-bottom: -13rem !important;
}

.u--ml-52{
  margin-left: -13rem !important;
}

.u--mt-56{
  margin-top: -14rem !important;
}

.u--mr-56{
  margin-right: -14rem !important;
}

.u--mb-56{
  margin-bottom: -14rem !important;
}

.u--ml-56{
  margin-left: -14rem !important;
}

.u--mt-60{
  margin-top: -15rem !important;
}

.u--mr-60{
  margin-right: -15rem !important;
}

.u--mb-60{
  margin-bottom: -15rem !important;
}

.u--ml-60{
  margin-left: -15rem !important;
}

.u--mt-64{
  margin-top: -16rem !important;
}

.u--mr-64{
  margin-right: -16rem !important;
}

.u--mb-64{
  margin-bottom: -16rem !important;
}

.u--ml-64{
  margin-left: -16rem !important;
}

.u--mt-72{
  margin-top: -18rem !important;
}

.u--mr-72{
  margin-right: -18rem !important;
}

.u--mb-72{
  margin-bottom: -18rem !important;
}

.u--ml-72{
  margin-left: -18rem !important;
}

.u--mt-80{
  margin-top: -20rem !important;
}

.u--mr-80{
  margin-right: -20rem !important;
}

.u--mb-80{
  margin-bottom: -20rem !important;
}

.u--ml-80{
  margin-left: -20rem !important;
}

.u--mt-96{
  margin-top: -24rem !important;
}

.u--mr-96{
  margin-right: -24rem !important;
}

.u--mb-96{
  margin-bottom: -24rem !important;
}

.u--ml-96{
  margin-left: -24rem !important;
}

.u--mt-px{
  margin-top: -1px !important;
}

.u--mr-px{
  margin-right: -1px !important;
}

.u--mb-px{
  margin-bottom: -1px !important;
}

.u--ml-px{
  margin-left: -1px !important;
}

.u--mt-0\.5{
  margin-top: -0.125rem !important;
}

.u--mr-0\.5{
  margin-right: -0.125rem !important;
}

.u--mb-0\.5{
  margin-bottom: -0.125rem !important;
}

.u--ml-0\.5{
  margin-left: -0.125rem !important;
}

.u--mt-1\.5{
  margin-top: -0.375rem !important;
}

.u--mr-1\.5{
  margin-right: -0.375rem !important;
}

.u--mb-1\.5{
  margin-bottom: -0.375rem !important;
}

.u--ml-1\.5{
  margin-left: -0.375rem !important;
}

.u--mt-2\.5{
  margin-top: -0.625rem !important;
}

.u--mr-2\.5{
  margin-right: -0.625rem !important;
}

.u--mb-2\.5{
  margin-bottom: -0.625rem !important;
}

.u--ml-2\.5{
  margin-left: -0.625rem !important;
}

.u--mt-3\.5{
  margin-top: -0.875rem !important;
}

.u--mr-3\.5{
  margin-right: -0.875rem !important;
}

.u--mb-3\.5{
  margin-bottom: -0.875rem !important;
}

.u--ml-3\.5{
  margin-left: -0.875rem !important;
}

.u-mt-full{
  margin-top: 100% !important;
}

.u-mr-full{
  margin-right: 100% !important;
}

.u-mb-full{
  margin-bottom: 100% !important;
}

.u-ml-full{
  margin-left: 100% !important;
}

.u-max-h-0{
  max-height: 0px !important;
}

.u-max-h-1{
  max-height: 0.25rem !important;
}

.u-max-h-2{
  max-height: 0.5rem !important;
}

.u-max-h-3{
  max-height: 0.75rem !important;
}

.u-max-h-4{
  max-height: 1rem !important;
}

.u-max-h-5{
  max-height: 1.25rem !important;
}

.u-max-h-6{
  max-height: 1.5rem !important;
}

.u-max-h-7{
  max-height: 1.75rem !important;
}

.u-max-h-8{
  max-height: 2rem !important;
}

.u-max-h-9{
  max-height: 2.25rem !important;
}

.u-max-h-10{
  max-height: 2.5rem !important;
}

.u-max-h-11{
  max-height: 2.75rem !important;
}

.u-max-h-12{
  max-height: 3rem !important;
}

.u-max-h-14{
  max-height: 3.5rem !important;
}

.u-max-h-16{
  max-height: 4rem !important;
}

.u-max-h-20{
  max-height: 5rem !important;
}

.u-max-h-24{
  max-height: 6rem !important;
}

.u-max-h-28{
  max-height: 7rem !important;
}

.u-max-h-32{
  max-height: 8rem !important;
}

.u-max-h-36{
  max-height: 9rem !important;
}

.u-max-h-40{
  max-height: 10rem !important;
}

.u-max-h-44{
  max-height: 11rem !important;
}

.u-max-h-48{
  max-height: 12rem !important;
}

.u-max-h-52{
  max-height: 13rem !important;
}

.u-max-h-56{
  max-height: 14rem !important;
}

.u-max-h-60{
  max-height: 15rem !important;
}

.u-max-h-64{
  max-height: 16rem !important;
}

.u-max-h-72{
  max-height: 18rem !important;
}

.u-max-h-80{
  max-height: 20rem !important;
}

.u-max-h-96{
  max-height: 24rem !important;
}

.u-max-h-px{
  max-height: 1px !important;
}

.u-max-h-0\.5{
  max-height: 0.125rem !important;
}

.u-max-h-1\.5{
  max-height: 0.375rem !important;
}

.u-max-h-2\.5{
  max-height: 0.625rem !important;
}

.u-max-h-3\.5{
  max-height: 0.875rem !important;
}

.u-max-h-full{
  max-height: 100% !important;
}

.u-max-h-screen{
  max-height: 100vh !important;
}

.u-max-w-none{
  max-width: none !important;
}

.u-max-w-xs{
  max-width: 10rem !important;
}

.u-max-w-sm{
  max-width: 12rem !important;
}

.u-max-w-md{
  max-width: 24rem !important;
}

.u-max-w-lg{
  max-width: 32rem !important;
}

.u-max-w-xl{
  max-width: 1280px !important;
}

.u-max-w-2xl{
  max-width: 42rem !important;
}

.u-max-w-3xl{
  max-width: 48rem !important;
}

.u-max-w-4xl{
  max-width: 56rem !important;
}

.u-max-w-5xl{
  max-width: 64rem !important;
}

.u-max-w-6xl{
  max-width: 72rem !important;
}

.u-max-w-full{
  max-width: 100% !important;
}

.u-max-w-mobile{
  max-width: 320px !important;
}

.u-max-w-tablet{
  max-width: 768px !important;
}

.u-max-w-tablet-large{
  max-width: 900px !important;
}

.u-max-w-mobile-large{
  max-width: 450px !important;
}

.u-max-w-desktop{
  max-width: 1120px !important;
}

.u-min-h-none{
  min-height: none !important;
}

.u-min-h-xs{
  min-height: 10rem !important;
}

.u-min-h-sm{
  min-height: 12rem !important;
}

.u-min-h-md{
  min-height: 24rem !important;
}

.u-min-h-lg{
  min-height: 32rem !important;
}

.u-min-h-xl{
  min-height: 36rem !important;
}

.u-min-w-sm{
  min-width: 320px !important;
}

.u-min-w-tablet{
  min-width: 768px !important;
}

.u-min-w-tablet-large{
  min-width: 900px !important;
}

.u-object-contain{
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.u-object-cover{
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.u-object-fill{
  -o-object-fit: fill !important;
     object-fit: fill !important;
}

.u-object-none{
  -o-object-fit: none !important;
     object-fit: none !important;
}

.u-object-scale-down{
  -o-object-fit: scale-down !important;
     object-fit: scale-down !important;
}

.u-object-bottom{
  -o-object-position: bottom !important;
     object-position: bottom !important;
}

.u-object-center{
  -o-object-position: center !important;
     object-position: center !important;
}

.u-object-left{
  -o-object-position: left !important;
     object-position: left !important;
}

.u-object-left-bottom{
  -o-object-position: left bottom !important;
     object-position: left bottom !important;
}

.u-object-left-top{
  -o-object-position: left top !important;
     object-position: left top !important;
}

.u-object-right{
  -o-object-position: right !important;
     object-position: right !important;
}

.u-object-right-bottom{
  -o-object-position: right bottom !important;
     object-position: right bottom !important;
}

.u-object-right-top{
  -o-object-position: right top !important;
     object-position: right top !important;
}

.u-object-top{
  -o-object-position: top !important;
     object-position: top !important;
}

.u-opacity-0{
  opacity: 0 !important;
}

.u-opacity-5{
  opacity: 0.05 !important;
}

.u-opacity-10{
  opacity: 0.1 !important;
}

.u-opacity-20{
  opacity: 0.2 !important;
}

.u-opacity-25{
  opacity: 0.25 !important;
}

.u-opacity-30{
  opacity: 0.3 !important;
}

.u-opacity-40{
  opacity: 0.4 !important;
}

.u-opacity-50{
  opacity: 0.5 !important;
}

.u-opacity-60{
  opacity: 0.6 !important;
}

.u-opacity-70{
  opacity: 0.7 !important;
}

.u-opacity-75{
  opacity: 0.75 !important;
}

.u-opacity-80{
  opacity: 0.8 !important;
}

.u-opacity-90{
  opacity: 0.9 !important;
}

.u-opacity-95{
  opacity: 0.95 !important;
}

.u-opacity-100{
  opacity: 1 !important;
}

.u-group:hover .group-hover\:u-opacity-0{
  opacity: 0 !important;
}

.u-group:hover .group-hover\:u-opacity-5{
  opacity: 0.05 !important;
}

.u-group:hover .group-hover\:u-opacity-10{
  opacity: 0.1 !important;
}

.u-group:hover .group-hover\:u-opacity-20{
  opacity: 0.2 !important;
}

.u-group:hover .group-hover\:u-opacity-25{
  opacity: 0.25 !important;
}

.u-group:hover .group-hover\:u-opacity-30{
  opacity: 0.3 !important;
}

.u-group:hover .group-hover\:u-opacity-40{
  opacity: 0.4 !important;
}

.u-group:hover .group-hover\:u-opacity-50{
  opacity: 0.5 !important;
}

.u-group:hover .group-hover\:u-opacity-60{
  opacity: 0.6 !important;
}

.u-group:hover .group-hover\:u-opacity-70{
  opacity: 0.7 !important;
}

.u-group:hover .group-hover\:u-opacity-75{
  opacity: 0.75 !important;
}

.u-group:hover .group-hover\:u-opacity-80{
  opacity: 0.8 !important;
}

.u-group:hover .group-hover\:u-opacity-90{
  opacity: 0.9 !important;
}

.u-group:hover .group-hover\:u-opacity-95{
  opacity: 0.95 !important;
}

.u-group:hover .group-hover\:u-opacity-100{
  opacity: 1 !important;
}

.focus-within\:u-opacity-0:focus-within{
  opacity: 0 !important;
}

.focus-within\:u-opacity-5:focus-within{
  opacity: 0.05 !important;
}

.focus-within\:u-opacity-10:focus-within{
  opacity: 0.1 !important;
}

.focus-within\:u-opacity-20:focus-within{
  opacity: 0.2 !important;
}

.focus-within\:u-opacity-25:focus-within{
  opacity: 0.25 !important;
}

.focus-within\:u-opacity-30:focus-within{
  opacity: 0.3 !important;
}

.focus-within\:u-opacity-40:focus-within{
  opacity: 0.4 !important;
}

.focus-within\:u-opacity-50:focus-within{
  opacity: 0.5 !important;
}

.focus-within\:u-opacity-60:focus-within{
  opacity: 0.6 !important;
}

.focus-within\:u-opacity-70:focus-within{
  opacity: 0.7 !important;
}

.focus-within\:u-opacity-75:focus-within{
  opacity: 0.75 !important;
}

.focus-within\:u-opacity-80:focus-within{
  opacity: 0.8 !important;
}

.focus-within\:u-opacity-90:focus-within{
  opacity: 0.9 !important;
}

.focus-within\:u-opacity-95:focus-within{
  opacity: 0.95 !important;
}

.focus-within\:u-opacity-100:focus-within{
  opacity: 1 !important;
}

.hover\:u-opacity-0:hover{
  opacity: 0 !important;
}

.hover\:u-opacity-5:hover{
  opacity: 0.05 !important;
}

.hover\:u-opacity-10:hover{
  opacity: 0.1 !important;
}

.hover\:u-opacity-20:hover{
  opacity: 0.2 !important;
}

.hover\:u-opacity-25:hover{
  opacity: 0.25 !important;
}

.hover\:u-opacity-30:hover{
  opacity: 0.3 !important;
}

.hover\:u-opacity-40:hover{
  opacity: 0.4 !important;
}

.hover\:u-opacity-50:hover{
  opacity: 0.5 !important;
}

.hover\:u-opacity-60:hover{
  opacity: 0.6 !important;
}

.hover\:u-opacity-70:hover{
  opacity: 0.7 !important;
}

.hover\:u-opacity-75:hover{
  opacity: 0.75 !important;
}

.hover\:u-opacity-80:hover{
  opacity: 0.8 !important;
}

.hover\:u-opacity-90:hover{
  opacity: 0.9 !important;
}

.hover\:u-opacity-95:hover{
  opacity: 0.95 !important;
}

.hover\:u-opacity-100:hover{
  opacity: 1 !important;
}

.focus\:u-opacity-0:focus{
  opacity: 0 !important;
}

.focus\:u-opacity-5:focus{
  opacity: 0.05 !important;
}

.focus\:u-opacity-10:focus{
  opacity: 0.1 !important;
}

.focus\:u-opacity-20:focus{
  opacity: 0.2 !important;
}

.focus\:u-opacity-25:focus{
  opacity: 0.25 !important;
}

.focus\:u-opacity-30:focus{
  opacity: 0.3 !important;
}

.focus\:u-opacity-40:focus{
  opacity: 0.4 !important;
}

.focus\:u-opacity-50:focus{
  opacity: 0.5 !important;
}

.focus\:u-opacity-60:focus{
  opacity: 0.6 !important;
}

.focus\:u-opacity-70:focus{
  opacity: 0.7 !important;
}

.focus\:u-opacity-75:focus{
  opacity: 0.75 !important;
}

.focus\:u-opacity-80:focus{
  opacity: 0.8 !important;
}

.focus\:u-opacity-90:focus{
  opacity: 0.9 !important;
}

.focus\:u-opacity-95:focus{
  opacity: 0.95 !important;
}

.focus\:u-opacity-100:focus{
  opacity: 1 !important;
}

.u-outline-none{
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

.u-outline-white{
  outline: 2px dotted white !important;
  outline-offset: 2px !important;
}

.u-outline-black{
  outline: 2px dotted black !important;
  outline-offset: 2px !important;
}

.focus-within\:u-outline-none:focus-within{
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

.focus-within\:u-outline-white:focus-within{
  outline: 2px dotted white !important;
  outline-offset: 2px !important;
}

.focus-within\:u-outline-black:focus-within{
  outline: 2px dotted black !important;
  outline-offset: 2px !important;
}

.focus\:u-outline-none:focus{
  outline: 2px solid transparent !important;
  outline-offset: 2px !important;
}

.focus\:u-outline-white:focus{
  outline: 2px dotted white !important;
  outline-offset: 2px !important;
}

.focus\:u-outline-black:focus{
  outline: 2px dotted black !important;
  outline-offset: 2px !important;
}

.u-overflow-auto{
  overflow: auto !important;
}

.u-overflow-hidden{
  overflow: hidden !important;
}

.u-overflow-visible{
  overflow: visible !important;
}

.u-overflow-scroll{
  overflow: scroll !important;
}

.u-overflow-x-auto{
  overflow-x: auto !important;
}

.u-overflow-y-auto{
  overflow-y: auto !important;
}

.u-overflow-x-hidden{
  overflow-x: hidden !important;
}

.u-overflow-y-hidden{
  overflow-y: hidden !important;
}

.u-overflow-x-visible{
  overflow-x: visible !important;
}

.u-overflow-y-visible{
  overflow-y: visible !important;
}

.u-overflow-x-scroll{
  overflow-x: scroll !important;
}

.u-overflow-y-scroll{
  overflow-y: scroll !important;
}

.u-overscroll-auto{
  -ms-scroll-chaining: chained !important;
      overscroll-behavior: auto !important;
}

.u-overscroll-contain{
  -ms-scroll-chaining: none !important;
      overscroll-behavior: contain !important;
}

.u-overscroll-none{
  -ms-scroll-chaining: none !important;
      overscroll-behavior: none !important;
}

.u-overscroll-y-auto{
  overscroll-behavior-y: auto !important;
}

.u-overscroll-y-contain{
  overscroll-behavior-y: contain !important;
}

.u-overscroll-y-none{
  overscroll-behavior-y: none !important;
}

.u-overscroll-x-auto{
  overscroll-behavior-x: auto !important;
}

.u-overscroll-x-contain{
  overscroll-behavior-x: contain !important;
}

.u-overscroll-x-none{
  overscroll-behavior-x: none !important;
}

.u-p-0{
  padding: 0px !important;
}

.u-p-1{
  padding: 0.25rem !important;
}

.u-p-2{
  padding: 0.5rem !important;
}

.u-p-3{
  padding: 0.75rem !important;
}

.u-p-4{
  padding: 1rem !important;
}

.u-p-5{
  padding: 1.25rem !important;
}

.u-p-6{
  padding: 1.5rem !important;
}

.u-p-7{
  padding: 1.75rem !important;
}

.u-p-8{
  padding: 2rem !important;
}

.u-p-9{
  padding: 2.25rem !important;
}

.u-p-10{
  padding: 2.5rem !important;
}

.u-p-11{
  padding: 2.75rem !important;
}

.u-p-12{
  padding: 3rem !important;
}

.u-p-14{
  padding: 3.5rem !important;
}

.u-p-16{
  padding: 4rem !important;
}

.u-p-20{
  padding: 5rem !important;
}

.u-p-24{
  padding: 6rem !important;
}

.u-p-28{
  padding: 7rem !important;
}

.u-p-32{
  padding: 8rem !important;
}

.u-p-36{
  padding: 9rem !important;
}

.u-p-40{
  padding: 10rem !important;
}

.u-p-44{
  padding: 11rem !important;
}

.u-p-48{
  padding: 12rem !important;
}

.u-p-52{
  padding: 13rem !important;
}

.u-p-56{
  padding: 14rem !important;
}

.u-p-60{
  padding: 15rem !important;
}

.u-p-64{
  padding: 16rem !important;
}

.u-p-72{
  padding: 18rem !important;
}

.u-p-80{
  padding: 20rem !important;
}

.u-p-96{
  padding: 24rem !important;
}

.u-p-px{
  padding: 1px !important;
}

.u-p-0\.5{
  padding: 0.125rem !important;
}

.u-p-1\.5{
  padding: 0.375rem !important;
}

.u-p-2\.5{
  padding: 0.625rem !important;
}

.u-p-3\.5{
  padding: 0.875rem !important;
}

.u-py-0{
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.u-px-0{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.u-py-1{
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.u-px-1{
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.u-py-2{
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.u-px-2{
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.u-py-3{
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.u-px-3{
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.u-py-4{
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.u-px-4{
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.u-py-5{
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.u-px-5{
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.u-py-6{
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.u-px-6{
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.u-py-7{
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.u-px-7{
  padding-left: 1.75rem !important;
  padding-right: 1.75rem !important;
}

.u-py-8{
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.u-px-8{
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.u-py-9{
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.u-px-9{
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.u-py-10{
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.u-px-10{
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.u-py-11{
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.u-px-11{
  padding-left: 2.75rem !important;
  padding-right: 2.75rem !important;
}

.u-py-12{
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.u-px-12{
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.u-py-14{
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.u-px-14{
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}

.u-py-16{
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.u-px-16{
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.u-py-20{
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.u-px-20{
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.u-py-24{
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.u-px-24{
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.u-py-28{
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.u-px-28{
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.u-py-32{
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.u-px-32{
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.u-py-36{
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.u-px-36{
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.u-py-40{
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.u-px-40{
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.u-py-44{
  padding-top: 11rem !important;
  padding-bottom: 11rem !important;
}

.u-px-44{
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.u-py-48{
  padding-top: 12rem !important;
  padding-bottom: 12rem !important;
}

.u-px-48{
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.u-py-52{
  padding-top: 13rem !important;
  padding-bottom: 13rem !important;
}

.u-px-52{
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.u-py-56{
  padding-top: 14rem !important;
  padding-bottom: 14rem !important;
}

.u-px-56{
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}

.u-py-60{
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}

.u-px-60{
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.u-py-64{
  padding-top: 16rem !important;
  padding-bottom: 16rem !important;
}

.u-px-64{
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.u-py-72{
  padding-top: 18rem !important;
  padding-bottom: 18rem !important;
}

.u-px-72{
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.u-py-80{
  padding-top: 20rem !important;
  padding-bottom: 20rem !important;
}

.u-px-80{
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.u-py-96{
  padding-top: 24rem !important;
  padding-bottom: 24rem !important;
}

.u-px-96{
  padding-left: 24rem !important;
  padding-right: 24rem !important;
}

.u-py-px{
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.u-px-px{
  padding-left: 1px !important;
  padding-right: 1px !important;
}

.u-py-0\.5{
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}

.u-px-0\.5{
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}

.u-py-1\.5{
  padding-top: 0.375rem !important;
  padding-bottom: 0.375rem !important;
}

.u-px-1\.5{
  padding-left: 0.375rem !important;
  padding-right: 0.375rem !important;
}

.u-py-2\.5{
  padding-top: 0.625rem !important;
  padding-bottom: 0.625rem !important;
}

.u-px-2\.5{
  padding-left: 0.625rem !important;
  padding-right: 0.625rem !important;
}

.u-py-3\.5{
  padding-top: 0.875rem !important;
  padding-bottom: 0.875rem !important;
}

.u-px-3\.5{
  padding-left: 0.875rem !important;
  padding-right: 0.875rem !important;
}

.u-pt-0{
  padding-top: 0px !important;
}

.u-pr-0{
  padding-right: 0px !important;
}

.u-pb-0{
  padding-bottom: 0px !important;
}

.u-pl-0{
  padding-left: 0px !important;
}

.u-pt-1{
  padding-top: 0.25rem !important;
}

.u-pr-1{
  padding-right: 0.25rem !important;
}

.u-pb-1{
  padding-bottom: 0.25rem !important;
}

.u-pl-1{
  padding-left: 0.25rem !important;
}

.u-pt-2{
  padding-top: 0.5rem !important;
}

.u-pr-2{
  padding-right: 0.5rem !important;
}

.u-pb-2{
  padding-bottom: 0.5rem !important;
}

.u-pl-2{
  padding-left: 0.5rem !important;
}

.u-pt-3{
  padding-top: 0.75rem !important;
}

.u-pr-3{
  padding-right: 0.75rem !important;
}

.u-pb-3{
  padding-bottom: 0.75rem !important;
}

.u-pl-3{
  padding-left: 0.75rem !important;
}

.u-pt-4{
  padding-top: 1rem !important;
}

.u-pr-4{
  padding-right: 1rem !important;
}

.u-pb-4{
  padding-bottom: 1rem !important;
}

.u-pl-4{
  padding-left: 1rem !important;
}

.u-pt-5{
  padding-top: 1.25rem !important;
}

.u-pr-5{
  padding-right: 1.25rem !important;
}

.u-pb-5{
  padding-bottom: 1.25rem !important;
}

.u-pl-5{
  padding-left: 1.25rem !important;
}

.u-pt-6{
  padding-top: 1.5rem !important;
}

.u-pr-6{
  padding-right: 1.5rem !important;
}

.u-pb-6{
  padding-bottom: 1.5rem !important;
}

.u-pl-6{
  padding-left: 1.5rem !important;
}

.u-pt-7{
  padding-top: 1.75rem !important;
}

.u-pr-7{
  padding-right: 1.75rem !important;
}

.u-pb-7{
  padding-bottom: 1.75rem !important;
}

.u-pl-7{
  padding-left: 1.75rem !important;
}

.u-pt-8{
  padding-top: 2rem !important;
}

.u-pr-8{
  padding-right: 2rem !important;
}

.u-pb-8{
  padding-bottom: 2rem !important;
}

.u-pl-8{
  padding-left: 2rem !important;
}

.u-pt-9{
  padding-top: 2.25rem !important;
}

.u-pr-9{
  padding-right: 2.25rem !important;
}

.u-pb-9{
  padding-bottom: 2.25rem !important;
}

.u-pl-9{
  padding-left: 2.25rem !important;
}

.u-pt-10{
  padding-top: 2.5rem !important;
}

.u-pr-10{
  padding-right: 2.5rem !important;
}

.u-pb-10{
  padding-bottom: 2.5rem !important;
}

.u-pl-10{
  padding-left: 2.5rem !important;
}

.u-pt-11{
  padding-top: 2.75rem !important;
}

.u-pr-11{
  padding-right: 2.75rem !important;
}

.u-pb-11{
  padding-bottom: 2.75rem !important;
}

.u-pl-11{
  padding-left: 2.75rem !important;
}

.u-pt-12{
  padding-top: 3rem !important;
}

.u-pr-12{
  padding-right: 3rem !important;
}

.u-pb-12{
  padding-bottom: 3rem !important;
}

.u-pl-12{
  padding-left: 3rem !important;
}

.u-pt-14{
  padding-top: 3.5rem !important;
}

.u-pr-14{
  padding-right: 3.5rem !important;
}

.u-pb-14{
  padding-bottom: 3.5rem !important;
}

.u-pl-14{
  padding-left: 3.5rem !important;
}

.u-pt-16{
  padding-top: 4rem !important;
}

.u-pr-16{
  padding-right: 4rem !important;
}

.u-pb-16{
  padding-bottom: 4rem !important;
}

.u-pl-16{
  padding-left: 4rem !important;
}

.u-pt-20{
  padding-top: 5rem !important;
}

.u-pr-20{
  padding-right: 5rem !important;
}

.u-pb-20{
  padding-bottom: 5rem !important;
}

.u-pl-20{
  padding-left: 5rem !important;
}

.u-pt-24{
  padding-top: 6rem !important;
}

.u-pr-24{
  padding-right: 6rem !important;
}

.u-pb-24{
  padding-bottom: 6rem !important;
}

.u-pl-24{
  padding-left: 6rem !important;
}

.u-pt-28{
  padding-top: 7rem !important;
}

.u-pr-28{
  padding-right: 7rem !important;
}

.u-pb-28{
  padding-bottom: 7rem !important;
}

.u-pl-28{
  padding-left: 7rem !important;
}

.u-pt-32{
  padding-top: 8rem !important;
}

.u-pr-32{
  padding-right: 8rem !important;
}

.u-pb-32{
  padding-bottom: 8rem !important;
}

.u-pl-32{
  padding-left: 8rem !important;
}

.u-pt-36{
  padding-top: 9rem !important;
}

.u-pr-36{
  padding-right: 9rem !important;
}

.u-pb-36{
  padding-bottom: 9rem !important;
}

.u-pl-36{
  padding-left: 9rem !important;
}

.u-pt-40{
  padding-top: 10rem !important;
}

.u-pr-40{
  padding-right: 10rem !important;
}

.u-pb-40{
  padding-bottom: 10rem !important;
}

.u-pl-40{
  padding-left: 10rem !important;
}

.u-pt-44{
  padding-top: 11rem !important;
}

.u-pr-44{
  padding-right: 11rem !important;
}

.u-pb-44{
  padding-bottom: 11rem !important;
}

.u-pl-44{
  padding-left: 11rem !important;
}

.u-pt-48{
  padding-top: 12rem !important;
}

.u-pr-48{
  padding-right: 12rem !important;
}

.u-pb-48{
  padding-bottom: 12rem !important;
}

.u-pl-48{
  padding-left: 12rem !important;
}

.u-pt-52{
  padding-top: 13rem !important;
}

.u-pr-52{
  padding-right: 13rem !important;
}

.u-pb-52{
  padding-bottom: 13rem !important;
}

.u-pl-52{
  padding-left: 13rem !important;
}

.u-pt-56{
  padding-top: 14rem !important;
}

.u-pr-56{
  padding-right: 14rem !important;
}

.u-pb-56{
  padding-bottom: 14rem !important;
}

.u-pl-56{
  padding-left: 14rem !important;
}

.u-pt-60{
  padding-top: 15rem !important;
}

.u-pr-60{
  padding-right: 15rem !important;
}

.u-pb-60{
  padding-bottom: 15rem !important;
}

.u-pl-60{
  padding-left: 15rem !important;
}

.u-pt-64{
  padding-top: 16rem !important;
}

.u-pr-64{
  padding-right: 16rem !important;
}

.u-pb-64{
  padding-bottom: 16rem !important;
}

.u-pl-64{
  padding-left: 16rem !important;
}

.u-pt-72{
  padding-top: 18rem !important;
}

.u-pr-72{
  padding-right: 18rem !important;
}

.u-pb-72{
  padding-bottom: 18rem !important;
}

.u-pl-72{
  padding-left: 18rem !important;
}

.u-pt-80{
  padding-top: 20rem !important;
}

.u-pr-80{
  padding-right: 20rem !important;
}

.u-pb-80{
  padding-bottom: 20rem !important;
}

.u-pl-80{
  padding-left: 20rem !important;
}

.u-pt-96{
  padding-top: 24rem !important;
}

.u-pr-96{
  padding-right: 24rem !important;
}

.u-pb-96{
  padding-bottom: 24rem !important;
}

.u-pl-96{
  padding-left: 24rem !important;
}

.u-pt-px{
  padding-top: 1px !important;
}

.u-pr-px{
  padding-right: 1px !important;
}

.u-pb-px{
  padding-bottom: 1px !important;
}

.u-pl-px{
  padding-left: 1px !important;
}

.u-pt-0\.5{
  padding-top: 0.125rem !important;
}

.u-pr-0\.5{
  padding-right: 0.125rem !important;
}

.u-pb-0\.5{
  padding-bottom: 0.125rem !important;
}

.u-pl-0\.5{
  padding-left: 0.125rem !important;
}

.u-pt-1\.5{
  padding-top: 0.375rem !important;
}

.u-pr-1\.5{
  padding-right: 0.375rem !important;
}

.u-pb-1\.5{
  padding-bottom: 0.375rem !important;
}

.u-pl-1\.5{
  padding-left: 0.375rem !important;
}

.u-pt-2\.5{
  padding-top: 0.625rem !important;
}

.u-pr-2\.5{
  padding-right: 0.625rem !important;
}

.u-pb-2\.5{
  padding-bottom: 0.625rem !important;
}

.u-pl-2\.5{
  padding-left: 0.625rem !important;
}

.u-pt-3\.5{
  padding-top: 0.875rem !important;
}

.u-pr-3\.5{
  padding-right: 0.875rem !important;
}

.u-pb-3\.5{
  padding-bottom: 0.875rem !important;
}

.u-pl-3\.5{
  padding-left: 0.875rem !important;
}

.u-placeholder-black::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-black:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-black::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-white::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-white:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-white::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-faded::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-faded:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-faded::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-transparent::-moz-placeholder{
  color: transparent !important;
}

.u-placeholder-transparent:-ms-input-placeholder{
  color: transparent !important;
}

.u-placeholder-transparent::placeholder{
  color: transparent !important;
}

.u-placeholder-neutral-1::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-1:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-1::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-10::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-10:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-15::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-15:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-15::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-45::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-neutral-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-0::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-0:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-0::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-40:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-primary-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-0::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-0:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-0::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-10::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-10:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-10::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-20::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-20:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-20::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-30::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-30:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-30::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-40::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-40:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-40::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-50::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-50::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-60::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-60:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-secundary-60::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-success::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-success:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-success::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-danger::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-danger:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-danger::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-black:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-black:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-black:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-white:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-white:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-white:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-faded:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-faded:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-faded:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-transparent:focus::-moz-placeholder{
  color: transparent !important;
}

.focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
  color: transparent !important;
}

.focus\:u-placeholder-transparent:focus::placeholder{
  color: transparent !important;
}

.focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-1:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-15:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-45:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-neutral-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-0:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-primary-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-0:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-10:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-20:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-30:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-40:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-50:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-secundary-60:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-success:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-success:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-success:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-danger:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-danger:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.focus\:u-placeholder-danger:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
}

.u-placeholder-opacity-0::-moz-placeholder{
  --tw-placeholder-opacity: 0 !important;
}

.u-placeholder-opacity-0:-ms-input-placeholder{
  --tw-placeholder-opacity: 0 !important;
}

.u-placeholder-opacity-0::placeholder{
  --tw-placeholder-opacity: 0 !important;
}

.u-placeholder-opacity-5::-moz-placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.u-placeholder-opacity-5:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.u-placeholder-opacity-5::placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.u-placeholder-opacity-10::-moz-placeholder{
  --tw-placeholder-opacity: 0.1 !important;
}

.u-placeholder-opacity-10:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.1 !important;
}

.u-placeholder-opacity-10::placeholder{
  --tw-placeholder-opacity: 0.1 !important;
}

.u-placeholder-opacity-20::-moz-placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.u-placeholder-opacity-20:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.u-placeholder-opacity-20::placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.u-placeholder-opacity-25::-moz-placeholder{
  --tw-placeholder-opacity: 0.25 !important;
}

.u-placeholder-opacity-25:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.25 !important;
}

.u-placeholder-opacity-25::placeholder{
  --tw-placeholder-opacity: 0.25 !important;
}

.u-placeholder-opacity-30::-moz-placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.u-placeholder-opacity-30:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.u-placeholder-opacity-30::placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.u-placeholder-opacity-40::-moz-placeholder{
  --tw-placeholder-opacity: 0.4 !important;
}

.u-placeholder-opacity-40:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.4 !important;
}

.u-placeholder-opacity-40::placeholder{
  --tw-placeholder-opacity: 0.4 !important;
}

.u-placeholder-opacity-50::-moz-placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.u-placeholder-opacity-50:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.u-placeholder-opacity-50::placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.u-placeholder-opacity-60::-moz-placeholder{
  --tw-placeholder-opacity: 0.6 !important;
}

.u-placeholder-opacity-60:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.6 !important;
}

.u-placeholder-opacity-60::placeholder{
  --tw-placeholder-opacity: 0.6 !important;
}

.u-placeholder-opacity-70::-moz-placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.u-placeholder-opacity-70:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.u-placeholder-opacity-70::placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.u-placeholder-opacity-75::-moz-placeholder{
  --tw-placeholder-opacity: 0.75 !important;
}

.u-placeholder-opacity-75:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.75 !important;
}

.u-placeholder-opacity-75::placeholder{
  --tw-placeholder-opacity: 0.75 !important;
}

.u-placeholder-opacity-80::-moz-placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.u-placeholder-opacity-80:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.u-placeholder-opacity-80::placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.u-placeholder-opacity-90::-moz-placeholder{
  --tw-placeholder-opacity: 0.9 !important;
}

.u-placeholder-opacity-90:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.9 !important;
}

.u-placeholder-opacity-90::placeholder{
  --tw-placeholder-opacity: 0.9 !important;
}

.u-placeholder-opacity-95::-moz-placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.u-placeholder-opacity-95:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.u-placeholder-opacity-95::placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.u-placeholder-opacity-100::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
}

.u-placeholder-opacity-100:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
}

.u-placeholder-opacity-100::placeholder{
  --tw-placeholder-opacity: 1 !important;
}

.focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0 !important;
}

.focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0 !important;
}

.focus\:u-placeholder-opacity-0:focus::placeholder{
  --tw-placeholder-opacity: 0 !important;
}

.focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.focus\:u-placeholder-opacity-5:focus::placeholder{
  --tw-placeholder-opacity: 0.05 !important;
}

.focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.1 !important;
}

.focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.1 !important;
}

.focus\:u-placeholder-opacity-10:focus::placeholder{
  --tw-placeholder-opacity: 0.1 !important;
}

.focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.focus\:u-placeholder-opacity-20:focus::placeholder{
  --tw-placeholder-opacity: 0.2 !important;
}

.focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.25 !important;
}

.focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.25 !important;
}

.focus\:u-placeholder-opacity-25:focus::placeholder{
  --tw-placeholder-opacity: 0.25 !important;
}

.focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.focus\:u-placeholder-opacity-30:focus::placeholder{
  --tw-placeholder-opacity: 0.3 !important;
}

.focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.4 !important;
}

.focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.4 !important;
}

.focus\:u-placeholder-opacity-40:focus::placeholder{
  --tw-placeholder-opacity: 0.4 !important;
}

.focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.focus\:u-placeholder-opacity-50:focus::placeholder{
  --tw-placeholder-opacity: 0.5 !important;
}

.focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.6 !important;
}

.focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.6 !important;
}

.focus\:u-placeholder-opacity-60:focus::placeholder{
  --tw-placeholder-opacity: 0.6 !important;
}

.focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.focus\:u-placeholder-opacity-70:focus::placeholder{
  --tw-placeholder-opacity: 0.7 !important;
}

.focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.75 !important;
}

.focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.75 !important;
}

.focus\:u-placeholder-opacity-75:focus::placeholder{
  --tw-placeholder-opacity: 0.75 !important;
}

.focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.focus\:u-placeholder-opacity-80:focus::placeholder{
  --tw-placeholder-opacity: 0.8 !important;
}

.focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.9 !important;
}

.focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.9 !important;
}

.focus\:u-placeholder-opacity-90:focus::placeholder{
  --tw-placeholder-opacity: 0.9 !important;
}

.focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.focus\:u-placeholder-opacity-95:focus::placeholder{
  --tw-placeholder-opacity: 0.95 !important;
}

.focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
  --tw-placeholder-opacity: 1 !important;
}

.focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
  --tw-placeholder-opacity: 1 !important;
}

.focus\:u-placeholder-opacity-100:focus::placeholder{
  --tw-placeholder-opacity: 1 !important;
}

.u-pointer-events-none{
  pointer-events: none !important;
}

.u-pointer-events-auto{
  pointer-events: auto !important;
}

.u-static{
  position: static !important;
}

.u-fixed{
  position: fixed !important;
}

.u-absolute{
  position: absolute !important;
}

.u-relative{
  position: relative !important;
}

.u-sticky{
  position: sticky !important;
}

.u-inset-0{
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
}

.u-inset-1{
  top: 0.25rem !important;
  right: 0.25rem !important;
  bottom: 0.25rem !important;
  left: 0.25rem !important;
}

.u-inset-2{
  top: 0.5rem !important;
  right: 0.5rem !important;
  bottom: 0.5rem !important;
  left: 0.5rem !important;
}

.u-inset-3{
  top: 0.75rem !important;
  right: 0.75rem !important;
  bottom: 0.75rem !important;
  left: 0.75rem !important;
}

.u-inset-4{
  top: 1rem !important;
  right: 1rem !important;
  bottom: 1rem !important;
  left: 1rem !important;
}

.u-inset-5{
  top: 1.25rem !important;
  right: 1.25rem !important;
  bottom: 1.25rem !important;
  left: 1.25rem !important;
}

.u-inset-6{
  top: 1.5rem !important;
  right: 1.5rem !important;
  bottom: 1.5rem !important;
  left: 1.5rem !important;
}

.u-inset-7{
  top: 1.75rem !important;
  right: 1.75rem !important;
  bottom: 1.75rem !important;
  left: 1.75rem !important;
}

.u-inset-8{
  top: 2rem !important;
  right: 2rem !important;
  bottom: 2rem !important;
  left: 2rem !important;
}

.u-inset-9{
  top: 2.25rem !important;
  right: 2.25rem !important;
  bottom: 2.25rem !important;
  left: 2.25rem !important;
}

.u-inset-10{
  top: 2.5rem !important;
  right: 2.5rem !important;
  bottom: 2.5rem !important;
  left: 2.5rem !important;
}

.u-inset-11{
  top: 2.75rem !important;
  right: 2.75rem !important;
  bottom: 2.75rem !important;
  left: 2.75rem !important;
}

.u-inset-12{
  top: 3rem !important;
  right: 3rem !important;
  bottom: 3rem !important;
  left: 3rem !important;
}

.u-inset-14{
  top: 3.5rem !important;
  right: 3.5rem !important;
  bottom: 3.5rem !important;
  left: 3.5rem !important;
}

.u-inset-16{
  top: 4rem !important;
  right: 4rem !important;
  bottom: 4rem !important;
  left: 4rem !important;
}

.u-inset-20{
  top: 5rem !important;
  right: 5rem !important;
  bottom: 5rem !important;
  left: 5rem !important;
}

.u-inset-24{
  top: 6rem !important;
  right: 6rem !important;
  bottom: 6rem !important;
  left: 6rem !important;
}

.u-inset-28{
  top: 7rem !important;
  right: 7rem !important;
  bottom: 7rem !important;
  left: 7rem !important;
}

.u-inset-32{
  top: 8rem !important;
  right: 8rem !important;
  bottom: 8rem !important;
  left: 8rem !important;
}

.u-inset-36{
  top: 9rem !important;
  right: 9rem !important;
  bottom: 9rem !important;
  left: 9rem !important;
}

.u-inset-40{
  top: 10rem !important;
  right: 10rem !important;
  bottom: 10rem !important;
  left: 10rem !important;
}

.u-inset-44{
  top: 11rem !important;
  right: 11rem !important;
  bottom: 11rem !important;
  left: 11rem !important;
}

.u-inset-48{
  top: 12rem !important;
  right: 12rem !important;
  bottom: 12rem !important;
  left: 12rem !important;
}

.u-inset-52{
  top: 13rem !important;
  right: 13rem !important;
  bottom: 13rem !important;
  left: 13rem !important;
}

.u-inset-56{
  top: 14rem !important;
  right: 14rem !important;
  bottom: 14rem !important;
  left: 14rem !important;
}

.u-inset-60{
  top: 15rem !important;
  right: 15rem !important;
  bottom: 15rem !important;
  left: 15rem !important;
}

.u-inset-64{
  top: 16rem !important;
  right: 16rem !important;
  bottom: 16rem !important;
  left: 16rem !important;
}

.u-inset-72{
  top: 18rem !important;
  right: 18rem !important;
  bottom: 18rem !important;
  left: 18rem !important;
}

.u-inset-80{
  top: 20rem !important;
  right: 20rem !important;
  bottom: 20rem !important;
  left: 20rem !important;
}

.u-inset-96{
  top: 24rem !important;
  right: 24rem !important;
  bottom: 24rem !important;
  left: 24rem !important;
}

.u-inset-auto{
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.u-inset-px{
  top: 1px !important;
  right: 1px !important;
  bottom: 1px !important;
  left: 1px !important;
}

.u-inset-0\.5{
  top: 0.125rem !important;
  right: 0.125rem !important;
  bottom: 0.125rem !important;
  left: 0.125rem !important;
}

.u-inset-1\.5{
  top: 0.375rem !important;
  right: 0.375rem !important;
  bottom: 0.375rem !important;
  left: 0.375rem !important;
}

.u-inset-2\.5{
  top: 0.625rem !important;
  right: 0.625rem !important;
  bottom: 0.625rem !important;
  left: 0.625rem !important;
}

.u-inset-3\.5{
  top: 0.875rem !important;
  right: 0.875rem !important;
  bottom: 0.875rem !important;
  left: 0.875rem !important;
}

.u--inset-0{
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
}

.u--inset-1{
  top: -0.25rem !important;
  right: -0.25rem !important;
  bottom: -0.25rem !important;
  left: -0.25rem !important;
}

.u--inset-2{
  top: -0.5rem !important;
  right: -0.5rem !important;
  bottom: -0.5rem !important;
  left: -0.5rem !important;
}

.u--inset-3{
  top: -0.75rem !important;
  right: -0.75rem !important;
  bottom: -0.75rem !important;
  left: -0.75rem !important;
}

.u--inset-4{
  top: -1rem !important;
  right: -1rem !important;
  bottom: -1rem !important;
  left: -1rem !important;
}

.u--inset-5{
  top: -1.25rem !important;
  right: -1.25rem !important;
  bottom: -1.25rem !important;
  left: -1.25rem !important;
}

.u--inset-6{
  top: -1.5rem !important;
  right: -1.5rem !important;
  bottom: -1.5rem !important;
  left: -1.5rem !important;
}

.u--inset-7{
  top: -1.75rem !important;
  right: -1.75rem !important;
  bottom: -1.75rem !important;
  left: -1.75rem !important;
}

.u--inset-8{
  top: -2rem !important;
  right: -2rem !important;
  bottom: -2rem !important;
  left: -2rem !important;
}

.u--inset-9{
  top: -2.25rem !important;
  right: -2.25rem !important;
  bottom: -2.25rem !important;
  left: -2.25rem !important;
}

.u--inset-10{
  top: -2.5rem !important;
  right: -2.5rem !important;
  bottom: -2.5rem !important;
  left: -2.5rem !important;
}

.u--inset-11{
  top: -2.75rem !important;
  right: -2.75rem !important;
  bottom: -2.75rem !important;
  left: -2.75rem !important;
}

.u--inset-12{
  top: -3rem !important;
  right: -3rem !important;
  bottom: -3rem !important;
  left: -3rem !important;
}

.u--inset-14{
  top: -3.5rem !important;
  right: -3.5rem !important;
  bottom: -3.5rem !important;
  left: -3.5rem !important;
}

.u--inset-16{
  top: -4rem !important;
  right: -4rem !important;
  bottom: -4rem !important;
  left: -4rem !important;
}

.u--inset-20{
  top: -5rem !important;
  right: -5rem !important;
  bottom: -5rem !important;
  left: -5rem !important;
}

.u--inset-24{
  top: -6rem !important;
  right: -6rem !important;
  bottom: -6rem !important;
  left: -6rem !important;
}

.u--inset-28{
  top: -7rem !important;
  right: -7rem !important;
  bottom: -7rem !important;
  left: -7rem !important;
}

.u--inset-32{
  top: -8rem !important;
  right: -8rem !important;
  bottom: -8rem !important;
  left: -8rem !important;
}

.u--inset-36{
  top: -9rem !important;
  right: -9rem !important;
  bottom: -9rem !important;
  left: -9rem !important;
}

.u--inset-40{
  top: -10rem !important;
  right: -10rem !important;
  bottom: -10rem !important;
  left: -10rem !important;
}

.u--inset-44{
  top: -11rem !important;
  right: -11rem !important;
  bottom: -11rem !important;
  left: -11rem !important;
}

.u--inset-48{
  top: -12rem !important;
  right: -12rem !important;
  bottom: -12rem !important;
  left: -12rem !important;
}

.u--inset-52{
  top: -13rem !important;
  right: -13rem !important;
  bottom: -13rem !important;
  left: -13rem !important;
}

.u--inset-56{
  top: -14rem !important;
  right: -14rem !important;
  bottom: -14rem !important;
  left: -14rem !important;
}

.u--inset-60{
  top: -15rem !important;
  right: -15rem !important;
  bottom: -15rem !important;
  left: -15rem !important;
}

.u--inset-64{
  top: -16rem !important;
  right: -16rem !important;
  bottom: -16rem !important;
  left: -16rem !important;
}

.u--inset-72{
  top: -18rem !important;
  right: -18rem !important;
  bottom: -18rem !important;
  left: -18rem !important;
}

.u--inset-80{
  top: -20rem !important;
  right: -20rem !important;
  bottom: -20rem !important;
  left: -20rem !important;
}

.u--inset-96{
  top: -24rem !important;
  right: -24rem !important;
  bottom: -24rem !important;
  left: -24rem !important;
}

.u--inset-px{
  top: -1px !important;
  right: -1px !important;
  bottom: -1px !important;
  left: -1px !important;
}

.u--inset-0\.5{
  top: -0.125rem !important;
  right: -0.125rem !important;
  bottom: -0.125rem !important;
  left: -0.125rem !important;
}

.u--inset-1\.5{
  top: -0.375rem !important;
  right: -0.375rem !important;
  bottom: -0.375rem !important;
  left: -0.375rem !important;
}

.u--inset-2\.5{
  top: -0.625rem !important;
  right: -0.625rem !important;
  bottom: -0.625rem !important;
  left: -0.625rem !important;
}

.u--inset-3\.5{
  top: -0.875rem !important;
  right: -0.875rem !important;
  bottom: -0.875rem !important;
  left: -0.875rem !important;
}

.u-inset-1\/2{
  top: 50% !important;
  right: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
}

.u-inset-1\/3{
  top: 33.333333% !important;
  right: 33.333333% !important;
  bottom: 33.333333% !important;
  left: 33.333333% !important;
}

.u-inset-2\/3{
  top: 66.666667% !important;
  right: 66.666667% !important;
  bottom: 66.666667% !important;
  left: 66.666667% !important;
}

.u-inset-1\/4{
  top: 25% !important;
  right: 25% !important;
  bottom: 25% !important;
  left: 25% !important;
}

.u-inset-2\/4{
  top: 50% !important;
  right: 50% !important;
  bottom: 50% !important;
  left: 50% !important;
}

.u-inset-3\/4{
  top: 75% !important;
  right: 75% !important;
  bottom: 75% !important;
  left: 75% !important;
}

.u-inset-full{
  top: 100% !important;
  right: 100% !important;
  bottom: 100% !important;
  left: 100% !important;
}

.u--inset-1\/2{
  top: -50% !important;
  right: -50% !important;
  bottom: -50% !important;
  left: -50% !important;
}

.u--inset-1\/3{
  top: -33.333333% !important;
  right: -33.333333% !important;
  bottom: -33.333333% !important;
  left: -33.333333% !important;
}

.u--inset-2\/3{
  top: -66.666667% !important;
  right: -66.666667% !important;
  bottom: -66.666667% !important;
  left: -66.666667% !important;
}

.u--inset-1\/4{
  top: -25% !important;
  right: -25% !important;
  bottom: -25% !important;
  left: -25% !important;
}

.u--inset-2\/4{
  top: -50% !important;
  right: -50% !important;
  bottom: -50% !important;
  left: -50% !important;
}

.u--inset-3\/4{
  top: -75% !important;
  right: -75% !important;
  bottom: -75% !important;
  left: -75% !important;
}

.u--inset-full{
  top: -100% !important;
  right: -100% !important;
  bottom: -100% !important;
  left: -100% !important;
}

.u-inset-y-0{
  top: 0px !important;
  bottom: 0px !important;
}

.u-inset-x-0{
  right: 0px !important;
  left: 0px !important;
}

.u-inset-y-1{
  top: 0.25rem !important;
  bottom: 0.25rem !important;
}

.u-inset-x-1{
  right: 0.25rem !important;
  left: 0.25rem !important;
}

.u-inset-y-2{
  top: 0.5rem !important;
  bottom: 0.5rem !important;
}

.u-inset-x-2{
  right: 0.5rem !important;
  left: 0.5rem !important;
}

.u-inset-y-3{
  top: 0.75rem !important;
  bottom: 0.75rem !important;
}

.u-inset-x-3{
  right: 0.75rem !important;
  left: 0.75rem !important;
}

.u-inset-y-4{
  top: 1rem !important;
  bottom: 1rem !important;
}

.u-inset-x-4{
  right: 1rem !important;
  left: 1rem !important;
}

.u-inset-y-5{
  top: 1.25rem !important;
  bottom: 1.25rem !important;
}

.u-inset-x-5{
  right: 1.25rem !important;
  left: 1.25rem !important;
}

.u-inset-y-6{
  top: 1.5rem !important;
  bottom: 1.5rem !important;
}

.u-inset-x-6{
  right: 1.5rem !important;
  left: 1.5rem !important;
}

.u-inset-y-7{
  top: 1.75rem !important;
  bottom: 1.75rem !important;
}

.u-inset-x-7{
  right: 1.75rem !important;
  left: 1.75rem !important;
}

.u-inset-y-8{
  top: 2rem !important;
  bottom: 2rem !important;
}

.u-inset-x-8{
  right: 2rem !important;
  left: 2rem !important;
}

.u-inset-y-9{
  top: 2.25rem !important;
  bottom: 2.25rem !important;
}

.u-inset-x-9{
  right: 2.25rem !important;
  left: 2.25rem !important;
}

.u-inset-y-10{
  top: 2.5rem !important;
  bottom: 2.5rem !important;
}

.u-inset-x-10{
  right: 2.5rem !important;
  left: 2.5rem !important;
}

.u-inset-y-11{
  top: 2.75rem !important;
  bottom: 2.75rem !important;
}

.u-inset-x-11{
  right: 2.75rem !important;
  left: 2.75rem !important;
}

.u-inset-y-12{
  top: 3rem !important;
  bottom: 3rem !important;
}

.u-inset-x-12{
  right: 3rem !important;
  left: 3rem !important;
}

.u-inset-y-14{
  top: 3.5rem !important;
  bottom: 3.5rem !important;
}

.u-inset-x-14{
  right: 3.5rem !important;
  left: 3.5rem !important;
}

.u-inset-y-16{
  top: 4rem !important;
  bottom: 4rem !important;
}

.u-inset-x-16{
  right: 4rem !important;
  left: 4rem !important;
}

.u-inset-y-20{
  top: 5rem !important;
  bottom: 5rem !important;
}

.u-inset-x-20{
  right: 5rem !important;
  left: 5rem !important;
}

.u-inset-y-24{
  top: 6rem !important;
  bottom: 6rem !important;
}

.u-inset-x-24{
  right: 6rem !important;
  left: 6rem !important;
}

.u-inset-y-28{
  top: 7rem !important;
  bottom: 7rem !important;
}

.u-inset-x-28{
  right: 7rem !important;
  left: 7rem !important;
}

.u-inset-y-32{
  top: 8rem !important;
  bottom: 8rem !important;
}

.u-inset-x-32{
  right: 8rem !important;
  left: 8rem !important;
}

.u-inset-y-36{
  top: 9rem !important;
  bottom: 9rem !important;
}

.u-inset-x-36{
  right: 9rem !important;
  left: 9rem !important;
}

.u-inset-y-40{
  top: 10rem !important;
  bottom: 10rem !important;
}

.u-inset-x-40{
  right: 10rem !important;
  left: 10rem !important;
}

.u-inset-y-44{
  top: 11rem !important;
  bottom: 11rem !important;
}

.u-inset-x-44{
  right: 11rem !important;
  left: 11rem !important;
}

.u-inset-y-48{
  top: 12rem !important;
  bottom: 12rem !important;
}

.u-inset-x-48{
  right: 12rem !important;
  left: 12rem !important;
}

.u-inset-y-52{
  top: 13rem !important;
  bottom: 13rem !important;
}

.u-inset-x-52{
  right: 13rem !important;
  left: 13rem !important;
}

.u-inset-y-56{
  top: 14rem !important;
  bottom: 14rem !important;
}

.u-inset-x-56{
  right: 14rem !important;
  left: 14rem !important;
}

.u-inset-y-60{
  top: 15rem !important;
  bottom: 15rem !important;
}

.u-inset-x-60{
  right: 15rem !important;
  left: 15rem !important;
}

.u-inset-y-64{
  top: 16rem !important;
  bottom: 16rem !important;
}

.u-inset-x-64{
  right: 16rem !important;
  left: 16rem !important;
}

.u-inset-y-72{
  top: 18rem !important;
  bottom: 18rem !important;
}

.u-inset-x-72{
  right: 18rem !important;
  left: 18rem !important;
}

.u-inset-y-80{
  top: 20rem !important;
  bottom: 20rem !important;
}

.u-inset-x-80{
  right: 20rem !important;
  left: 20rem !important;
}

.u-inset-y-96{
  top: 24rem !important;
  bottom: 24rem !important;
}

.u-inset-x-96{
  right: 24rem !important;
  left: 24rem !important;
}

.u-inset-y-auto{
  top: auto !important;
  bottom: auto !important;
}

.u-inset-x-auto{
  right: auto !important;
  left: auto !important;
}

.u-inset-y-px{
  top: 1px !important;
  bottom: 1px !important;
}

.u-inset-x-px{
  right: 1px !important;
  left: 1px !important;
}

.u-inset-y-0\.5{
  top: 0.125rem !important;
  bottom: 0.125rem !important;
}

.u-inset-x-0\.5{
  right: 0.125rem !important;
  left: 0.125rem !important;
}

.u-inset-y-1\.5{
  top: 0.375rem !important;
  bottom: 0.375rem !important;
}

.u-inset-x-1\.5{
  right: 0.375rem !important;
  left: 0.375rem !important;
}

.u-inset-y-2\.5{
  top: 0.625rem !important;
  bottom: 0.625rem !important;
}

.u-inset-x-2\.5{
  right: 0.625rem !important;
  left: 0.625rem !important;
}

.u-inset-y-3\.5{
  top: 0.875rem !important;
  bottom: 0.875rem !important;
}

.u-inset-x-3\.5{
  right: 0.875rem !important;
  left: 0.875rem !important;
}

.u--inset-y-0{
  top: 0px !important;
  bottom: 0px !important;
}

.u--inset-x-0{
  right: 0px !important;
  left: 0px !important;
}

.u--inset-y-1{
  top: -0.25rem !important;
  bottom: -0.25rem !important;
}

.u--inset-x-1{
  right: -0.25rem !important;
  left: -0.25rem !important;
}

.u--inset-y-2{
  top: -0.5rem !important;
  bottom: -0.5rem !important;
}

.u--inset-x-2{
  right: -0.5rem !important;
  left: -0.5rem !important;
}

.u--inset-y-3{
  top: -0.75rem !important;
  bottom: -0.75rem !important;
}

.u--inset-x-3{
  right: -0.75rem !important;
  left: -0.75rem !important;
}

.u--inset-y-4{
  top: -1rem !important;
  bottom: -1rem !important;
}

.u--inset-x-4{
  right: -1rem !important;
  left: -1rem !important;
}

.u--inset-y-5{
  top: -1.25rem !important;
  bottom: -1.25rem !important;
}

.u--inset-x-5{
  right: -1.25rem !important;
  left: -1.25rem !important;
}

.u--inset-y-6{
  top: -1.5rem !important;
  bottom: -1.5rem !important;
}

.u--inset-x-6{
  right: -1.5rem !important;
  left: -1.5rem !important;
}

.u--inset-y-7{
  top: -1.75rem !important;
  bottom: -1.75rem !important;
}

.u--inset-x-7{
  right: -1.75rem !important;
  left: -1.75rem !important;
}

.u--inset-y-8{
  top: -2rem !important;
  bottom: -2rem !important;
}

.u--inset-x-8{
  right: -2rem !important;
  left: -2rem !important;
}

.u--inset-y-9{
  top: -2.25rem !important;
  bottom: -2.25rem !important;
}

.u--inset-x-9{
  right: -2.25rem !important;
  left: -2.25rem !important;
}

.u--inset-y-10{
  top: -2.5rem !important;
  bottom: -2.5rem !important;
}

.u--inset-x-10{
  right: -2.5rem !important;
  left: -2.5rem !important;
}

.u--inset-y-11{
  top: -2.75rem !important;
  bottom: -2.75rem !important;
}

.u--inset-x-11{
  right: -2.75rem !important;
  left: -2.75rem !important;
}

.u--inset-y-12{
  top: -3rem !important;
  bottom: -3rem !important;
}

.u--inset-x-12{
  right: -3rem !important;
  left: -3rem !important;
}

.u--inset-y-14{
  top: -3.5rem !important;
  bottom: -3.5rem !important;
}

.u--inset-x-14{
  right: -3.5rem !important;
  left: -3.5rem !important;
}

.u--inset-y-16{
  top: -4rem !important;
  bottom: -4rem !important;
}

.u--inset-x-16{
  right: -4rem !important;
  left: -4rem !important;
}

.u--inset-y-20{
  top: -5rem !important;
  bottom: -5rem !important;
}

.u--inset-x-20{
  right: -5rem !important;
  left: -5rem !important;
}

.u--inset-y-24{
  top: -6rem !important;
  bottom: -6rem !important;
}

.u--inset-x-24{
  right: -6rem !important;
  left: -6rem !important;
}

.u--inset-y-28{
  top: -7rem !important;
  bottom: -7rem !important;
}

.u--inset-x-28{
  right: -7rem !important;
  left: -7rem !important;
}

.u--inset-y-32{
  top: -8rem !important;
  bottom: -8rem !important;
}

.u--inset-x-32{
  right: -8rem !important;
  left: -8rem !important;
}

.u--inset-y-36{
  top: -9rem !important;
  bottom: -9rem !important;
}

.u--inset-x-36{
  right: -9rem !important;
  left: -9rem !important;
}

.u--inset-y-40{
  top: -10rem !important;
  bottom: -10rem !important;
}

.u--inset-x-40{
  right: -10rem !important;
  left: -10rem !important;
}

.u--inset-y-44{
  top: -11rem !important;
  bottom: -11rem !important;
}

.u--inset-x-44{
  right: -11rem !important;
  left: -11rem !important;
}

.u--inset-y-48{
  top: -12rem !important;
  bottom: -12rem !important;
}

.u--inset-x-48{
  right: -12rem !important;
  left: -12rem !important;
}

.u--inset-y-52{
  top: -13rem !important;
  bottom: -13rem !important;
}

.u--inset-x-52{
  right: -13rem !important;
  left: -13rem !important;
}

.u--inset-y-56{
  top: -14rem !important;
  bottom: -14rem !important;
}

.u--inset-x-56{
  right: -14rem !important;
  left: -14rem !important;
}

.u--inset-y-60{
  top: -15rem !important;
  bottom: -15rem !important;
}

.u--inset-x-60{
  right: -15rem !important;
  left: -15rem !important;
}

.u--inset-y-64{
  top: -16rem !important;
  bottom: -16rem !important;
}

.u--inset-x-64{
  right: -16rem !important;
  left: -16rem !important;
}

.u--inset-y-72{
  top: -18rem !important;
  bottom: -18rem !important;
}

.u--inset-x-72{
  right: -18rem !important;
  left: -18rem !important;
}

.u--inset-y-80{
  top: -20rem !important;
  bottom: -20rem !important;
}

.u--inset-x-80{
  right: -20rem !important;
  left: -20rem !important;
}

.u--inset-y-96{
  top: -24rem !important;
  bottom: -24rem !important;
}

.u--inset-x-96{
  right: -24rem !important;
  left: -24rem !important;
}

.u--inset-y-px{
  top: -1px !important;
  bottom: -1px !important;
}

.u--inset-x-px{
  right: -1px !important;
  left: -1px !important;
}

.u--inset-y-0\.5{
  top: -0.125rem !important;
  bottom: -0.125rem !important;
}

.u--inset-x-0\.5{
  right: -0.125rem !important;
  left: -0.125rem !important;
}

.u--inset-y-1\.5{
  top: -0.375rem !important;
  bottom: -0.375rem !important;
}

.u--inset-x-1\.5{
  right: -0.375rem !important;
  left: -0.375rem !important;
}

.u--inset-y-2\.5{
  top: -0.625rem !important;
  bottom: -0.625rem !important;
}

.u--inset-x-2\.5{
  right: -0.625rem !important;
  left: -0.625rem !important;
}

.u--inset-y-3\.5{
  top: -0.875rem !important;
  bottom: -0.875rem !important;
}

.u--inset-x-3\.5{
  right: -0.875rem !important;
  left: -0.875rem !important;
}

.u-inset-y-1\/2{
  top: 50% !important;
  bottom: 50% !important;
}

.u-inset-x-1\/2{
  right: 50% !important;
  left: 50% !important;
}

.u-inset-y-1\/3{
  top: 33.333333% !important;
  bottom: 33.333333% !important;
}

.u-inset-x-1\/3{
  right: 33.333333% !important;
  left: 33.333333% !important;
}

.u-inset-y-2\/3{
  top: 66.666667% !important;
  bottom: 66.666667% !important;
}

.u-inset-x-2\/3{
  right: 66.666667% !important;
  left: 66.666667% !important;
}

.u-inset-y-1\/4{
  top: 25% !important;
  bottom: 25% !important;
}

.u-inset-x-1\/4{
  right: 25% !important;
  left: 25% !important;
}

.u-inset-y-2\/4{
  top: 50% !important;
  bottom: 50% !important;
}

.u-inset-x-2\/4{
  right: 50% !important;
  left: 50% !important;
}

.u-inset-y-3\/4{
  top: 75% !important;
  bottom: 75% !important;
}

.u-inset-x-3\/4{
  right: 75% !important;
  left: 75% !important;
}

.u-inset-y-full{
  top: 100% !important;
  bottom: 100% !important;
}

.u-inset-x-full{
  right: 100% !important;
  left: 100% !important;
}

.u--inset-y-1\/2{
  top: -50% !important;
  bottom: -50% !important;
}

.u--inset-x-1\/2{
  right: -50% !important;
  left: -50% !important;
}

.u--inset-y-1\/3{
  top: -33.333333% !important;
  bottom: -33.333333% !important;
}

.u--inset-x-1\/3{
  right: -33.333333% !important;
  left: -33.333333% !important;
}

.u--inset-y-2\/3{
  top: -66.666667% !important;
  bottom: -66.666667% !important;
}

.u--inset-x-2\/3{
  right: -66.666667% !important;
  left: -66.666667% !important;
}

.u--inset-y-1\/4{
  top: -25% !important;
  bottom: -25% !important;
}

.u--inset-x-1\/4{
  right: -25% !important;
  left: -25% !important;
}

.u--inset-y-2\/4{
  top: -50% !important;
  bottom: -50% !important;
}

.u--inset-x-2\/4{
  right: -50% !important;
  left: -50% !important;
}

.u--inset-y-3\/4{
  top: -75% !important;
  bottom: -75% !important;
}

.u--inset-x-3\/4{
  right: -75% !important;
  left: -75% !important;
}

.u--inset-y-full{
  top: -100% !important;
  bottom: -100% !important;
}

.u--inset-x-full{
  right: -100% !important;
  left: -100% !important;
}

.u-top-0{
  top: 0px !important;
}

.u-right-0{
  right: 0px !important;
}

.u-bottom-0{
  bottom: 0px !important;
}

.u-left-0{
  left: 0px !important;
}

.u-top-1{
  top: 0.25rem !important;
}

.u-right-1{
  right: 0.25rem !important;
}

.u-bottom-1{
  bottom: 0.25rem !important;
}

.u-left-1{
  left: 0.25rem !important;
}

.u-top-2{
  top: 0.5rem !important;
}

.u-right-2{
  right: 0.5rem !important;
}

.u-bottom-2{
  bottom: 0.5rem !important;
}

.u-left-2{
  left: 0.5rem !important;
}

.u-top-3{
  top: 0.75rem !important;
}

.u-right-3{
  right: 0.75rem !important;
}

.u-bottom-3{
  bottom: 0.75rem !important;
}

.u-left-3{
  left: 0.75rem !important;
}

.u-top-4{
  top: 1rem !important;
}

.u-right-4{
  right: 1rem !important;
}

.u-bottom-4{
  bottom: 1rem !important;
}

.u-left-4{
  left: 1rem !important;
}

.u-top-5{
  top: 1.25rem !important;
}

.u-right-5{
  right: 1.25rem !important;
}

.u-bottom-5{
  bottom: 1.25rem !important;
}

.u-left-5{
  left: 1.25rem !important;
}

.u-top-6{
  top: 1.5rem !important;
}

.u-right-6{
  right: 1.5rem !important;
}

.u-bottom-6{
  bottom: 1.5rem !important;
}

.u-left-6{
  left: 1.5rem !important;
}

.u-top-7{
  top: 1.75rem !important;
}

.u-right-7{
  right: 1.75rem !important;
}

.u-bottom-7{
  bottom: 1.75rem !important;
}

.u-left-7{
  left: 1.75rem !important;
}

.u-top-8{
  top: 2rem !important;
}

.u-right-8{
  right: 2rem !important;
}

.u-bottom-8{
  bottom: 2rem !important;
}

.u-left-8{
  left: 2rem !important;
}

.u-top-9{
  top: 2.25rem !important;
}

.u-right-9{
  right: 2.25rem !important;
}

.u-bottom-9{
  bottom: 2.25rem !important;
}

.u-left-9{
  left: 2.25rem !important;
}

.u-top-10{
  top: 2.5rem !important;
}

.u-right-10{
  right: 2.5rem !important;
}

.u-bottom-10{
  bottom: 2.5rem !important;
}

.u-left-10{
  left: 2.5rem !important;
}

.u-top-11{
  top: 2.75rem !important;
}

.u-right-11{
  right: 2.75rem !important;
}

.u-bottom-11{
  bottom: 2.75rem !important;
}

.u-left-11{
  left: 2.75rem !important;
}

.u-top-12{
  top: 3rem !important;
}

.u-right-12{
  right: 3rem !important;
}

.u-bottom-12{
  bottom: 3rem !important;
}

.u-left-12{
  left: 3rem !important;
}

.u-top-14{
  top: 3.5rem !important;
}

.u-right-14{
  right: 3.5rem !important;
}

.u-bottom-14{
  bottom: 3.5rem !important;
}

.u-left-14{
  left: 3.5rem !important;
}

.u-top-16{
  top: 4rem !important;
}

.u-right-16{
  right: 4rem !important;
}

.u-bottom-16{
  bottom: 4rem !important;
}

.u-left-16{
  left: 4rem !important;
}

.u-top-20{
  top: 5rem !important;
}

.u-right-20{
  right: 5rem !important;
}

.u-bottom-20{
  bottom: 5rem !important;
}

.u-left-20{
  left: 5rem !important;
}

.u-top-24{
  top: 6rem !important;
}

.u-right-24{
  right: 6rem !important;
}

.u-bottom-24{
  bottom: 6rem !important;
}

.u-left-24{
  left: 6rem !important;
}

.u-top-28{
  top: 7rem !important;
}

.u-right-28{
  right: 7rem !important;
}

.u-bottom-28{
  bottom: 7rem !important;
}

.u-left-28{
  left: 7rem !important;
}

.u-top-32{
  top: 8rem !important;
}

.u-right-32{
  right: 8rem !important;
}

.u-bottom-32{
  bottom: 8rem !important;
}

.u-left-32{
  left: 8rem !important;
}

.u-top-36{
  top: 9rem !important;
}

.u-right-36{
  right: 9rem !important;
}

.u-bottom-36{
  bottom: 9rem !important;
}

.u-left-36{
  left: 9rem !important;
}

.u-top-40{
  top: 10rem !important;
}

.u-right-40{
  right: 10rem !important;
}

.u-bottom-40{
  bottom: 10rem !important;
}

.u-left-40{
  left: 10rem !important;
}

.u-top-44{
  top: 11rem !important;
}

.u-right-44{
  right: 11rem !important;
}

.u-bottom-44{
  bottom: 11rem !important;
}

.u-left-44{
  left: 11rem !important;
}

.u-top-48{
  top: 12rem !important;
}

.u-right-48{
  right: 12rem !important;
}

.u-bottom-48{
  bottom: 12rem !important;
}

.u-left-48{
  left: 12rem !important;
}

.u-top-52{
  top: 13rem !important;
}

.u-right-52{
  right: 13rem !important;
}

.u-bottom-52{
  bottom: 13rem !important;
}

.u-left-52{
  left: 13rem !important;
}

.u-top-56{
  top: 14rem !important;
}

.u-right-56{
  right: 14rem !important;
}

.u-bottom-56{
  bottom: 14rem !important;
}

.u-left-56{
  left: 14rem !important;
}

.u-top-60{
  top: 15rem !important;
}

.u-right-60{
  right: 15rem !important;
}

.u-bottom-60{
  bottom: 15rem !important;
}

.u-left-60{
  left: 15rem !important;
}

.u-top-64{
  top: 16rem !important;
}

.u-right-64{
  right: 16rem !important;
}

.u-bottom-64{
  bottom: 16rem !important;
}

.u-left-64{
  left: 16rem !important;
}

.u-top-72{
  top: 18rem !important;
}

.u-right-72{
  right: 18rem !important;
}

.u-bottom-72{
  bottom: 18rem !important;
}

.u-left-72{
  left: 18rem !important;
}

.u-top-80{
  top: 20rem !important;
}

.u-right-80{
  right: 20rem !important;
}

.u-bottom-80{
  bottom: 20rem !important;
}

.u-left-80{
  left: 20rem !important;
}

.u-top-96{
  top: 24rem !important;
}

.u-right-96{
  right: 24rem !important;
}

.u-bottom-96{
  bottom: 24rem !important;
}

.u-left-96{
  left: 24rem !important;
}

.u-top-auto{
  top: auto !important;
}

.u-right-auto{
  right: auto !important;
}

.u-bottom-auto{
  bottom: auto !important;
}

.u-left-auto{
  left: auto !important;
}

.u-top-px{
  top: 1px !important;
}

.u-right-px{
  right: 1px !important;
}

.u-bottom-px{
  bottom: 1px !important;
}

.u-left-px{
  left: 1px !important;
}

.u-top-0\.5{
  top: 0.125rem !important;
}

.u-right-0\.5{
  right: 0.125rem !important;
}

.u-bottom-0\.5{
  bottom: 0.125rem !important;
}

.u-left-0\.5{
  left: 0.125rem !important;
}

.u-top-1\.5{
  top: 0.375rem !important;
}

.u-right-1\.5{
  right: 0.375rem !important;
}

.u-bottom-1\.5{
  bottom: 0.375rem !important;
}

.u-left-1\.5{
  left: 0.375rem !important;
}

.u-top-2\.5{
  top: 0.625rem !important;
}

.u-right-2\.5{
  right: 0.625rem !important;
}

.u-bottom-2\.5{
  bottom: 0.625rem !important;
}

.u-left-2\.5{
  left: 0.625rem !important;
}

.u-top-3\.5{
  top: 0.875rem !important;
}

.u-right-3\.5{
  right: 0.875rem !important;
}

.u-bottom-3\.5{
  bottom: 0.875rem !important;
}

.u-left-3\.5{
  left: 0.875rem !important;
}

.u--top-0{
  top: 0px !important;
}

.u--right-0{
  right: 0px !important;
}

.u--bottom-0{
  bottom: 0px !important;
}

.u--left-0{
  left: 0px !important;
}

.u--top-1{
  top: -0.25rem !important;
}

.u--right-1{
  right: -0.25rem !important;
}

.u--bottom-1{
  bottom: -0.25rem !important;
}

.u--left-1{
  left: -0.25rem !important;
}

.u--top-2{
  top: -0.5rem !important;
}

.u--right-2{
  right: -0.5rem !important;
}

.u--bottom-2{
  bottom: -0.5rem !important;
}

.u--left-2{
  left: -0.5rem !important;
}

.u--top-3{
  top: -0.75rem !important;
}

.u--right-3{
  right: -0.75rem !important;
}

.u--bottom-3{
  bottom: -0.75rem !important;
}

.u--left-3{
  left: -0.75rem !important;
}

.u--top-4{
  top: -1rem !important;
}

.u--right-4{
  right: -1rem !important;
}

.u--bottom-4{
  bottom: -1rem !important;
}

.u--left-4{
  left: -1rem !important;
}

.u--top-5{
  top: -1.25rem !important;
}

.u--right-5{
  right: -1.25rem !important;
}

.u--bottom-5{
  bottom: -1.25rem !important;
}

.u--left-5{
  left: -1.25rem !important;
}

.u--top-6{
  top: -1.5rem !important;
}

.u--right-6{
  right: -1.5rem !important;
}

.u--bottom-6{
  bottom: -1.5rem !important;
}

.u--left-6{
  left: -1.5rem !important;
}

.u--top-7{
  top: -1.75rem !important;
}

.u--right-7{
  right: -1.75rem !important;
}

.u--bottom-7{
  bottom: -1.75rem !important;
}

.u--left-7{
  left: -1.75rem !important;
}

.u--top-8{
  top: -2rem !important;
}

.u--right-8{
  right: -2rem !important;
}

.u--bottom-8{
  bottom: -2rem !important;
}

.u--left-8{
  left: -2rem !important;
}

.u--top-9{
  top: -2.25rem !important;
}

.u--right-9{
  right: -2.25rem !important;
}

.u--bottom-9{
  bottom: -2.25rem !important;
}

.u--left-9{
  left: -2.25rem !important;
}

.u--top-10{
  top: -2.5rem !important;
}

.u--right-10{
  right: -2.5rem !important;
}

.u--bottom-10{
  bottom: -2.5rem !important;
}

.u--left-10{
  left: -2.5rem !important;
}

.u--top-11{
  top: -2.75rem !important;
}

.u--right-11{
  right: -2.75rem !important;
}

.u--bottom-11{
  bottom: -2.75rem !important;
}

.u--left-11{
  left: -2.75rem !important;
}

.u--top-12{
  top: -3rem !important;
}

.u--right-12{
  right: -3rem !important;
}

.u--bottom-12{
  bottom: -3rem !important;
}

.u--left-12{
  left: -3rem !important;
}

.u--top-14{
  top: -3.5rem !important;
}

.u--right-14{
  right: -3.5rem !important;
}

.u--bottom-14{
  bottom: -3.5rem !important;
}

.u--left-14{
  left: -3.5rem !important;
}

.u--top-16{
  top: -4rem !important;
}

.u--right-16{
  right: -4rem !important;
}

.u--bottom-16{
  bottom: -4rem !important;
}

.u--left-16{
  left: -4rem !important;
}

.u--top-20{
  top: -5rem !important;
}

.u--right-20{
  right: -5rem !important;
}

.u--bottom-20{
  bottom: -5rem !important;
}

.u--left-20{
  left: -5rem !important;
}

.u--top-24{
  top: -6rem !important;
}

.u--right-24{
  right: -6rem !important;
}

.u--bottom-24{
  bottom: -6rem !important;
}

.u--left-24{
  left: -6rem !important;
}

.u--top-28{
  top: -7rem !important;
}

.u--right-28{
  right: -7rem !important;
}

.u--bottom-28{
  bottom: -7rem !important;
}

.u--left-28{
  left: -7rem !important;
}

.u--top-32{
  top: -8rem !important;
}

.u--right-32{
  right: -8rem !important;
}

.u--bottom-32{
  bottom: -8rem !important;
}

.u--left-32{
  left: -8rem !important;
}

.u--top-36{
  top: -9rem !important;
}

.u--right-36{
  right: -9rem !important;
}

.u--bottom-36{
  bottom: -9rem !important;
}

.u--left-36{
  left: -9rem !important;
}

.u--top-40{
  top: -10rem !important;
}

.u--right-40{
  right: -10rem !important;
}

.u--bottom-40{
  bottom: -10rem !important;
}

.u--left-40{
  left: -10rem !important;
}

.u--top-44{
  top: -11rem !important;
}

.u--right-44{
  right: -11rem !important;
}

.u--bottom-44{
  bottom: -11rem !important;
}

.u--left-44{
  left: -11rem !important;
}

.u--top-48{
  top: -12rem !important;
}

.u--right-48{
  right: -12rem !important;
}

.u--bottom-48{
  bottom: -12rem !important;
}

.u--left-48{
  left: -12rem !important;
}

.u--top-52{
  top: -13rem !important;
}

.u--right-52{
  right: -13rem !important;
}

.u--bottom-52{
  bottom: -13rem !important;
}

.u--left-52{
  left: -13rem !important;
}

.u--top-56{
  top: -14rem !important;
}

.u--right-56{
  right: -14rem !important;
}

.u--bottom-56{
  bottom: -14rem !important;
}

.u--left-56{
  left: -14rem !important;
}

.u--top-60{
  top: -15rem !important;
}

.u--right-60{
  right: -15rem !important;
}

.u--bottom-60{
  bottom: -15rem !important;
}

.u--left-60{
  left: -15rem !important;
}

.u--top-64{
  top: -16rem !important;
}

.u--right-64{
  right: -16rem !important;
}

.u--bottom-64{
  bottom: -16rem !important;
}

.u--left-64{
  left: -16rem !important;
}

.u--top-72{
  top: -18rem !important;
}

.u--right-72{
  right: -18rem !important;
}

.u--bottom-72{
  bottom: -18rem !important;
}

.u--left-72{
  left: -18rem !important;
}

.u--top-80{
  top: -20rem !important;
}

.u--right-80{
  right: -20rem !important;
}

.u--bottom-80{
  bottom: -20rem !important;
}

.u--left-80{
  left: -20rem !important;
}

.u--top-96{
  top: -24rem !important;
}

.u--right-96{
  right: -24rem !important;
}

.u--bottom-96{
  bottom: -24rem !important;
}

.u--left-96{
  left: -24rem !important;
}

.u--top-px{
  top: -1px !important;
}

.u--right-px{
  right: -1px !important;
}

.u--bottom-px{
  bottom: -1px !important;
}

.u--left-px{
  left: -1px !important;
}

.u--top-0\.5{
  top: -0.125rem !important;
}

.u--right-0\.5{
  right: -0.125rem !important;
}

.u--bottom-0\.5{
  bottom: -0.125rem !important;
}

.u--left-0\.5{
  left: -0.125rem !important;
}

.u--top-1\.5{
  top: -0.375rem !important;
}

.u--right-1\.5{
  right: -0.375rem !important;
}

.u--bottom-1\.5{
  bottom: -0.375rem !important;
}

.u--left-1\.5{
  left: -0.375rem !important;
}

.u--top-2\.5{
  top: -0.625rem !important;
}

.u--right-2\.5{
  right: -0.625rem !important;
}

.u--bottom-2\.5{
  bottom: -0.625rem !important;
}

.u--left-2\.5{
  left: -0.625rem !important;
}

.u--top-3\.5{
  top: -0.875rem !important;
}

.u--right-3\.5{
  right: -0.875rem !important;
}

.u--bottom-3\.5{
  bottom: -0.875rem !important;
}

.u--left-3\.5{
  left: -0.875rem !important;
}

.u-top-1\/2{
  top: 50% !important;
}

.u-right-1\/2{
  right: 50% !important;
}

.u-bottom-1\/2{
  bottom: 50% !important;
}

.u-left-1\/2{
  left: 50% !important;
}

.u-top-1\/3{
  top: 33.333333% !important;
}

.u-right-1\/3{
  right: 33.333333% !important;
}

.u-bottom-1\/3{
  bottom: 33.333333% !important;
}

.u-left-1\/3{
  left: 33.333333% !important;
}

.u-top-2\/3{
  top: 66.666667% !important;
}

.u-right-2\/3{
  right: 66.666667% !important;
}

.u-bottom-2\/3{
  bottom: 66.666667% !important;
}

.u-left-2\/3{
  left: 66.666667% !important;
}

.u-top-1\/4{
  top: 25% !important;
}

.u-right-1\/4{
  right: 25% !important;
}

.u-bottom-1\/4{
  bottom: 25% !important;
}

.u-left-1\/4{
  left: 25% !important;
}

.u-top-2\/4{
  top: 50% !important;
}

.u-right-2\/4{
  right: 50% !important;
}

.u-bottom-2\/4{
  bottom: 50% !important;
}

.u-left-2\/4{
  left: 50% !important;
}

.u-top-3\/4{
  top: 75% !important;
}

.u-right-3\/4{
  right: 75% !important;
}

.u-bottom-3\/4{
  bottom: 75% !important;
}

.u-left-3\/4{
  left: 75% !important;
}

.u-top-full{
  top: 100% !important;
}

.u-right-full{
  right: 100% !important;
}

.u-bottom-full{
  bottom: 100% !important;
}

.u-left-full{
  left: 100% !important;
}

.u--top-1\/2{
  top: -50% !important;
}

.u--right-1\/2{
  right: -50% !important;
}

.u--bottom-1\/2{
  bottom: -50% !important;
}

.u--left-1\/2{
  left: -50% !important;
}

.u--top-1\/3{
  top: -33.333333% !important;
}

.u--right-1\/3{
  right: -33.333333% !important;
}

.u--bottom-1\/3{
  bottom: -33.333333% !important;
}

.u--left-1\/3{
  left: -33.333333% !important;
}

.u--top-2\/3{
  top: -66.666667% !important;
}

.u--right-2\/3{
  right: -66.666667% !important;
}

.u--bottom-2\/3{
  bottom: -66.666667% !important;
}

.u--left-2\/3{
  left: -66.666667% !important;
}

.u--top-1\/4{
  top: -25% !important;
}

.u--right-1\/4{
  right: -25% !important;
}

.u--bottom-1\/4{
  bottom: -25% !important;
}

.u--left-1\/4{
  left: -25% !important;
}

.u--top-2\/4{
  top: -50% !important;
}

.u--right-2\/4{
  right: -50% !important;
}

.u--bottom-2\/4{
  bottom: -50% !important;
}

.u--left-2\/4{
  left: -50% !important;
}

.u--top-3\/4{
  top: -75% !important;
}

.u--right-3\/4{
  right: -75% !important;
}

.u--bottom-3\/4{
  bottom: -75% !important;
}

.u--left-3\/4{
  left: -75% !important;
}

.u--top-full{
  top: -100% !important;
}

.u--right-full{
  right: -100% !important;
}

.u--bottom-full{
  bottom: -100% !important;
}

.u--left-full{
  left: -100% !important;
}

.u-resize-none{
  resize: none !important;
}

.u-resize-y{
  resize: vertical !important;
}

.u-resize-x{
  resize: horizontal !important;
}

.u-resize{
  resize: both !important;
}

*{
  --tw-shadow: 0 0 #0000;
}

.u-shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-inner{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-none{
  --tw-shadow: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-shadow-3xl{
  --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-md{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-lg{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-xl{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-inner{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-none{
  --tw-shadow: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.u-group:hover .group-hover\:u-shadow-3xl{
  --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-sm:focus-within{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow:focus-within{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-md:focus-within{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-lg:focus-within{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-xl:focus-within{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-2xl:focus-within{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-inner:focus-within{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-none:focus-within{
  --tw-shadow: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus-within\:u-shadow-3xl:focus-within{
  --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-sm:hover{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow:hover{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-md:hover{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-lg:hover{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-xl:hover{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-2xl:hover{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-inner:hover{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-none:hover{
  --tw-shadow: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.hover\:u-shadow-3xl:hover{
  --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-sm:focus{
  --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow:focus{
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-md:focus{
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-lg:focus{
  --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-xl:focus{
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-2xl:focus{
  --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-inner:focus{
  --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-none:focus{
  --tw-shadow: 0 0 #0000 !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

.focus\:u-shadow-3xl:focus{
  --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
}

*{
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.u-ring-0{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.u-ring-1{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.u-ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.u-ring-4{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.u-ring-8{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.u-ring{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.u-ring-inset{
  --tw-ring-inset: inset !important;
}

.focus-within\:u-ring-0:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus-within\:u-ring-1:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus-within\:u-ring-2:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus-within\:u-ring-4:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus-within\:u-ring-8:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus-within\:u-ring:focus-within{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus-within\:u-ring-inset:focus-within{
  --tw-ring-inset: inset !important;
}

.focus\:u-ring-0:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:u-ring-1:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:u-ring-2:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:u-ring-4:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:u-ring-8:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:u-ring:focus{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
}

.focus\:u-ring-inset:focus{
  --tw-ring-inset: inset !important;
}

.u-ring-offset-black{
  --tw-ring-offset-color: #000 !important;
}

.u-ring-offset-white{
  --tw-ring-offset-color: #fff !important;
}

.u-ring-offset-faded{
  --tw-ring-offset-color: #818181 !important;
}

.u-ring-offset-transparent{
  --tw-ring-offset-color: transparent !important;
}

.u-ring-offset-neutral-1{
  --tw-ring-offset-color: #FFFFFF !important;
}

.u-ring-offset-neutral-10{
  --tw-ring-offset-color: #F7F7F7 !important;
}

.u-ring-offset-neutral-15{
  --tw-ring-offset-color: #F2F2F2 !important;
}

.u-ring-offset-neutral-20{
  --tw-ring-offset-color: #e3e3e3 !important;
}

.u-ring-offset-neutral-30{
  --tw-ring-offset-color: #D9D9D9 !important;
}

.u-ring-offset-neutral-40{
  --tw-ring-offset-color: #C1C1C1 !important;
}

.u-ring-offset-neutral-45{
  --tw-ring-offset-color: #494949 !important;
}

.u-ring-offset-neutral-50{
  --tw-ring-offset-color: #2d2d2d !important;
}

.u-ring-offset-neutral-60{
  --tw-ring-offset-color: #000000 !important;
}

.u-ring-offset-primary-0{
  --tw-ring-offset-color: #FAFCFE !important;
}

.u-ring-offset-primary-10{
  --tw-ring-offset-color: #BEDDF2 !important;
}

.u-ring-offset-primary-20{
  --tw-ring-offset-color: #83BEE6 !important;
}

.u-ring-offset-primary-30{
  --tw-ring-offset-color: #489FDA !important;
}

.u-ring-offset-primary-40{
  --tw-ring-offset-color: #257BB5 !important;
}

.u-ring-offset-primary-50{
  --tw-ring-offset-color: #1C5E8B !important;
}

.u-ring-offset-primary-60{
  --tw-ring-offset-color: #144160 !important;
}

.u-ring-offset-secundary-0{
  --tw-ring-offset-color: #F6FCF6 !important;
}

.u-ring-offset-secundary-10{
  --tw-ring-offset-color: #C4EAC1 !important;
}

.u-ring-offset-secundary-20{
  --tw-ring-offset-color: #93D78B !important;
}

.u-ring-offset-secundary-30{
  --tw-ring-offset-color: #61C556 !important;
}

.u-ring-offset-secundary-40{
  --tw-ring-offset-color: #409E36 !important;
}

.u-ring-offset-secundary-50{
  --tw-ring-offset-color: #317829 !important;
}

.u-ring-offset-secundary-60{
  --tw-ring-offset-color: #21521C !important;
}

.u-ring-offset-success{
  --tw-ring-offset-color: #296A33 !important;
}

.u-ring-offset-danger{
  --tw-ring-offset-color: #FD6262 !important;
}

.focus-within\:u-ring-offset-black:focus-within{
  --tw-ring-offset-color: #000 !important;
}

.focus-within\:u-ring-offset-white:focus-within{
  --tw-ring-offset-color: #fff !important;
}

.focus-within\:u-ring-offset-faded:focus-within{
  --tw-ring-offset-color: #818181 !important;
}

.focus-within\:u-ring-offset-transparent:focus-within{
  --tw-ring-offset-color: transparent !important;
}

.focus-within\:u-ring-offset-neutral-1:focus-within{
  --tw-ring-offset-color: #FFFFFF !important;
}

.focus-within\:u-ring-offset-neutral-10:focus-within{
  --tw-ring-offset-color: #F7F7F7 !important;
}

.focus-within\:u-ring-offset-neutral-15:focus-within{
  --tw-ring-offset-color: #F2F2F2 !important;
}

.focus-within\:u-ring-offset-neutral-20:focus-within{
  --tw-ring-offset-color: #e3e3e3 !important;
}

.focus-within\:u-ring-offset-neutral-30:focus-within{
  --tw-ring-offset-color: #D9D9D9 !important;
}

.focus-within\:u-ring-offset-neutral-40:focus-within{
  --tw-ring-offset-color: #C1C1C1 !important;
}

.focus-within\:u-ring-offset-neutral-45:focus-within{
  --tw-ring-offset-color: #494949 !important;
}

.focus-within\:u-ring-offset-neutral-50:focus-within{
  --tw-ring-offset-color: #2d2d2d !important;
}

.focus-within\:u-ring-offset-neutral-60:focus-within{
  --tw-ring-offset-color: #000000 !important;
}

.focus-within\:u-ring-offset-primary-0:focus-within{
  --tw-ring-offset-color: #FAFCFE !important;
}

.focus-within\:u-ring-offset-primary-10:focus-within{
  --tw-ring-offset-color: #BEDDF2 !important;
}

.focus-within\:u-ring-offset-primary-20:focus-within{
  --tw-ring-offset-color: #83BEE6 !important;
}

.focus-within\:u-ring-offset-primary-30:focus-within{
  --tw-ring-offset-color: #489FDA !important;
}

.focus-within\:u-ring-offset-primary-40:focus-within{
  --tw-ring-offset-color: #257BB5 !important;
}

.focus-within\:u-ring-offset-primary-50:focus-within{
  --tw-ring-offset-color: #1C5E8B !important;
}

.focus-within\:u-ring-offset-primary-60:focus-within{
  --tw-ring-offset-color: #144160 !important;
}

.focus-within\:u-ring-offset-secundary-0:focus-within{
  --tw-ring-offset-color: #F6FCF6 !important;
}

.focus-within\:u-ring-offset-secundary-10:focus-within{
  --tw-ring-offset-color: #C4EAC1 !important;
}

.focus-within\:u-ring-offset-secundary-20:focus-within{
  --tw-ring-offset-color: #93D78B !important;
}

.focus-within\:u-ring-offset-secundary-30:focus-within{
  --tw-ring-offset-color: #61C556 !important;
}

.focus-within\:u-ring-offset-secundary-40:focus-within{
  --tw-ring-offset-color: #409E36 !important;
}

.focus-within\:u-ring-offset-secundary-50:focus-within{
  --tw-ring-offset-color: #317829 !important;
}

.focus-within\:u-ring-offset-secundary-60:focus-within{
  --tw-ring-offset-color: #21521C !important;
}

.focus-within\:u-ring-offset-success:focus-within{
  --tw-ring-offset-color: #296A33 !important;
}

.focus-within\:u-ring-offset-danger:focus-within{
  --tw-ring-offset-color: #FD6262 !important;
}

.focus\:u-ring-offset-black:focus{
  --tw-ring-offset-color: #000 !important;
}

.focus\:u-ring-offset-white:focus{
  --tw-ring-offset-color: #fff !important;
}

.focus\:u-ring-offset-faded:focus{
  --tw-ring-offset-color: #818181 !important;
}

.focus\:u-ring-offset-transparent:focus{
  --tw-ring-offset-color: transparent !important;
}

.focus\:u-ring-offset-neutral-1:focus{
  --tw-ring-offset-color: #FFFFFF !important;
}

.focus\:u-ring-offset-neutral-10:focus{
  --tw-ring-offset-color: #F7F7F7 !important;
}

.focus\:u-ring-offset-neutral-15:focus{
  --tw-ring-offset-color: #F2F2F2 !important;
}

.focus\:u-ring-offset-neutral-20:focus{
  --tw-ring-offset-color: #e3e3e3 !important;
}

.focus\:u-ring-offset-neutral-30:focus{
  --tw-ring-offset-color: #D9D9D9 !important;
}

.focus\:u-ring-offset-neutral-40:focus{
  --tw-ring-offset-color: #C1C1C1 !important;
}

.focus\:u-ring-offset-neutral-45:focus{
  --tw-ring-offset-color: #494949 !important;
}

.focus\:u-ring-offset-neutral-50:focus{
  --tw-ring-offset-color: #2d2d2d !important;
}

.focus\:u-ring-offset-neutral-60:focus{
  --tw-ring-offset-color: #000000 !important;
}

.focus\:u-ring-offset-primary-0:focus{
  --tw-ring-offset-color: #FAFCFE !important;
}

.focus\:u-ring-offset-primary-10:focus{
  --tw-ring-offset-color: #BEDDF2 !important;
}

.focus\:u-ring-offset-primary-20:focus{
  --tw-ring-offset-color: #83BEE6 !important;
}

.focus\:u-ring-offset-primary-30:focus{
  --tw-ring-offset-color: #489FDA !important;
}

.focus\:u-ring-offset-primary-40:focus{
  --tw-ring-offset-color: #257BB5 !important;
}

.focus\:u-ring-offset-primary-50:focus{
  --tw-ring-offset-color: #1C5E8B !important;
}

.focus\:u-ring-offset-primary-60:focus{
  --tw-ring-offset-color: #144160 !important;
}

.focus\:u-ring-offset-secundary-0:focus{
  --tw-ring-offset-color: #F6FCF6 !important;
}

.focus\:u-ring-offset-secundary-10:focus{
  --tw-ring-offset-color: #C4EAC1 !important;
}

.focus\:u-ring-offset-secundary-20:focus{
  --tw-ring-offset-color: #93D78B !important;
}

.focus\:u-ring-offset-secundary-30:focus{
  --tw-ring-offset-color: #61C556 !important;
}

.focus\:u-ring-offset-secundary-40:focus{
  --tw-ring-offset-color: #409E36 !important;
}

.focus\:u-ring-offset-secundary-50:focus{
  --tw-ring-offset-color: #317829 !important;
}

.focus\:u-ring-offset-secundary-60:focus{
  --tw-ring-offset-color: #21521C !important;
}

.focus\:u-ring-offset-success:focus{
  --tw-ring-offset-color: #296A33 !important;
}

.focus\:u-ring-offset-danger:focus{
  --tw-ring-offset-color: #FD6262 !important;
}

.u-ring-offset-0{
  --tw-ring-offset-width: 0px !important;
}

.u-ring-offset-1{
  --tw-ring-offset-width: 1px !important;
}

.u-ring-offset-2{
  --tw-ring-offset-width: 2px !important;
}

.u-ring-offset-4{
  --tw-ring-offset-width: 4px !important;
}

.u-ring-offset-8{
  --tw-ring-offset-width: 8px !important;
}

.focus-within\:u-ring-offset-0:focus-within{
  --tw-ring-offset-width: 0px !important;
}

.focus-within\:u-ring-offset-1:focus-within{
  --tw-ring-offset-width: 1px !important;
}

.focus-within\:u-ring-offset-2:focus-within{
  --tw-ring-offset-width: 2px !important;
}

.focus-within\:u-ring-offset-4:focus-within{
  --tw-ring-offset-width: 4px !important;
}

.focus-within\:u-ring-offset-8:focus-within{
  --tw-ring-offset-width: 8px !important;
}

.focus\:u-ring-offset-0:focus{
  --tw-ring-offset-width: 0px !important;
}

.focus\:u-ring-offset-1:focus{
  --tw-ring-offset-width: 1px !important;
}

.focus\:u-ring-offset-2:focus{
  --tw-ring-offset-width: 2px !important;
}

.focus\:u-ring-offset-4:focus{
  --tw-ring-offset-width: 4px !important;
}

.focus\:u-ring-offset-8:focus{
  --tw-ring-offset-width: 8px !important;
}

.u-ring-black{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.u-ring-white{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.u-ring-faded{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
}

.u-ring-transparent{
  --tw-ring-color: transparent !important;
}

.u-ring-neutral-1{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-10{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-15{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-45{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
}

.u-ring-neutral-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-0{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-10{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
}

.u-ring-primary-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-0{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-10{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-20{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-30{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-40{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-50{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
}

.u-ring-secundary-60{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
}

.u-ring-success{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
}

.u-ring-danger{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-black:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-white:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-faded:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-transparent:focus-within{
  --tw-ring-color: transparent !important;
}

.focus-within\:u-ring-neutral-1:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-10:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-15:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-45:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-neutral-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-0:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-10:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-primary-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-0:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-10:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-20:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-30:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-40:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-50:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-secundary-60:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-success:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
}

.focus-within\:u-ring-danger:focus-within{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-black:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-white:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-faded:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-transparent:focus{
  --tw-ring-color: transparent !important;
}

.focus\:u-ring-neutral-1:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-10:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-15:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-45:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-neutral-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-0:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-10:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-primary-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-0:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-10:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-20:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-30:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-40:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-50:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-secundary-60:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-success:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
}

.focus\:u-ring-danger:focus{
  --tw-ring-opacity: 1 !important;
  --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
}

.u-ring-opacity-0{
  --tw-ring-opacity: 0 !important;
}

.u-ring-opacity-5{
  --tw-ring-opacity: 0.05 !important;
}

.u-ring-opacity-10{
  --tw-ring-opacity: 0.1 !important;
}

.u-ring-opacity-20{
  --tw-ring-opacity: 0.2 !important;
}

.u-ring-opacity-25{
  --tw-ring-opacity: 0.25 !important;
}

.u-ring-opacity-30{
  --tw-ring-opacity: 0.3 !important;
}

.u-ring-opacity-40{
  --tw-ring-opacity: 0.4 !important;
}

.u-ring-opacity-50{
  --tw-ring-opacity: 0.5 !important;
}

.u-ring-opacity-60{
  --tw-ring-opacity: 0.6 !important;
}

.u-ring-opacity-70{
  --tw-ring-opacity: 0.7 !important;
}

.u-ring-opacity-75{
  --tw-ring-opacity: 0.75 !important;
}

.u-ring-opacity-80{
  --tw-ring-opacity: 0.8 !important;
}

.u-ring-opacity-90{
  --tw-ring-opacity: 0.9 !important;
}

.u-ring-opacity-95{
  --tw-ring-opacity: 0.95 !important;
}

.u-ring-opacity-100{
  --tw-ring-opacity: 1 !important;
}

.focus-within\:u-ring-opacity-0:focus-within{
  --tw-ring-opacity: 0 !important;
}

.focus-within\:u-ring-opacity-5:focus-within{
  --tw-ring-opacity: 0.05 !important;
}

.focus-within\:u-ring-opacity-10:focus-within{
  --tw-ring-opacity: 0.1 !important;
}

.focus-within\:u-ring-opacity-20:focus-within{
  --tw-ring-opacity: 0.2 !important;
}

.focus-within\:u-ring-opacity-25:focus-within{
  --tw-ring-opacity: 0.25 !important;
}

.focus-within\:u-ring-opacity-30:focus-within{
  --tw-ring-opacity: 0.3 !important;
}

.focus-within\:u-ring-opacity-40:focus-within{
  --tw-ring-opacity: 0.4 !important;
}

.focus-within\:u-ring-opacity-50:focus-within{
  --tw-ring-opacity: 0.5 !important;
}

.focus-within\:u-ring-opacity-60:focus-within{
  --tw-ring-opacity: 0.6 !important;
}

.focus-within\:u-ring-opacity-70:focus-within{
  --tw-ring-opacity: 0.7 !important;
}

.focus-within\:u-ring-opacity-75:focus-within{
  --tw-ring-opacity: 0.75 !important;
}

.focus-within\:u-ring-opacity-80:focus-within{
  --tw-ring-opacity: 0.8 !important;
}

.focus-within\:u-ring-opacity-90:focus-within{
  --tw-ring-opacity: 0.9 !important;
}

.focus-within\:u-ring-opacity-95:focus-within{
  --tw-ring-opacity: 0.95 !important;
}

.focus-within\:u-ring-opacity-100:focus-within{
  --tw-ring-opacity: 1 !important;
}

.focus\:u-ring-opacity-0:focus{
  --tw-ring-opacity: 0 !important;
}

.focus\:u-ring-opacity-5:focus{
  --tw-ring-opacity: 0.05 !important;
}

.focus\:u-ring-opacity-10:focus{
  --tw-ring-opacity: 0.1 !important;
}

.focus\:u-ring-opacity-20:focus{
  --tw-ring-opacity: 0.2 !important;
}

.focus\:u-ring-opacity-25:focus{
  --tw-ring-opacity: 0.25 !important;
}

.focus\:u-ring-opacity-30:focus{
  --tw-ring-opacity: 0.3 !important;
}

.focus\:u-ring-opacity-40:focus{
  --tw-ring-opacity: 0.4 !important;
}

.focus\:u-ring-opacity-50:focus{
  --tw-ring-opacity: 0.5 !important;
}

.focus\:u-ring-opacity-60:focus{
  --tw-ring-opacity: 0.6 !important;
}

.focus\:u-ring-opacity-70:focus{
  --tw-ring-opacity: 0.7 !important;
}

.focus\:u-ring-opacity-75:focus{
  --tw-ring-opacity: 0.75 !important;
}

.focus\:u-ring-opacity-80:focus{
  --tw-ring-opacity: 0.8 !important;
}

.focus\:u-ring-opacity-90:focus{
  --tw-ring-opacity: 0.9 !important;
}

.focus\:u-ring-opacity-95:focus{
  --tw-ring-opacity: 0.95 !important;
}

.focus\:u-ring-opacity-100:focus{
  --tw-ring-opacity: 1 !important;
}

.u-fill-current{
  fill: currentColor !important;
}

.u-stroke-current{
  stroke: currentColor !important;
}

.u-stroke-0{
  stroke-width: 0 !important;
}

.u-stroke-1{
  stroke-width: 1 !important;
}

.u-stroke-2{
  stroke-width: 2 !important;
}

.u-table-auto{
  table-layout: auto !important;
}

.u-table-fixed{
  table-layout: fixed !important;
}

.u-text-left{
  text-align: left !important;
}

.u-text-center{
  text-align: center !important;
}

.u-text-right{
  text-align: right !important;
}

.u-text-justify{
  text-align: justify !important;
}

.u-text-black{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-text-faded{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.u-text-transparent{
  color: transparent !important;
}

.u-text-neutral-1{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-text-neutral-10{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
}

.u-text-neutral-15{
  --tw-text-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
}

.u-text-neutral-20{
  --tw-text-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
}

.u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

.u-text-neutral-45{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
}

.u-text-neutral-60{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-text-primary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
}

.u-text-primary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
}

.u-text-primary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
}

.u-text-primary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
}

.u-text-primary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
}

.u-text-primary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
}

.u-text-primary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
}

.u-text-secundary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
}

.u-text-secundary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
}

.u-text-secundary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
}

.u-text-secundary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
}

.u-text-secundary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
}

.u-text-secundary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
}

.u-text-secundary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
}

.u-text-success{
  --tw-text-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
}

.u-text-danger{
  --tw-text-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-black{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-white{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-faded{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-transparent{
  color: transparent !important;
}

.u-group:hover .group-hover\:u-text-neutral-1{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-10{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-15{
  --tw-text-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-20{
  --tw-text-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-30{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-40{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-45{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-50{
  --tw-text-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-neutral-60{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-primary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-0{
  --tw-text-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-10{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-20{
  --tw-text-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-30{
  --tw-text-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-40{
  --tw-text-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-50{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-secundary-60{
  --tw-text-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-success{
  --tw-text-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
}

.u-group:hover .group-hover\:u-text-danger{
  --tw-text-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-black:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-white:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-faded:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-transparent:focus-within{
  color: transparent !important;
}

.focus-within\:u-text-neutral-1:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-10:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-15:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-45:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-neutral-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-0:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-10:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-primary-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-0:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-10:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-20:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-30:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-40:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-50:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-secundary-60:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-success:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
}

.focus-within\:u-text-danger:focus-within{
  --tw-text-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
}

.hover\:u-text-black:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.hover\:u-text-white:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.hover\:u-text-faded:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.hover\:u-text-transparent:hover{
  color: transparent !important;
}

.hover\:u-text-neutral-1:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-10:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-15:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-45:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
}

.hover\:u-text-neutral-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-0:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-10:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
}

.hover\:u-text-primary-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-0:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-10:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-20:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-30:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-40:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-50:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
}

.hover\:u-text-secundary-60:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
}

.hover\:u-text-success:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
}

.hover\:u-text-danger:hover{
  --tw-text-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
}

.focus\:u-text-black:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus\:u-text-white:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.focus\:u-text-faded:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
}

.focus\:u-text-transparent:focus{
  color: transparent !important;
}

.focus\:u-text-neutral-1:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-10:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-15:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-45:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
}

.focus\:u-text-neutral-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-0:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-10:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
}

.focus\:u-text-primary-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-0:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-10:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-20:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-30:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-40:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-50:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
}

.focus\:u-text-secundary-60:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
}

.focus\:u-text-success:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
}

.focus\:u-text-danger:focus{
  --tw-text-opacity: 1 !important;
  color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
}

.u-text-opacity-0{
  --tw-text-opacity: 0 !important;
}

.u-text-opacity-5{
  --tw-text-opacity: 0.05 !important;
}

.u-text-opacity-10{
  --tw-text-opacity: 0.1 !important;
}

.u-text-opacity-20{
  --tw-text-opacity: 0.2 !important;
}

.u-text-opacity-25{
  --tw-text-opacity: 0.25 !important;
}

.u-text-opacity-30{
  --tw-text-opacity: 0.3 !important;
}

.u-text-opacity-40{
  --tw-text-opacity: 0.4 !important;
}

.u-text-opacity-50{
  --tw-text-opacity: 0.5 !important;
}

.u-text-opacity-60{
  --tw-text-opacity: 0.6 !important;
}

.u-text-opacity-70{
  --tw-text-opacity: 0.7 !important;
}

.u-text-opacity-75{
  --tw-text-opacity: 0.75 !important;
}

.u-text-opacity-80{
  --tw-text-opacity: 0.8 !important;
}

.u-text-opacity-90{
  --tw-text-opacity: 0.9 !important;
}

.u-text-opacity-95{
  --tw-text-opacity: 0.95 !important;
}

.u-text-opacity-100{
  --tw-text-opacity: 1 !important;
}

.u-group:hover .group-hover\:u-text-opacity-0{
  --tw-text-opacity: 0 !important;
}

.u-group:hover .group-hover\:u-text-opacity-5{
  --tw-text-opacity: 0.05 !important;
}

.u-group:hover .group-hover\:u-text-opacity-10{
  --tw-text-opacity: 0.1 !important;
}

.u-group:hover .group-hover\:u-text-opacity-20{
  --tw-text-opacity: 0.2 !important;
}

.u-group:hover .group-hover\:u-text-opacity-25{
  --tw-text-opacity: 0.25 !important;
}

.u-group:hover .group-hover\:u-text-opacity-30{
  --tw-text-opacity: 0.3 !important;
}

.u-group:hover .group-hover\:u-text-opacity-40{
  --tw-text-opacity: 0.4 !important;
}

.u-group:hover .group-hover\:u-text-opacity-50{
  --tw-text-opacity: 0.5 !important;
}

.u-group:hover .group-hover\:u-text-opacity-60{
  --tw-text-opacity: 0.6 !important;
}

.u-group:hover .group-hover\:u-text-opacity-70{
  --tw-text-opacity: 0.7 !important;
}

.u-group:hover .group-hover\:u-text-opacity-75{
  --tw-text-opacity: 0.75 !important;
}

.u-group:hover .group-hover\:u-text-opacity-80{
  --tw-text-opacity: 0.8 !important;
}

.u-group:hover .group-hover\:u-text-opacity-90{
  --tw-text-opacity: 0.9 !important;
}

.u-group:hover .group-hover\:u-text-opacity-95{
  --tw-text-opacity: 0.95 !important;
}

.u-group:hover .group-hover\:u-text-opacity-100{
  --tw-text-opacity: 1 !important;
}

.focus-within\:u-text-opacity-0:focus-within{
  --tw-text-opacity: 0 !important;
}

.focus-within\:u-text-opacity-5:focus-within{
  --tw-text-opacity: 0.05 !important;
}

.focus-within\:u-text-opacity-10:focus-within{
  --tw-text-opacity: 0.1 !important;
}

.focus-within\:u-text-opacity-20:focus-within{
  --tw-text-opacity: 0.2 !important;
}

.focus-within\:u-text-opacity-25:focus-within{
  --tw-text-opacity: 0.25 !important;
}

.focus-within\:u-text-opacity-30:focus-within{
  --tw-text-opacity: 0.3 !important;
}

.focus-within\:u-text-opacity-40:focus-within{
  --tw-text-opacity: 0.4 !important;
}

.focus-within\:u-text-opacity-50:focus-within{
  --tw-text-opacity: 0.5 !important;
}

.focus-within\:u-text-opacity-60:focus-within{
  --tw-text-opacity: 0.6 !important;
}

.focus-within\:u-text-opacity-70:focus-within{
  --tw-text-opacity: 0.7 !important;
}

.focus-within\:u-text-opacity-75:focus-within{
  --tw-text-opacity: 0.75 !important;
}

.focus-within\:u-text-opacity-80:focus-within{
  --tw-text-opacity: 0.8 !important;
}

.focus-within\:u-text-opacity-90:focus-within{
  --tw-text-opacity: 0.9 !important;
}

.focus-within\:u-text-opacity-95:focus-within{
  --tw-text-opacity: 0.95 !important;
}

.focus-within\:u-text-opacity-100:focus-within{
  --tw-text-opacity: 1 !important;
}

.hover\:u-text-opacity-0:hover{
  --tw-text-opacity: 0 !important;
}

.hover\:u-text-opacity-5:hover{
  --tw-text-opacity: 0.05 !important;
}

.hover\:u-text-opacity-10:hover{
  --tw-text-opacity: 0.1 !important;
}

.hover\:u-text-opacity-20:hover{
  --tw-text-opacity: 0.2 !important;
}

.hover\:u-text-opacity-25:hover{
  --tw-text-opacity: 0.25 !important;
}

.hover\:u-text-opacity-30:hover{
  --tw-text-opacity: 0.3 !important;
}

.hover\:u-text-opacity-40:hover{
  --tw-text-opacity: 0.4 !important;
}

.hover\:u-text-opacity-50:hover{
  --tw-text-opacity: 0.5 !important;
}

.hover\:u-text-opacity-60:hover{
  --tw-text-opacity: 0.6 !important;
}

.hover\:u-text-opacity-70:hover{
  --tw-text-opacity: 0.7 !important;
}

.hover\:u-text-opacity-75:hover{
  --tw-text-opacity: 0.75 !important;
}

.hover\:u-text-opacity-80:hover{
  --tw-text-opacity: 0.8 !important;
}

.hover\:u-text-opacity-90:hover{
  --tw-text-opacity: 0.9 !important;
}

.hover\:u-text-opacity-95:hover{
  --tw-text-opacity: 0.95 !important;
}

.hover\:u-text-opacity-100:hover{
  --tw-text-opacity: 1 !important;
}

.focus\:u-text-opacity-0:focus{
  --tw-text-opacity: 0 !important;
}

.focus\:u-text-opacity-5:focus{
  --tw-text-opacity: 0.05 !important;
}

.focus\:u-text-opacity-10:focus{
  --tw-text-opacity: 0.1 !important;
}

.focus\:u-text-opacity-20:focus{
  --tw-text-opacity: 0.2 !important;
}

.focus\:u-text-opacity-25:focus{
  --tw-text-opacity: 0.25 !important;
}

.focus\:u-text-opacity-30:focus{
  --tw-text-opacity: 0.3 !important;
}

.focus\:u-text-opacity-40:focus{
  --tw-text-opacity: 0.4 !important;
}

.focus\:u-text-opacity-50:focus{
  --tw-text-opacity: 0.5 !important;
}

.focus\:u-text-opacity-60:focus{
  --tw-text-opacity: 0.6 !important;
}

.focus\:u-text-opacity-70:focus{
  --tw-text-opacity: 0.7 !important;
}

.focus\:u-text-opacity-75:focus{
  --tw-text-opacity: 0.75 !important;
}

.focus\:u-text-opacity-80:focus{
  --tw-text-opacity: 0.8 !important;
}

.focus\:u-text-opacity-90:focus{
  --tw-text-opacity: 0.9 !important;
}

.focus\:u-text-opacity-95:focus{
  --tw-text-opacity: 0.95 !important;
}

.focus\:u-text-opacity-100:focus{
  --tw-text-opacity: 1 !important;
}

.u-truncate{
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.u-overflow-ellipsis{
  text-overflow: ellipsis !important;
}

.u-overflow-clip{
  text-overflow: clip !important;
}

.u-italic{
  font-style: italic !important;
}

.u-not-italic{
  font-style: normal !important;
}

.u-uppercase{
  text-transform: uppercase !important;
}

.u-lowercase{
  text-transform: lowercase !important;
}

.u-capitalize{
  text-transform: capitalize !important;
}

.u-normal-case{
  text-transform: none !important;
}

.u-underline{
  text-decoration: underline !important;
}

.u-line-through{
  text-decoration: line-through !important;
}

.u-no-underline{
  text-decoration: none !important;
}

.u-group:hover .group-hover\:u-underline{
  text-decoration: underline !important;
}

.u-group:hover .group-hover\:u-line-through{
  text-decoration: line-through !important;
}

.u-group:hover .group-hover\:u-no-underline{
  text-decoration: none !important;
}

.focus-within\:u-underline:focus-within{
  text-decoration: underline !important;
}

.focus-within\:u-line-through:focus-within{
  text-decoration: line-through !important;
}

.focus-within\:u-no-underline:focus-within{
  text-decoration: none !important;
}

.hover\:u-underline:hover{
  text-decoration: underline !important;
}

.hover\:u-line-through:hover{
  text-decoration: line-through !important;
}

.hover\:u-no-underline:hover{
  text-decoration: none !important;
}

.focus\:u-underline:focus{
  text-decoration: underline !important;
}

.focus\:u-line-through:focus{
  text-decoration: line-through !important;
}

.focus\:u-no-underline:focus{
  text-decoration: none !important;
}

.u-antialiased{
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
}

.u-subpixel-antialiased{
  -webkit-font-smoothing: auto !important;
  -moz-osx-font-smoothing: auto !important;
}

.u-ordinal, .u-slashed-zero, .u-lining-nums, .u-oldstyle-nums, .u-proportional-nums, .u-tabular-nums, .u-diagonal-fractions, .u-stacked-fractions{
  --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
  --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
}

.u-normal-nums{
  font-variant-numeric: normal !important;
}

.u-ordinal{
  --tw-ordinal: ordinal !important;
}

.u-slashed-zero{
  --tw-slashed-zero: slashed-zero !important;
}

.u-lining-nums{
  --tw-numeric-figure: lining-nums !important;
}

.u-oldstyle-nums{
  --tw-numeric-figure: oldstyle-nums !important;
}

.u-proportional-nums{
  --tw-numeric-spacing: proportional-nums !important;
}

.u-tabular-nums{
  --tw-numeric-spacing: tabular-nums !important;
}

.u-diagonal-fractions{
  --tw-numeric-fraction: diagonal-fractions !important;
}

.u-stacked-fractions{
  --tw-numeric-fraction: stacked-fractions !important;
}

.u-tracking-tighter{
  letter-spacing: -0.05em !important;
}

.u-tracking-tight{
  letter-spacing: -0.025em !important;
}

.u-tracking-normal{
  letter-spacing: 0em !important;
}

.u-tracking-wide{
  letter-spacing: 0.025em !important;
}

.u-tracking-wider{
  letter-spacing: 0.05em !important;
}

.u-tracking-widest{
  letter-spacing: 0.1em !important;
}

.u-select-none{
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.u-select-text{
  -webkit-user-select: text !important;
     -moz-user-select: text !important;
      -ms-user-select: text !important;
          user-select: text !important;
}

.u-select-all{
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.u-select-auto{
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.u-align-baseline{
  vertical-align: baseline !important;
}

.u-align-top{
  vertical-align: top !important;
}

.u-align-middle{
  vertical-align: middle !important;
}

.u-align-bottom{
  vertical-align: bottom !important;
}

.u-align-text-top{
  vertical-align: text-top !important;
}

.u-align-text-bottom{
  vertical-align: text-bottom !important;
}

.u-visible{
  visibility: visible !important;
}

.u-invisible{
  visibility: hidden !important;
}

.u-whitespace-normal{
  white-space: normal !important;
}

.u-whitespace-nowrap{
  white-space: nowrap !important;
}

.u-whitespace-pre{
  white-space: pre !important;
}

.u-whitespace-pre-line{
  white-space: pre-line !important;
}

.u-whitespace-pre-wrap{
  white-space: pre-wrap !important;
}

.u-break-normal{
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.u-break-words{
  overflow-wrap: break-word !important;
}

.u-break-all{
  word-break: break-all !important;
}

.u-w-0{
  width: 0px !important;
}

.u-w-1{
  width: 0.25rem !important;
}

.u-w-2{
  width: 0.5rem !important;
}

.u-w-3{
  width: 0.75rem !important;
}

.u-w-4{
  width: 1rem !important;
}

.u-w-5{
  width: 1.25rem !important;
}

.u-w-6{
  width: 1.5rem !important;
}

.u-w-7{
  width: 1.75rem !important;
}

.u-w-8{
  width: 2rem !important;
}

.u-w-9{
  width: 2.25rem !important;
}

.u-w-10{
  width: 2.5rem !important;
}

.u-w-11{
  width: 2.75rem !important;
}

.u-w-12{
  width: 3rem !important;
}

.u-w-14{
  width: 3.5rem !important;
}

.u-w-16{
  width: 4rem !important;
}

.u-w-20{
  width: 5rem !important;
}

.u-w-24{
  width: 6rem !important;
}

.u-w-28{
  width: 7rem !important;
}

.u-w-32{
  width: 8rem !important;
}

.u-w-36{
  width: 9rem !important;
}

.u-w-40{
  width: 10rem !important;
}

.u-w-44{
  width: 11rem !important;
}

.u-w-48{
  width: 12rem !important;
}

.u-w-52{
  width: 13rem !important;
}

.u-w-56{
  width: 14rem !important;
}

.u-w-60{
  width: 15rem !important;
}

.u-w-64{
  width: 16rem !important;
}

.u-w-72{
  width: 18rem !important;
}

.u-w-80{
  width: 20rem !important;
}

.u-w-96{
  width: 24rem !important;
}

.u-w-auto{
  width: auto !important;
}

.u-w-px{
  width: 1px !important;
}

.u-w-0\.5{
  width: 0.125rem !important;
}

.u-w-1\.5{
  width: 0.375rem !important;
}

.u-w-2\.5{
  width: 0.625rem !important;
}

.u-w-3\.5{
  width: 0.875rem !important;
}

.u-w-1\/2{
  width: 50% !important;
}

.u-w-1\/3{
  width: 33.333333% !important;
}

.u-w-2\/3{
  width: 66.666667% !important;
}

.u-w-1\/4{
  width: 25% !important;
}

.u-w-2\/4{
  width: 50% !important;
}

.u-w-3\/4{
  width: 75% !important;
}

.u-w-1\/5{
  width: 20% !important;
}

.u-w-2\/5{
  width: 40% !important;
}

.u-w-3\/5{
  width: 60% !important;
}

.u-w-4\/5{
  width: 80% !important;
}

.u-w-1\/6{
  width: 16.666667% !important;
}

.u-w-2\/6{
  width: 33.333333% !important;
}

.u-w-3\/6{
  width: 50% !important;
}

.u-w-4\/6{
  width: 66.666667% !important;
}

.u-w-5\/6{
  width: 83.333333% !important;
}

.u-w-1\/12{
  width: 8.333333% !important;
}

.u-w-2\/12{
  width: 16.666667% !important;
}

.u-w-3\/12{
  width: 25% !important;
}

.u-w-4\/12{
  width: 33.333333% !important;
}

.u-w-5\/12{
  width: 41.666667% !important;
}

.u-w-6\/12{
  width: 50% !important;
}

.u-w-7\/12{
  width: 58.333333% !important;
}

.u-w-8\/12{
  width: 66.666667% !important;
}

.u-w-9\/12{
  width: 75% !important;
}

.u-w-10\/12{
  width: 83.333333% !important;
}

.u-w-11\/12{
  width: 91.666667% !important;
}

.u-w-full{
  width: 100% !important;
}

.u-w-screen{
  width: 100vw !important;
}

.u-w-min{
  width: -webkit-min-content !important;
  width: -moz-min-content !important;
  width: min-content !important;
}

.u-w-max{
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
}

.u-z-0{
  z-index: 0 !important;
}

.u-z-10{
  z-index: 10 !important;
}

.u-z-20{
  z-index: 20 !important;
}

.u-z-30{
  z-index: 30 !important;
}

.u-z-40{
  z-index: 40 !important;
}

.u-z-50{
  z-index: 50 !important;
}

.u-z-auto{
  z-index: auto !important;
}

.focus-within\:u-z-0:focus-within{
  z-index: 0 !important;
}

.focus-within\:u-z-10:focus-within{
  z-index: 10 !important;
}

.focus-within\:u-z-20:focus-within{
  z-index: 20 !important;
}

.focus-within\:u-z-30:focus-within{
  z-index: 30 !important;
}

.focus-within\:u-z-40:focus-within{
  z-index: 40 !important;
}

.focus-within\:u-z-50:focus-within{
  z-index: 50 !important;
}

.focus-within\:u-z-auto:focus-within{
  z-index: auto !important;
}

.focus\:u-z-0:focus{
  z-index: 0 !important;
}

.focus\:u-z-10:focus{
  z-index: 10 !important;
}

.focus\:u-z-20:focus{
  z-index: 20 !important;
}

.focus\:u-z-30:focus{
  z-index: 30 !important;
}

.focus\:u-z-40:focus{
  z-index: 40 !important;
}

.focus\:u-z-50:focus{
  z-index: 50 !important;
}

.focus\:u-z-auto:focus{
  z-index: auto !important;
}

.u-gap-0{
  gap: 0px !important;
}

.u-gap-1{
  gap: 0.25rem !important;
}

.u-gap-2{
  gap: 0.5rem !important;
}

.u-gap-3{
  gap: 0.75rem !important;
}

.u-gap-4{
  gap: 1rem !important;
}

.u-gap-5{
  gap: 1.25rem !important;
}

.u-gap-6{
  gap: 1.5rem !important;
}

.u-gap-7{
  gap: 1.75rem !important;
}

.u-gap-8{
  gap: 2rem !important;
}

.u-gap-9{
  gap: 2.25rem !important;
}

.u-gap-10{
  gap: 2.5rem !important;
}

.u-gap-11{
  gap: 2.75rem !important;
}

.u-gap-12{
  gap: 3rem !important;
}

.u-gap-14{
  gap: 3.5rem !important;
}

.u-gap-16{
  gap: 4rem !important;
}

.u-gap-20{
  gap: 5rem !important;
}

.u-gap-24{
  gap: 6rem !important;
}

.u-gap-28{
  gap: 7rem !important;
}

.u-gap-32{
  gap: 8rem !important;
}

.u-gap-36{
  gap: 9rem !important;
}

.u-gap-40{
  gap: 10rem !important;
}

.u-gap-44{
  gap: 11rem !important;
}

.u-gap-48{
  gap: 12rem !important;
}

.u-gap-52{
  gap: 13rem !important;
}

.u-gap-56{
  gap: 14rem !important;
}

.u-gap-60{
  gap: 15rem !important;
}

.u-gap-64{
  gap: 16rem !important;
}

.u-gap-72{
  gap: 18rem !important;
}

.u-gap-80{
  gap: 20rem !important;
}

.u-gap-96{
  gap: 24rem !important;
}

.u-gap-px{
  gap: 1px !important;
}

.u-gap-0\.5{
  gap: 0.125rem !important;
}

.u-gap-1\.5{
  gap: 0.375rem !important;
}

.u-gap-2\.5{
  gap: 0.625rem !important;
}

.u-gap-3\.5{
  gap: 0.875rem !important;
}

.u-gap-x-0{
  -moz-column-gap: 0px !important;
       column-gap: 0px !important;
}

.u-gap-x-1{
  -moz-column-gap: 0.25rem !important;
       column-gap: 0.25rem !important;
}

.u-gap-x-2{
  -moz-column-gap: 0.5rem !important;
       column-gap: 0.5rem !important;
}

.u-gap-x-3{
  -moz-column-gap: 0.75rem !important;
       column-gap: 0.75rem !important;
}

.u-gap-x-4{
  -moz-column-gap: 1rem !important;
       column-gap: 1rem !important;
}

.u-gap-x-5{
  -moz-column-gap: 1.25rem !important;
       column-gap: 1.25rem !important;
}

.u-gap-x-6{
  -moz-column-gap: 1.5rem !important;
       column-gap: 1.5rem !important;
}

.u-gap-x-7{
  -moz-column-gap: 1.75rem !important;
       column-gap: 1.75rem !important;
}

.u-gap-x-8{
  -moz-column-gap: 2rem !important;
       column-gap: 2rem !important;
}

.u-gap-x-9{
  -moz-column-gap: 2.25rem !important;
       column-gap: 2.25rem !important;
}

.u-gap-x-10{
  -moz-column-gap: 2.5rem !important;
       column-gap: 2.5rem !important;
}

.u-gap-x-11{
  -moz-column-gap: 2.75rem !important;
       column-gap: 2.75rem !important;
}

.u-gap-x-12{
  -moz-column-gap: 3rem !important;
       column-gap: 3rem !important;
}

.u-gap-x-14{
  -moz-column-gap: 3.5rem !important;
       column-gap: 3.5rem !important;
}

.u-gap-x-16{
  -moz-column-gap: 4rem !important;
       column-gap: 4rem !important;
}

.u-gap-x-20{
  -moz-column-gap: 5rem !important;
       column-gap: 5rem !important;
}

.u-gap-x-24{
  -moz-column-gap: 6rem !important;
       column-gap: 6rem !important;
}

.u-gap-x-28{
  -moz-column-gap: 7rem !important;
       column-gap: 7rem !important;
}

.u-gap-x-32{
  -moz-column-gap: 8rem !important;
       column-gap: 8rem !important;
}

.u-gap-x-36{
  -moz-column-gap: 9rem !important;
       column-gap: 9rem !important;
}

.u-gap-x-40{
  -moz-column-gap: 10rem !important;
       column-gap: 10rem !important;
}

.u-gap-x-44{
  -moz-column-gap: 11rem !important;
       column-gap: 11rem !important;
}

.u-gap-x-48{
  -moz-column-gap: 12rem !important;
       column-gap: 12rem !important;
}

.u-gap-x-52{
  -moz-column-gap: 13rem !important;
       column-gap: 13rem !important;
}

.u-gap-x-56{
  -moz-column-gap: 14rem !important;
       column-gap: 14rem !important;
}

.u-gap-x-60{
  -moz-column-gap: 15rem !important;
       column-gap: 15rem !important;
}

.u-gap-x-64{
  -moz-column-gap: 16rem !important;
       column-gap: 16rem !important;
}

.u-gap-x-72{
  -moz-column-gap: 18rem !important;
       column-gap: 18rem !important;
}

.u-gap-x-80{
  -moz-column-gap: 20rem !important;
       column-gap: 20rem !important;
}

.u-gap-x-96{
  -moz-column-gap: 24rem !important;
       column-gap: 24rem !important;
}

.u-gap-x-px{
  -moz-column-gap: 1px !important;
       column-gap: 1px !important;
}

.u-gap-x-0\.5{
  -moz-column-gap: 0.125rem !important;
       column-gap: 0.125rem !important;
}

.u-gap-x-1\.5{
  -moz-column-gap: 0.375rem !important;
       column-gap: 0.375rem !important;
}

.u-gap-x-2\.5{
  -moz-column-gap: 0.625rem !important;
       column-gap: 0.625rem !important;
}

.u-gap-x-3\.5{
  -moz-column-gap: 0.875rem !important;
       column-gap: 0.875rem !important;
}

.u-gap-y-0{
  row-gap: 0px !important;
}

.u-gap-y-1{
  row-gap: 0.25rem !important;
}

.u-gap-y-2{
  row-gap: 0.5rem !important;
}

.u-gap-y-3{
  row-gap: 0.75rem !important;
}

.u-gap-y-4{
  row-gap: 1rem !important;
}

.u-gap-y-5{
  row-gap: 1.25rem !important;
}

.u-gap-y-6{
  row-gap: 1.5rem !important;
}

.u-gap-y-7{
  row-gap: 1.75rem !important;
}

.u-gap-y-8{
  row-gap: 2rem !important;
}

.u-gap-y-9{
  row-gap: 2.25rem !important;
}

.u-gap-y-10{
  row-gap: 2.5rem !important;
}

.u-gap-y-11{
  row-gap: 2.75rem !important;
}

.u-gap-y-12{
  row-gap: 3rem !important;
}

.u-gap-y-14{
  row-gap: 3.5rem !important;
}

.u-gap-y-16{
  row-gap: 4rem !important;
}

.u-gap-y-20{
  row-gap: 5rem !important;
}

.u-gap-y-24{
  row-gap: 6rem !important;
}

.u-gap-y-28{
  row-gap: 7rem !important;
}

.u-gap-y-32{
  row-gap: 8rem !important;
}

.u-gap-y-36{
  row-gap: 9rem !important;
}

.u-gap-y-40{
  row-gap: 10rem !important;
}

.u-gap-y-44{
  row-gap: 11rem !important;
}

.u-gap-y-48{
  row-gap: 12rem !important;
}

.u-gap-y-52{
  row-gap: 13rem !important;
}

.u-gap-y-56{
  row-gap: 14rem !important;
}

.u-gap-y-60{
  row-gap: 15rem !important;
}

.u-gap-y-64{
  row-gap: 16rem !important;
}

.u-gap-y-72{
  row-gap: 18rem !important;
}

.u-gap-y-80{
  row-gap: 20rem !important;
}

.u-gap-y-96{
  row-gap: 24rem !important;
}

.u-gap-y-px{
  row-gap: 1px !important;
}

.u-gap-y-0\.5{
  row-gap: 0.125rem !important;
}

.u-gap-y-1\.5{
  row-gap: 0.375rem !important;
}

.u-gap-y-2\.5{
  row-gap: 0.625rem !important;
}

.u-gap-y-3\.5{
  row-gap: 0.875rem !important;
}

.u-grid-flow-row{
  grid-auto-flow: row !important;
}

.u-grid-flow-col{
  grid-auto-flow: column !important;
}

.u-grid-flow-row-dense{
  grid-auto-flow: row dense !important;
}

.u-grid-flow-col-dense{
  grid-auto-flow: column dense !important;
}

.u-grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.u-grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.u-grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.u-grid-cols-4{
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.u-grid-cols-5{
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}

.u-grid-cols-6{
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
}

.u-grid-cols-7{
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
}

.u-grid-cols-8{
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
}

.u-grid-cols-9{
  grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
}

.u-grid-cols-10{
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
}

.u-grid-cols-11{
  grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
}

.u-grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
}

.u-grid-cols-none{
  grid-template-columns: none !important;
}

.u-auto-cols-auto{
  grid-auto-columns: auto !important;
}

.u-auto-cols-min{
  grid-auto-columns: -webkit-min-content !important;
  grid-auto-columns: min-content !important;
}

.u-auto-cols-max{
  grid-auto-columns: -webkit-max-content !important;
  grid-auto-columns: max-content !important;
}

.u-auto-cols-fr{
  grid-auto-columns: minmax(0, 1fr) !important;
}

.u-col-auto{
  grid-column: auto !important;
}

.u-col-span-1{
  grid-column: span 1 / span 1 !important;
}

.u-col-span-2{
  grid-column: span 2 / span 2 !important;
}

.u-col-span-3{
  grid-column: span 3 / span 3 !important;
}

.u-col-span-4{
  grid-column: span 4 / span 4 !important;
}

.u-col-span-5{
  grid-column: span 5 / span 5 !important;
}

.u-col-span-6{
  grid-column: span 6 / span 6 !important;
}

.u-col-span-7{
  grid-column: span 7 / span 7 !important;
}

.u-col-span-8{
  grid-column: span 8 / span 8 !important;
}

.u-col-span-9{
  grid-column: span 9 / span 9 !important;
}

.u-col-span-10{
  grid-column: span 10 / span 10 !important;
}

.u-col-span-11{
  grid-column: span 11 / span 11 !important;
}

.u-col-span-12{
  grid-column: span 12 / span 12 !important;
}

.u-col-span-full{
  grid-column: 1 / -1 !important;
}

.u-col-start-1{
  grid-column-start: 1 !important;
}

.u-col-start-2{
  grid-column-start: 2 !important;
}

.u-col-start-3{
  grid-column-start: 3 !important;
}

.u-col-start-4{
  grid-column-start: 4 !important;
}

.u-col-start-5{
  grid-column-start: 5 !important;
}

.u-col-start-6{
  grid-column-start: 6 !important;
}

.u-col-start-7{
  grid-column-start: 7 !important;
}

.u-col-start-8{
  grid-column-start: 8 !important;
}

.u-col-start-9{
  grid-column-start: 9 !important;
}

.u-col-start-10{
  grid-column-start: 10 !important;
}

.u-col-start-11{
  grid-column-start: 11 !important;
}

.u-col-start-12{
  grid-column-start: 12 !important;
}

.u-col-start-13{
  grid-column-start: 13 !important;
}

.u-col-start-auto{
  grid-column-start: auto !important;
}

.u-col-end-1{
  grid-column-end: 1 !important;
}

.u-col-end-2{
  grid-column-end: 2 !important;
}

.u-col-end-3{
  grid-column-end: 3 !important;
}

.u-col-end-4{
  grid-column-end: 4 !important;
}

.u-col-end-5{
  grid-column-end: 5 !important;
}

.u-col-end-6{
  grid-column-end: 6 !important;
}

.u-col-end-7{
  grid-column-end: 7 !important;
}

.u-col-end-8{
  grid-column-end: 8 !important;
}

.u-col-end-9{
  grid-column-end: 9 !important;
}

.u-col-end-10{
  grid-column-end: 10 !important;
}

.u-col-end-11{
  grid-column-end: 11 !important;
}

.u-col-end-12{
  grid-column-end: 12 !important;
}

.u-col-end-13{
  grid-column-end: 13 !important;
}

.u-col-end-auto{
  grid-column-end: auto !important;
}

.u-grid-rows-1{
  grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
}

.u-grid-rows-2{
  grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
}

.u-grid-rows-3{
  grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
}

.u-grid-rows-4{
  grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
}

.u-grid-rows-5{
  grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
}

.u-grid-rows-6{
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
}

.u-grid-rows-none{
  grid-template-rows: none !important;
}

.u-auto-rows-auto{
  grid-auto-rows: auto !important;
}

.u-auto-rows-min{
  grid-auto-rows: -webkit-min-content !important;
  grid-auto-rows: min-content !important;
}

.u-auto-rows-max{
  grid-auto-rows: -webkit-max-content !important;
  grid-auto-rows: max-content !important;
}

.u-auto-rows-fr{
  grid-auto-rows: minmax(0, 1fr) !important;
}

.u-row-auto{
  grid-row: auto !important;
}

.u-row-span-1{
  grid-row: span 1 / span 1 !important;
}

.u-row-span-2{
  grid-row: span 2 / span 2 !important;
}

.u-row-span-3{
  grid-row: span 3 / span 3 !important;
}

.u-row-span-4{
  grid-row: span 4 / span 4 !important;
}

.u-row-span-5{
  grid-row: span 5 / span 5 !important;
}

.u-row-span-6{
  grid-row: span 6 / span 6 !important;
}

.u-row-span-full{
  grid-row: 1 / -1 !important;
}

.u-row-start-1{
  grid-row-start: 1 !important;
}

.u-row-start-2{
  grid-row-start: 2 !important;
}

.u-row-start-3{
  grid-row-start: 3 !important;
}

.u-row-start-4{
  grid-row-start: 4 !important;
}

.u-row-start-5{
  grid-row-start: 5 !important;
}

.u-row-start-6{
  grid-row-start: 6 !important;
}

.u-row-start-7{
  grid-row-start: 7 !important;
}

.u-row-start-auto{
  grid-row-start: auto !important;
}

.u-row-end-1{
  grid-row-end: 1 !important;
}

.u-row-end-2{
  grid-row-end: 2 !important;
}

.u-row-end-3{
  grid-row-end: 3 !important;
}

.u-row-end-4{
  grid-row-end: 4 !important;
}

.u-row-end-5{
  grid-row-end: 5 !important;
}

.u-row-end-6{
  grid-row-end: 6 !important;
}

.u-row-end-7{
  grid-row-end: 7 !important;
}

.u-row-end-auto{
  grid-row-end: auto !important;
}

.u-transform{
  --tw-translate-x: 0 !important;
  --tw-translate-y: 0 !important;
  --tw-rotate: 0 !important;
  --tw-skew-x: 0 !important;
  --tw-skew-y: 0 !important;
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
  transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.u-transform-gpu{
  --tw-translate-x: 0 !important;
  --tw-translate-y: 0 !important;
  --tw-rotate: 0 !important;
  --tw-skew-x: 0 !important;
  --tw-skew-y: 0 !important;
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
  transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}

.u-transform-none{
  transform: none !important;
}

.u-origin-center{
  transform-origin: center !important;
}

.u-origin-top{
  transform-origin: top !important;
}

.u-origin-top-right{
  transform-origin: top right !important;
}

.u-origin-right{
  transform-origin: right !important;
}

.u-origin-bottom-right{
  transform-origin: bottom right !important;
}

.u-origin-bottom{
  transform-origin: bottom !important;
}

.u-origin-bottom-left{
  transform-origin: bottom left !important;
}

.u-origin-left{
  transform-origin: left !important;
}

.u-origin-top-left{
  transform-origin: top left !important;
}

.u-scale-0{
  --tw-scale-x: 0 !important;
  --tw-scale-y: 0 !important;
}

.u-scale-50{
  --tw-scale-x: .5 !important;
  --tw-scale-y: .5 !important;
}

.u-scale-75{
  --tw-scale-x: .75 !important;
  --tw-scale-y: .75 !important;
}

.u-scale-90{
  --tw-scale-x: .9 !important;
  --tw-scale-y: .9 !important;
}

.u-scale-95{
  --tw-scale-x: .95 !important;
  --tw-scale-y: .95 !important;
}

.u-scale-100{
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
}

.u-scale-105{
  --tw-scale-x: 1.05 !important;
  --tw-scale-y: 1.05 !important;
}

.u-scale-110{
  --tw-scale-x: 1.1 !important;
  --tw-scale-y: 1.1 !important;
}

.u-scale-125{
  --tw-scale-x: 1.25 !important;
  --tw-scale-y: 1.25 !important;
}

.u-scale-150{
  --tw-scale-x: 1.5 !important;
  --tw-scale-y: 1.5 !important;
}

.u-scale-x-0{
  --tw-scale-x: 0 !important;
}

.u-scale-x-50{
  --tw-scale-x: .5 !important;
}

.u-scale-x-75{
  --tw-scale-x: .75 !important;
}

.u-scale-x-90{
  --tw-scale-x: .9 !important;
}

.u-scale-x-95{
  --tw-scale-x: .95 !important;
}

.u-scale-x-100{
  --tw-scale-x: 1 !important;
}

.u-scale-x-105{
  --tw-scale-x: 1.05 !important;
}

.u-scale-x-110{
  --tw-scale-x: 1.1 !important;
}

.u-scale-x-125{
  --tw-scale-x: 1.25 !important;
}

.u-scale-x-150{
  --tw-scale-x: 1.5 !important;
}

.u-scale-y-0{
  --tw-scale-y: 0 !important;
}

.u-scale-y-50{
  --tw-scale-y: .5 !important;
}

.u-scale-y-75{
  --tw-scale-y: .75 !important;
}

.u-scale-y-90{
  --tw-scale-y: .9 !important;
}

.u-scale-y-95{
  --tw-scale-y: .95 !important;
}

.u-scale-y-100{
  --tw-scale-y: 1 !important;
}

.u-scale-y-105{
  --tw-scale-y: 1.05 !important;
}

.u-scale-y-110{
  --tw-scale-y: 1.1 !important;
}

.u-scale-y-125{
  --tw-scale-y: 1.25 !important;
}

.u-scale-y-150{
  --tw-scale-y: 1.5 !important;
}

.hover\:u-scale-0:hover{
  --tw-scale-x: 0 !important;
  --tw-scale-y: 0 !important;
}

.hover\:u-scale-50:hover{
  --tw-scale-x: .5 !important;
  --tw-scale-y: .5 !important;
}

.hover\:u-scale-75:hover{
  --tw-scale-x: .75 !important;
  --tw-scale-y: .75 !important;
}

.hover\:u-scale-90:hover{
  --tw-scale-x: .9 !important;
  --tw-scale-y: .9 !important;
}

.hover\:u-scale-95:hover{
  --tw-scale-x: .95 !important;
  --tw-scale-y: .95 !important;
}

.hover\:u-scale-100:hover{
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
}

.hover\:u-scale-105:hover{
  --tw-scale-x: 1.05 !important;
  --tw-scale-y: 1.05 !important;
}

.hover\:u-scale-110:hover{
  --tw-scale-x: 1.1 !important;
  --tw-scale-y: 1.1 !important;
}

.hover\:u-scale-125:hover{
  --tw-scale-x: 1.25 !important;
  --tw-scale-y: 1.25 !important;
}

.hover\:u-scale-150:hover{
  --tw-scale-x: 1.5 !important;
  --tw-scale-y: 1.5 !important;
}

.hover\:u-scale-x-0:hover{
  --tw-scale-x: 0 !important;
}

.hover\:u-scale-x-50:hover{
  --tw-scale-x: .5 !important;
}

.hover\:u-scale-x-75:hover{
  --tw-scale-x: .75 !important;
}

.hover\:u-scale-x-90:hover{
  --tw-scale-x: .9 !important;
}

.hover\:u-scale-x-95:hover{
  --tw-scale-x: .95 !important;
}

.hover\:u-scale-x-100:hover{
  --tw-scale-x: 1 !important;
}

.hover\:u-scale-x-105:hover{
  --tw-scale-x: 1.05 !important;
}

.hover\:u-scale-x-110:hover{
  --tw-scale-x: 1.1 !important;
}

.hover\:u-scale-x-125:hover{
  --tw-scale-x: 1.25 !important;
}

.hover\:u-scale-x-150:hover{
  --tw-scale-x: 1.5 !important;
}

.hover\:u-scale-y-0:hover{
  --tw-scale-y: 0 !important;
}

.hover\:u-scale-y-50:hover{
  --tw-scale-y: .5 !important;
}

.hover\:u-scale-y-75:hover{
  --tw-scale-y: .75 !important;
}

.hover\:u-scale-y-90:hover{
  --tw-scale-y: .9 !important;
}

.hover\:u-scale-y-95:hover{
  --tw-scale-y: .95 !important;
}

.hover\:u-scale-y-100:hover{
  --tw-scale-y: 1 !important;
}

.hover\:u-scale-y-105:hover{
  --tw-scale-y: 1.05 !important;
}

.hover\:u-scale-y-110:hover{
  --tw-scale-y: 1.1 !important;
}

.hover\:u-scale-y-125:hover{
  --tw-scale-y: 1.25 !important;
}

.hover\:u-scale-y-150:hover{
  --tw-scale-y: 1.5 !important;
}

.focus\:u-scale-0:focus{
  --tw-scale-x: 0 !important;
  --tw-scale-y: 0 !important;
}

.focus\:u-scale-50:focus{
  --tw-scale-x: .5 !important;
  --tw-scale-y: .5 !important;
}

.focus\:u-scale-75:focus{
  --tw-scale-x: .75 !important;
  --tw-scale-y: .75 !important;
}

.focus\:u-scale-90:focus{
  --tw-scale-x: .9 !important;
  --tw-scale-y: .9 !important;
}

.focus\:u-scale-95:focus{
  --tw-scale-x: .95 !important;
  --tw-scale-y: .95 !important;
}

.focus\:u-scale-100:focus{
  --tw-scale-x: 1 !important;
  --tw-scale-y: 1 !important;
}

.focus\:u-scale-105:focus{
  --tw-scale-x: 1.05 !important;
  --tw-scale-y: 1.05 !important;
}

.focus\:u-scale-110:focus{
  --tw-scale-x: 1.1 !important;
  --tw-scale-y: 1.1 !important;
}

.focus\:u-scale-125:focus{
  --tw-scale-x: 1.25 !important;
  --tw-scale-y: 1.25 !important;
}

.focus\:u-scale-150:focus{
  --tw-scale-x: 1.5 !important;
  --tw-scale-y: 1.5 !important;
}

.focus\:u-scale-x-0:focus{
  --tw-scale-x: 0 !important;
}

.focus\:u-scale-x-50:focus{
  --tw-scale-x: .5 !important;
}

.focus\:u-scale-x-75:focus{
  --tw-scale-x: .75 !important;
}

.focus\:u-scale-x-90:focus{
  --tw-scale-x: .9 !important;
}

.focus\:u-scale-x-95:focus{
  --tw-scale-x: .95 !important;
}

.focus\:u-scale-x-100:focus{
  --tw-scale-x: 1 !important;
}

.focus\:u-scale-x-105:focus{
  --tw-scale-x: 1.05 !important;
}

.focus\:u-scale-x-110:focus{
  --tw-scale-x: 1.1 !important;
}

.focus\:u-scale-x-125:focus{
  --tw-scale-x: 1.25 !important;
}

.focus\:u-scale-x-150:focus{
  --tw-scale-x: 1.5 !important;
}

.focus\:u-scale-y-0:focus{
  --tw-scale-y: 0 !important;
}

.focus\:u-scale-y-50:focus{
  --tw-scale-y: .5 !important;
}

.focus\:u-scale-y-75:focus{
  --tw-scale-y: .75 !important;
}

.focus\:u-scale-y-90:focus{
  --tw-scale-y: .9 !important;
}

.focus\:u-scale-y-95:focus{
  --tw-scale-y: .95 !important;
}

.focus\:u-scale-y-100:focus{
  --tw-scale-y: 1 !important;
}

.focus\:u-scale-y-105:focus{
  --tw-scale-y: 1.05 !important;
}

.focus\:u-scale-y-110:focus{
  --tw-scale-y: 1.1 !important;
}

.focus\:u-scale-y-125:focus{
  --tw-scale-y: 1.25 !important;
}

.focus\:u-scale-y-150:focus{
  --tw-scale-y: 1.5 !important;
}

.u-rotate-0{
  --tw-rotate: 0deg !important;
}

.u-rotate-1{
  --tw-rotate: 1deg !important;
}

.u-rotate-2{
  --tw-rotate: 2deg !important;
}

.u-rotate-3{
  --tw-rotate: 3deg !important;
}

.u-rotate-6{
  --tw-rotate: 6deg !important;
}

.u-rotate-12{
  --tw-rotate: 12deg !important;
}

.u-rotate-45{
  --tw-rotate: 45deg !important;
}

.u-rotate-90{
  --tw-rotate: 90deg !important;
}

.u-rotate-180{
  --tw-rotate: 180deg !important;
}

.u--rotate-180{
  --tw-rotate: -180deg !important;
}

.u--rotate-90{
  --tw-rotate: -90deg !important;
}

.u--rotate-45{
  --tw-rotate: -45deg !important;
}

.u--rotate-12{
  --tw-rotate: -12deg !important;
}

.u--rotate-6{
  --tw-rotate: -6deg !important;
}

.u--rotate-3{
  --tw-rotate: -3deg !important;
}

.u--rotate-2{
  --tw-rotate: -2deg !important;
}

.u--rotate-1{
  --tw-rotate: -1deg !important;
}

.hover\:u-rotate-0:hover{
  --tw-rotate: 0deg !important;
}

.hover\:u-rotate-1:hover{
  --tw-rotate: 1deg !important;
}

.hover\:u-rotate-2:hover{
  --tw-rotate: 2deg !important;
}

.hover\:u-rotate-3:hover{
  --tw-rotate: 3deg !important;
}

.hover\:u-rotate-6:hover{
  --tw-rotate: 6deg !important;
}

.hover\:u-rotate-12:hover{
  --tw-rotate: 12deg !important;
}

.hover\:u-rotate-45:hover{
  --tw-rotate: 45deg !important;
}

.hover\:u-rotate-90:hover{
  --tw-rotate: 90deg !important;
}

.hover\:u-rotate-180:hover{
  --tw-rotate: 180deg !important;
}

.hover\:u--rotate-180:hover{
  --tw-rotate: -180deg !important;
}

.hover\:u--rotate-90:hover{
  --tw-rotate: -90deg !important;
}

.hover\:u--rotate-45:hover{
  --tw-rotate: -45deg !important;
}

.hover\:u--rotate-12:hover{
  --tw-rotate: -12deg !important;
}

.hover\:u--rotate-6:hover{
  --tw-rotate: -6deg !important;
}

.hover\:u--rotate-3:hover{
  --tw-rotate: -3deg !important;
}

.hover\:u--rotate-2:hover{
  --tw-rotate: -2deg !important;
}

.hover\:u--rotate-1:hover{
  --tw-rotate: -1deg !important;
}

.focus\:u-rotate-0:focus{
  --tw-rotate: 0deg !important;
}

.focus\:u-rotate-1:focus{
  --tw-rotate: 1deg !important;
}

.focus\:u-rotate-2:focus{
  --tw-rotate: 2deg !important;
}

.focus\:u-rotate-3:focus{
  --tw-rotate: 3deg !important;
}

.focus\:u-rotate-6:focus{
  --tw-rotate: 6deg !important;
}

.focus\:u-rotate-12:focus{
  --tw-rotate: 12deg !important;
}

.focus\:u-rotate-45:focus{
  --tw-rotate: 45deg !important;
}

.focus\:u-rotate-90:focus{
  --tw-rotate: 90deg !important;
}

.focus\:u-rotate-180:focus{
  --tw-rotate: 180deg !important;
}

.focus\:u--rotate-180:focus{
  --tw-rotate: -180deg !important;
}

.focus\:u--rotate-90:focus{
  --tw-rotate: -90deg !important;
}

.focus\:u--rotate-45:focus{
  --tw-rotate: -45deg !important;
}

.focus\:u--rotate-12:focus{
  --tw-rotate: -12deg !important;
}

.focus\:u--rotate-6:focus{
  --tw-rotate: -6deg !important;
}

.focus\:u--rotate-3:focus{
  --tw-rotate: -3deg !important;
}

.focus\:u--rotate-2:focus{
  --tw-rotate: -2deg !important;
}

.focus\:u--rotate-1:focus{
  --tw-rotate: -1deg !important;
}

.u-translate-x-0{
  --tw-translate-x: 0px !important;
}

.u-translate-x-1{
  --tw-translate-x: 0.25rem !important;
}

.u-translate-x-2{
  --tw-translate-x: 0.5rem !important;
}

.u-translate-x-3{
  --tw-translate-x: 0.75rem !important;
}

.u-translate-x-4{
  --tw-translate-x: 1rem !important;
}

.u-translate-x-5{
  --tw-translate-x: 1.25rem !important;
}

.u-translate-x-6{
  --tw-translate-x: 1.5rem !important;
}

.u-translate-x-7{
  --tw-translate-x: 1.75rem !important;
}

.u-translate-x-8{
  --tw-translate-x: 2rem !important;
}

.u-translate-x-9{
  --tw-translate-x: 2.25rem !important;
}

.u-translate-x-10{
  --tw-translate-x: 2.5rem !important;
}

.u-translate-x-11{
  --tw-translate-x: 2.75rem !important;
}

.u-translate-x-12{
  --tw-translate-x: 3rem !important;
}

.u-translate-x-14{
  --tw-translate-x: 3.5rem !important;
}

.u-translate-x-16{
  --tw-translate-x: 4rem !important;
}

.u-translate-x-20{
  --tw-translate-x: 5rem !important;
}

.u-translate-x-24{
  --tw-translate-x: 6rem !important;
}

.u-translate-x-28{
  --tw-translate-x: 7rem !important;
}

.u-translate-x-32{
  --tw-translate-x: 8rem !important;
}

.u-translate-x-36{
  --tw-translate-x: 9rem !important;
}

.u-translate-x-40{
  --tw-translate-x: 10rem !important;
}

.u-translate-x-44{
  --tw-translate-x: 11rem !important;
}

.u-translate-x-48{
  --tw-translate-x: 12rem !important;
}

.u-translate-x-52{
  --tw-translate-x: 13rem !important;
}

.u-translate-x-56{
  --tw-translate-x: 14rem !important;
}

.u-translate-x-60{
  --tw-translate-x: 15rem !important;
}

.u-translate-x-64{
  --tw-translate-x: 16rem !important;
}

.u-translate-x-72{
  --tw-translate-x: 18rem !important;
}

.u-translate-x-80{
  --tw-translate-x: 20rem !important;
}

.u-translate-x-96{
  --tw-translate-x: 24rem !important;
}

.u-translate-x-px{
  --tw-translate-x: 1px !important;
}

.u-translate-x-0\.5{
  --tw-translate-x: 0.125rem !important;
}

.u-translate-x-1\.5{
  --tw-translate-x: 0.375rem !important;
}

.u-translate-x-2\.5{
  --tw-translate-x: 0.625rem !important;
}

.u-translate-x-3\.5{
  --tw-translate-x: 0.875rem !important;
}

.u--translate-x-0{
  --tw-translate-x: 0px !important;
}

.u--translate-x-1{
  --tw-translate-x: -0.25rem !important;
}

.u--translate-x-2{
  --tw-translate-x: -0.5rem !important;
}

.u--translate-x-3{
  --tw-translate-x: -0.75rem !important;
}

.u--translate-x-4{
  --tw-translate-x: -1rem !important;
}

.u--translate-x-5{
  --tw-translate-x: -1.25rem !important;
}

.u--translate-x-6{
  --tw-translate-x: -1.5rem !important;
}

.u--translate-x-7{
  --tw-translate-x: -1.75rem !important;
}

.u--translate-x-8{
  --tw-translate-x: -2rem !important;
}

.u--translate-x-9{
  --tw-translate-x: -2.25rem !important;
}

.u--translate-x-10{
  --tw-translate-x: -2.5rem !important;
}

.u--translate-x-11{
  --tw-translate-x: -2.75rem !important;
}

.u--translate-x-12{
  --tw-translate-x: -3rem !important;
}

.u--translate-x-14{
  --tw-translate-x: -3.5rem !important;
}

.u--translate-x-16{
  --tw-translate-x: -4rem !important;
}

.u--translate-x-20{
  --tw-translate-x: -5rem !important;
}

.u--translate-x-24{
  --tw-translate-x: -6rem !important;
}

.u--translate-x-28{
  --tw-translate-x: -7rem !important;
}

.u--translate-x-32{
  --tw-translate-x: -8rem !important;
}

.u--translate-x-36{
  --tw-translate-x: -9rem !important;
}

.u--translate-x-40{
  --tw-translate-x: -10rem !important;
}

.u--translate-x-44{
  --tw-translate-x: -11rem !important;
}

.u--translate-x-48{
  --tw-translate-x: -12rem !important;
}

.u--translate-x-52{
  --tw-translate-x: -13rem !important;
}

.u--translate-x-56{
  --tw-translate-x: -14rem !important;
}

.u--translate-x-60{
  --tw-translate-x: -15rem !important;
}

.u--translate-x-64{
  --tw-translate-x: -16rem !important;
}

.u--translate-x-72{
  --tw-translate-x: -18rem !important;
}

.u--translate-x-80{
  --tw-translate-x: -20rem !important;
}

.u--translate-x-96{
  --tw-translate-x: -24rem !important;
}

.u--translate-x-px{
  --tw-translate-x: -1px !important;
}

.u--translate-x-0\.5{
  --tw-translate-x: -0.125rem !important;
}

.u--translate-x-1\.5{
  --tw-translate-x: -0.375rem !important;
}

.u--translate-x-2\.5{
  --tw-translate-x: -0.625rem !important;
}

.u--translate-x-3\.5{
  --tw-translate-x: -0.875rem !important;
}

.u-translate-x-1\/2{
  --tw-translate-x: 50% !important;
}

.u-translate-x-1\/3{
  --tw-translate-x: 33.333333% !important;
}

.u-translate-x-2\/3{
  --tw-translate-x: 66.666667% !important;
}

.u-translate-x-1\/4{
  --tw-translate-x: 25% !important;
}

.u-translate-x-2\/4{
  --tw-translate-x: 50% !important;
}

.u-translate-x-3\/4{
  --tw-translate-x: 75% !important;
}

.u-translate-x-full{
  --tw-translate-x: 100% !important;
}

.u--translate-x-1\/2{
  --tw-translate-x: -50% !important;
}

.u--translate-x-1\/3{
  --tw-translate-x: -33.333333% !important;
}

.u--translate-x-2\/3{
  --tw-translate-x: -66.666667% !important;
}

.u--translate-x-1\/4{
  --tw-translate-x: -25% !important;
}

.u--translate-x-2\/4{
  --tw-translate-x: -50% !important;
}

.u--translate-x-3\/4{
  --tw-translate-x: -75% !important;
}

.u--translate-x-full{
  --tw-translate-x: -100% !important;
}

.u-translate-y-0{
  --tw-translate-y: 0px !important;
}

.u-translate-y-1{
  --tw-translate-y: 0.25rem !important;
}

.u-translate-y-2{
  --tw-translate-y: 0.5rem !important;
}

.u-translate-y-3{
  --tw-translate-y: 0.75rem !important;
}

.u-translate-y-4{
  --tw-translate-y: 1rem !important;
}

.u-translate-y-5{
  --tw-translate-y: 1.25rem !important;
}

.u-translate-y-6{
  --tw-translate-y: 1.5rem !important;
}

.u-translate-y-7{
  --tw-translate-y: 1.75rem !important;
}

.u-translate-y-8{
  --tw-translate-y: 2rem !important;
}

.u-translate-y-9{
  --tw-translate-y: 2.25rem !important;
}

.u-translate-y-10{
  --tw-translate-y: 2.5rem !important;
}

.u-translate-y-11{
  --tw-translate-y: 2.75rem !important;
}

.u-translate-y-12{
  --tw-translate-y: 3rem !important;
}

.u-translate-y-14{
  --tw-translate-y: 3.5rem !important;
}

.u-translate-y-16{
  --tw-translate-y: 4rem !important;
}

.u-translate-y-20{
  --tw-translate-y: 5rem !important;
}

.u-translate-y-24{
  --tw-translate-y: 6rem !important;
}

.u-translate-y-28{
  --tw-translate-y: 7rem !important;
}

.u-translate-y-32{
  --tw-translate-y: 8rem !important;
}

.u-translate-y-36{
  --tw-translate-y: 9rem !important;
}

.u-translate-y-40{
  --tw-translate-y: 10rem !important;
}

.u-translate-y-44{
  --tw-translate-y: 11rem !important;
}

.u-translate-y-48{
  --tw-translate-y: 12rem !important;
}

.u-translate-y-52{
  --tw-translate-y: 13rem !important;
}

.u-translate-y-56{
  --tw-translate-y: 14rem !important;
}

.u-translate-y-60{
  --tw-translate-y: 15rem !important;
}

.u-translate-y-64{
  --tw-translate-y: 16rem !important;
}

.u-translate-y-72{
  --tw-translate-y: 18rem !important;
}

.u-translate-y-80{
  --tw-translate-y: 20rem !important;
}

.u-translate-y-96{
  --tw-translate-y: 24rem !important;
}

.u-translate-y-px{
  --tw-translate-y: 1px !important;
}

.u-translate-y-0\.5{
  --tw-translate-y: 0.125rem !important;
}

.u-translate-y-1\.5{
  --tw-translate-y: 0.375rem !important;
}

.u-translate-y-2\.5{
  --tw-translate-y: 0.625rem !important;
}

.u-translate-y-3\.5{
  --tw-translate-y: 0.875rem !important;
}

.u--translate-y-0{
  --tw-translate-y: 0px !important;
}

.u--translate-y-1{
  --tw-translate-y: -0.25rem !important;
}

.u--translate-y-2{
  --tw-translate-y: -0.5rem !important;
}

.u--translate-y-3{
  --tw-translate-y: -0.75rem !important;
}

.u--translate-y-4{
  --tw-translate-y: -1rem !important;
}

.u--translate-y-5{
  --tw-translate-y: -1.25rem !important;
}

.u--translate-y-6{
  --tw-translate-y: -1.5rem !important;
}

.u--translate-y-7{
  --tw-translate-y: -1.75rem !important;
}

.u--translate-y-8{
  --tw-translate-y: -2rem !important;
}

.u--translate-y-9{
  --tw-translate-y: -2.25rem !important;
}

.u--translate-y-10{
  --tw-translate-y: -2.5rem !important;
}

.u--translate-y-11{
  --tw-translate-y: -2.75rem !important;
}

.u--translate-y-12{
  --tw-translate-y: -3rem !important;
}

.u--translate-y-14{
  --tw-translate-y: -3.5rem !important;
}

.u--translate-y-16{
  --tw-translate-y: -4rem !important;
}

.u--translate-y-20{
  --tw-translate-y: -5rem !important;
}

.u--translate-y-24{
  --tw-translate-y: -6rem !important;
}

.u--translate-y-28{
  --tw-translate-y: -7rem !important;
}

.u--translate-y-32{
  --tw-translate-y: -8rem !important;
}

.u--translate-y-36{
  --tw-translate-y: -9rem !important;
}

.u--translate-y-40{
  --tw-translate-y: -10rem !important;
}

.u--translate-y-44{
  --tw-translate-y: -11rem !important;
}

.u--translate-y-48{
  --tw-translate-y: -12rem !important;
}

.u--translate-y-52{
  --tw-translate-y: -13rem !important;
}

.u--translate-y-56{
  --tw-translate-y: -14rem !important;
}

.u--translate-y-60{
  --tw-translate-y: -15rem !important;
}

.u--translate-y-64{
  --tw-translate-y: -16rem !important;
}

.u--translate-y-72{
  --tw-translate-y: -18rem !important;
}

.u--translate-y-80{
  --tw-translate-y: -20rem !important;
}

.u--translate-y-96{
  --tw-translate-y: -24rem !important;
}

.u--translate-y-px{
  --tw-translate-y: -1px !important;
}

.u--translate-y-0\.5{
  --tw-translate-y: -0.125rem !important;
}

.u--translate-y-1\.5{
  --tw-translate-y: -0.375rem !important;
}

.u--translate-y-2\.5{
  --tw-translate-y: -0.625rem !important;
}

.u--translate-y-3\.5{
  --tw-translate-y: -0.875rem !important;
}

.u-translate-y-1\/2{
  --tw-translate-y: 50% !important;
}

.u-translate-y-1\/3{
  --tw-translate-y: 33.333333% !important;
}

.u-translate-y-2\/3{
  --tw-translate-y: 66.666667% !important;
}

.u-translate-y-1\/4{
  --tw-translate-y: 25% !important;
}

.u-translate-y-2\/4{
  --tw-translate-y: 50% !important;
}

.u-translate-y-3\/4{
  --tw-translate-y: 75% !important;
}

.u-translate-y-full{
  --tw-translate-y: 100% !important;
}

.u--translate-y-1\/2{
  --tw-translate-y: -50% !important;
}

.u--translate-y-1\/3{
  --tw-translate-y: -33.333333% !important;
}

.u--translate-y-2\/3{
  --tw-translate-y: -66.666667% !important;
}

.u--translate-y-1\/4{
  --tw-translate-y: -25% !important;
}

.u--translate-y-2\/4{
  --tw-translate-y: -50% !important;
}

.u--translate-y-3\/4{
  --tw-translate-y: -75% !important;
}

.u--translate-y-full{
  --tw-translate-y: -100% !important;
}

.hover\:u-translate-x-0:hover{
  --tw-translate-x: 0px !important;
}

.hover\:u-translate-x-1:hover{
  --tw-translate-x: 0.25rem !important;
}

.hover\:u-translate-x-2:hover{
  --tw-translate-x: 0.5rem !important;
}

.hover\:u-translate-x-3:hover{
  --tw-translate-x: 0.75rem !important;
}

.hover\:u-translate-x-4:hover{
  --tw-translate-x: 1rem !important;
}

.hover\:u-translate-x-5:hover{
  --tw-translate-x: 1.25rem !important;
}

.hover\:u-translate-x-6:hover{
  --tw-translate-x: 1.5rem !important;
}

.hover\:u-translate-x-7:hover{
  --tw-translate-x: 1.75rem !important;
}

.hover\:u-translate-x-8:hover{
  --tw-translate-x: 2rem !important;
}

.hover\:u-translate-x-9:hover{
  --tw-translate-x: 2.25rem !important;
}

.hover\:u-translate-x-10:hover{
  --tw-translate-x: 2.5rem !important;
}

.hover\:u-translate-x-11:hover{
  --tw-translate-x: 2.75rem !important;
}

.hover\:u-translate-x-12:hover{
  --tw-translate-x: 3rem !important;
}

.hover\:u-translate-x-14:hover{
  --tw-translate-x: 3.5rem !important;
}

.hover\:u-translate-x-16:hover{
  --tw-translate-x: 4rem !important;
}

.hover\:u-translate-x-20:hover{
  --tw-translate-x: 5rem !important;
}

.hover\:u-translate-x-24:hover{
  --tw-translate-x: 6rem !important;
}

.hover\:u-translate-x-28:hover{
  --tw-translate-x: 7rem !important;
}

.hover\:u-translate-x-32:hover{
  --tw-translate-x: 8rem !important;
}

.hover\:u-translate-x-36:hover{
  --tw-translate-x: 9rem !important;
}

.hover\:u-translate-x-40:hover{
  --tw-translate-x: 10rem !important;
}

.hover\:u-translate-x-44:hover{
  --tw-translate-x: 11rem !important;
}

.hover\:u-translate-x-48:hover{
  --tw-translate-x: 12rem !important;
}

.hover\:u-translate-x-52:hover{
  --tw-translate-x: 13rem !important;
}

.hover\:u-translate-x-56:hover{
  --tw-translate-x: 14rem !important;
}

.hover\:u-translate-x-60:hover{
  --tw-translate-x: 15rem !important;
}

.hover\:u-translate-x-64:hover{
  --tw-translate-x: 16rem !important;
}

.hover\:u-translate-x-72:hover{
  --tw-translate-x: 18rem !important;
}

.hover\:u-translate-x-80:hover{
  --tw-translate-x: 20rem !important;
}

.hover\:u-translate-x-96:hover{
  --tw-translate-x: 24rem !important;
}

.hover\:u-translate-x-px:hover{
  --tw-translate-x: 1px !important;
}

.hover\:u-translate-x-0\.5:hover{
  --tw-translate-x: 0.125rem !important;
}

.hover\:u-translate-x-1\.5:hover{
  --tw-translate-x: 0.375rem !important;
}

.hover\:u-translate-x-2\.5:hover{
  --tw-translate-x: 0.625rem !important;
}

.hover\:u-translate-x-3\.5:hover{
  --tw-translate-x: 0.875rem !important;
}

.hover\:u--translate-x-0:hover{
  --tw-translate-x: 0px !important;
}

.hover\:u--translate-x-1:hover{
  --tw-translate-x: -0.25rem !important;
}

.hover\:u--translate-x-2:hover{
  --tw-translate-x: -0.5rem !important;
}

.hover\:u--translate-x-3:hover{
  --tw-translate-x: -0.75rem !important;
}

.hover\:u--translate-x-4:hover{
  --tw-translate-x: -1rem !important;
}

.hover\:u--translate-x-5:hover{
  --tw-translate-x: -1.25rem !important;
}

.hover\:u--translate-x-6:hover{
  --tw-translate-x: -1.5rem !important;
}

.hover\:u--translate-x-7:hover{
  --tw-translate-x: -1.75rem !important;
}

.hover\:u--translate-x-8:hover{
  --tw-translate-x: -2rem !important;
}

.hover\:u--translate-x-9:hover{
  --tw-translate-x: -2.25rem !important;
}

.hover\:u--translate-x-10:hover{
  --tw-translate-x: -2.5rem !important;
}

.hover\:u--translate-x-11:hover{
  --tw-translate-x: -2.75rem !important;
}

.hover\:u--translate-x-12:hover{
  --tw-translate-x: -3rem !important;
}

.hover\:u--translate-x-14:hover{
  --tw-translate-x: -3.5rem !important;
}

.hover\:u--translate-x-16:hover{
  --tw-translate-x: -4rem !important;
}

.hover\:u--translate-x-20:hover{
  --tw-translate-x: -5rem !important;
}

.hover\:u--translate-x-24:hover{
  --tw-translate-x: -6rem !important;
}

.hover\:u--translate-x-28:hover{
  --tw-translate-x: -7rem !important;
}

.hover\:u--translate-x-32:hover{
  --tw-translate-x: -8rem !important;
}

.hover\:u--translate-x-36:hover{
  --tw-translate-x: -9rem !important;
}

.hover\:u--translate-x-40:hover{
  --tw-translate-x: -10rem !important;
}

.hover\:u--translate-x-44:hover{
  --tw-translate-x: -11rem !important;
}

.hover\:u--translate-x-48:hover{
  --tw-translate-x: -12rem !important;
}

.hover\:u--translate-x-52:hover{
  --tw-translate-x: -13rem !important;
}

.hover\:u--translate-x-56:hover{
  --tw-translate-x: -14rem !important;
}

.hover\:u--translate-x-60:hover{
  --tw-translate-x: -15rem !important;
}

.hover\:u--translate-x-64:hover{
  --tw-translate-x: -16rem !important;
}

.hover\:u--translate-x-72:hover{
  --tw-translate-x: -18rem !important;
}

.hover\:u--translate-x-80:hover{
  --tw-translate-x: -20rem !important;
}

.hover\:u--translate-x-96:hover{
  --tw-translate-x: -24rem !important;
}

.hover\:u--translate-x-px:hover{
  --tw-translate-x: -1px !important;
}

.hover\:u--translate-x-0\.5:hover{
  --tw-translate-x: -0.125rem !important;
}

.hover\:u--translate-x-1\.5:hover{
  --tw-translate-x: -0.375rem !important;
}

.hover\:u--translate-x-2\.5:hover{
  --tw-translate-x: -0.625rem !important;
}

.hover\:u--translate-x-3\.5:hover{
  --tw-translate-x: -0.875rem !important;
}

.hover\:u-translate-x-1\/2:hover{
  --tw-translate-x: 50% !important;
}

.hover\:u-translate-x-1\/3:hover{
  --tw-translate-x: 33.333333% !important;
}

.hover\:u-translate-x-2\/3:hover{
  --tw-translate-x: 66.666667% !important;
}

.hover\:u-translate-x-1\/4:hover{
  --tw-translate-x: 25% !important;
}

.hover\:u-translate-x-2\/4:hover{
  --tw-translate-x: 50% !important;
}

.hover\:u-translate-x-3\/4:hover{
  --tw-translate-x: 75% !important;
}

.hover\:u-translate-x-full:hover{
  --tw-translate-x: 100% !important;
}

.hover\:u--translate-x-1\/2:hover{
  --tw-translate-x: -50% !important;
}

.hover\:u--translate-x-1\/3:hover{
  --tw-translate-x: -33.333333% !important;
}

.hover\:u--translate-x-2\/3:hover{
  --tw-translate-x: -66.666667% !important;
}

.hover\:u--translate-x-1\/4:hover{
  --tw-translate-x: -25% !important;
}

.hover\:u--translate-x-2\/4:hover{
  --tw-translate-x: -50% !important;
}

.hover\:u--translate-x-3\/4:hover{
  --tw-translate-x: -75% !important;
}

.hover\:u--translate-x-full:hover{
  --tw-translate-x: -100% !important;
}

.hover\:u-translate-y-0:hover{
  --tw-translate-y: 0px !important;
}

.hover\:u-translate-y-1:hover{
  --tw-translate-y: 0.25rem !important;
}

.hover\:u-translate-y-2:hover{
  --tw-translate-y: 0.5rem !important;
}

.hover\:u-translate-y-3:hover{
  --tw-translate-y: 0.75rem !important;
}

.hover\:u-translate-y-4:hover{
  --tw-translate-y: 1rem !important;
}

.hover\:u-translate-y-5:hover{
  --tw-translate-y: 1.25rem !important;
}

.hover\:u-translate-y-6:hover{
  --tw-translate-y: 1.5rem !important;
}

.hover\:u-translate-y-7:hover{
  --tw-translate-y: 1.75rem !important;
}

.hover\:u-translate-y-8:hover{
  --tw-translate-y: 2rem !important;
}

.hover\:u-translate-y-9:hover{
  --tw-translate-y: 2.25rem !important;
}

.hover\:u-translate-y-10:hover{
  --tw-translate-y: 2.5rem !important;
}

.hover\:u-translate-y-11:hover{
  --tw-translate-y: 2.75rem !important;
}

.hover\:u-translate-y-12:hover{
  --tw-translate-y: 3rem !important;
}

.hover\:u-translate-y-14:hover{
  --tw-translate-y: 3.5rem !important;
}

.hover\:u-translate-y-16:hover{
  --tw-translate-y: 4rem !important;
}

.hover\:u-translate-y-20:hover{
  --tw-translate-y: 5rem !important;
}

.hover\:u-translate-y-24:hover{
  --tw-translate-y: 6rem !important;
}

.hover\:u-translate-y-28:hover{
  --tw-translate-y: 7rem !important;
}

.hover\:u-translate-y-32:hover{
  --tw-translate-y: 8rem !important;
}

.hover\:u-translate-y-36:hover{
  --tw-translate-y: 9rem !important;
}

.hover\:u-translate-y-40:hover{
  --tw-translate-y: 10rem !important;
}

.hover\:u-translate-y-44:hover{
  --tw-translate-y: 11rem !important;
}

.hover\:u-translate-y-48:hover{
  --tw-translate-y: 12rem !important;
}

.hover\:u-translate-y-52:hover{
  --tw-translate-y: 13rem !important;
}

.hover\:u-translate-y-56:hover{
  --tw-translate-y: 14rem !important;
}

.hover\:u-translate-y-60:hover{
  --tw-translate-y: 15rem !important;
}

.hover\:u-translate-y-64:hover{
  --tw-translate-y: 16rem !important;
}

.hover\:u-translate-y-72:hover{
  --tw-translate-y: 18rem !important;
}

.hover\:u-translate-y-80:hover{
  --tw-translate-y: 20rem !important;
}

.hover\:u-translate-y-96:hover{
  --tw-translate-y: 24rem !important;
}

.hover\:u-translate-y-px:hover{
  --tw-translate-y: 1px !important;
}

.hover\:u-translate-y-0\.5:hover{
  --tw-translate-y: 0.125rem !important;
}

.hover\:u-translate-y-1\.5:hover{
  --tw-translate-y: 0.375rem !important;
}

.hover\:u-translate-y-2\.5:hover{
  --tw-translate-y: 0.625rem !important;
}

.hover\:u-translate-y-3\.5:hover{
  --tw-translate-y: 0.875rem !important;
}

.hover\:u--translate-y-0:hover{
  --tw-translate-y: 0px !important;
}

.hover\:u--translate-y-1:hover{
  --tw-translate-y: -0.25rem !important;
}

.hover\:u--translate-y-2:hover{
  --tw-translate-y: -0.5rem !important;
}

.hover\:u--translate-y-3:hover{
  --tw-translate-y: -0.75rem !important;
}

.hover\:u--translate-y-4:hover{
  --tw-translate-y: -1rem !important;
}

.hover\:u--translate-y-5:hover{
  --tw-translate-y: -1.25rem !important;
}

.hover\:u--translate-y-6:hover{
  --tw-translate-y: -1.5rem !important;
}

.hover\:u--translate-y-7:hover{
  --tw-translate-y: -1.75rem !important;
}

.hover\:u--translate-y-8:hover{
  --tw-translate-y: -2rem !important;
}

.hover\:u--translate-y-9:hover{
  --tw-translate-y: -2.25rem !important;
}

.hover\:u--translate-y-10:hover{
  --tw-translate-y: -2.5rem !important;
}

.hover\:u--translate-y-11:hover{
  --tw-translate-y: -2.75rem !important;
}

.hover\:u--translate-y-12:hover{
  --tw-translate-y: -3rem !important;
}

.hover\:u--translate-y-14:hover{
  --tw-translate-y: -3.5rem !important;
}

.hover\:u--translate-y-16:hover{
  --tw-translate-y: -4rem !important;
}

.hover\:u--translate-y-20:hover{
  --tw-translate-y: -5rem !important;
}

.hover\:u--translate-y-24:hover{
  --tw-translate-y: -6rem !important;
}

.hover\:u--translate-y-28:hover{
  --tw-translate-y: -7rem !important;
}

.hover\:u--translate-y-32:hover{
  --tw-translate-y: -8rem !important;
}

.hover\:u--translate-y-36:hover{
  --tw-translate-y: -9rem !important;
}

.hover\:u--translate-y-40:hover{
  --tw-translate-y: -10rem !important;
}

.hover\:u--translate-y-44:hover{
  --tw-translate-y: -11rem !important;
}

.hover\:u--translate-y-48:hover{
  --tw-translate-y: -12rem !important;
}

.hover\:u--translate-y-52:hover{
  --tw-translate-y: -13rem !important;
}

.hover\:u--translate-y-56:hover{
  --tw-translate-y: -14rem !important;
}

.hover\:u--translate-y-60:hover{
  --tw-translate-y: -15rem !important;
}

.hover\:u--translate-y-64:hover{
  --tw-translate-y: -16rem !important;
}

.hover\:u--translate-y-72:hover{
  --tw-translate-y: -18rem !important;
}

.hover\:u--translate-y-80:hover{
  --tw-translate-y: -20rem !important;
}

.hover\:u--translate-y-96:hover{
  --tw-translate-y: -24rem !important;
}

.hover\:u--translate-y-px:hover{
  --tw-translate-y: -1px !important;
}

.hover\:u--translate-y-0\.5:hover{
  --tw-translate-y: -0.125rem !important;
}

.hover\:u--translate-y-1\.5:hover{
  --tw-translate-y: -0.375rem !important;
}

.hover\:u--translate-y-2\.5:hover{
  --tw-translate-y: -0.625rem !important;
}

.hover\:u--translate-y-3\.5:hover{
  --tw-translate-y: -0.875rem !important;
}

.hover\:u-translate-y-1\/2:hover{
  --tw-translate-y: 50% !important;
}

.hover\:u-translate-y-1\/3:hover{
  --tw-translate-y: 33.333333% !important;
}

.hover\:u-translate-y-2\/3:hover{
  --tw-translate-y: 66.666667% !important;
}

.hover\:u-translate-y-1\/4:hover{
  --tw-translate-y: 25% !important;
}

.hover\:u-translate-y-2\/4:hover{
  --tw-translate-y: 50% !important;
}

.hover\:u-translate-y-3\/4:hover{
  --tw-translate-y: 75% !important;
}

.hover\:u-translate-y-full:hover{
  --tw-translate-y: 100% !important;
}

.hover\:u--translate-y-1\/2:hover{
  --tw-translate-y: -50% !important;
}

.hover\:u--translate-y-1\/3:hover{
  --tw-translate-y: -33.333333% !important;
}

.hover\:u--translate-y-2\/3:hover{
  --tw-translate-y: -66.666667% !important;
}

.hover\:u--translate-y-1\/4:hover{
  --tw-translate-y: -25% !important;
}

.hover\:u--translate-y-2\/4:hover{
  --tw-translate-y: -50% !important;
}

.hover\:u--translate-y-3\/4:hover{
  --tw-translate-y: -75% !important;
}

.hover\:u--translate-y-full:hover{
  --tw-translate-y: -100% !important;
}

.focus\:u-translate-x-0:focus{
  --tw-translate-x: 0px !important;
}

.focus\:u-translate-x-1:focus{
  --tw-translate-x: 0.25rem !important;
}

.focus\:u-translate-x-2:focus{
  --tw-translate-x: 0.5rem !important;
}

.focus\:u-translate-x-3:focus{
  --tw-translate-x: 0.75rem !important;
}

.focus\:u-translate-x-4:focus{
  --tw-translate-x: 1rem !important;
}

.focus\:u-translate-x-5:focus{
  --tw-translate-x: 1.25rem !important;
}

.focus\:u-translate-x-6:focus{
  --tw-translate-x: 1.5rem !important;
}

.focus\:u-translate-x-7:focus{
  --tw-translate-x: 1.75rem !important;
}

.focus\:u-translate-x-8:focus{
  --tw-translate-x: 2rem !important;
}

.focus\:u-translate-x-9:focus{
  --tw-translate-x: 2.25rem !important;
}

.focus\:u-translate-x-10:focus{
  --tw-translate-x: 2.5rem !important;
}

.focus\:u-translate-x-11:focus{
  --tw-translate-x: 2.75rem !important;
}

.focus\:u-translate-x-12:focus{
  --tw-translate-x: 3rem !important;
}

.focus\:u-translate-x-14:focus{
  --tw-translate-x: 3.5rem !important;
}

.focus\:u-translate-x-16:focus{
  --tw-translate-x: 4rem !important;
}

.focus\:u-translate-x-20:focus{
  --tw-translate-x: 5rem !important;
}

.focus\:u-translate-x-24:focus{
  --tw-translate-x: 6rem !important;
}

.focus\:u-translate-x-28:focus{
  --tw-translate-x: 7rem !important;
}

.focus\:u-translate-x-32:focus{
  --tw-translate-x: 8rem !important;
}

.focus\:u-translate-x-36:focus{
  --tw-translate-x: 9rem !important;
}

.focus\:u-translate-x-40:focus{
  --tw-translate-x: 10rem !important;
}

.focus\:u-translate-x-44:focus{
  --tw-translate-x: 11rem !important;
}

.focus\:u-translate-x-48:focus{
  --tw-translate-x: 12rem !important;
}

.focus\:u-translate-x-52:focus{
  --tw-translate-x: 13rem !important;
}

.focus\:u-translate-x-56:focus{
  --tw-translate-x: 14rem !important;
}

.focus\:u-translate-x-60:focus{
  --tw-translate-x: 15rem !important;
}

.focus\:u-translate-x-64:focus{
  --tw-translate-x: 16rem !important;
}

.focus\:u-translate-x-72:focus{
  --tw-translate-x: 18rem !important;
}

.focus\:u-translate-x-80:focus{
  --tw-translate-x: 20rem !important;
}

.focus\:u-translate-x-96:focus{
  --tw-translate-x: 24rem !important;
}

.focus\:u-translate-x-px:focus{
  --tw-translate-x: 1px !important;
}

.focus\:u-translate-x-0\.5:focus{
  --tw-translate-x: 0.125rem !important;
}

.focus\:u-translate-x-1\.5:focus{
  --tw-translate-x: 0.375rem !important;
}

.focus\:u-translate-x-2\.5:focus{
  --tw-translate-x: 0.625rem !important;
}

.focus\:u-translate-x-3\.5:focus{
  --tw-translate-x: 0.875rem !important;
}

.focus\:u--translate-x-0:focus{
  --tw-translate-x: 0px !important;
}

.focus\:u--translate-x-1:focus{
  --tw-translate-x: -0.25rem !important;
}

.focus\:u--translate-x-2:focus{
  --tw-translate-x: -0.5rem !important;
}

.focus\:u--translate-x-3:focus{
  --tw-translate-x: -0.75rem !important;
}

.focus\:u--translate-x-4:focus{
  --tw-translate-x: -1rem !important;
}

.focus\:u--translate-x-5:focus{
  --tw-translate-x: -1.25rem !important;
}

.focus\:u--translate-x-6:focus{
  --tw-translate-x: -1.5rem !important;
}

.focus\:u--translate-x-7:focus{
  --tw-translate-x: -1.75rem !important;
}

.focus\:u--translate-x-8:focus{
  --tw-translate-x: -2rem !important;
}

.focus\:u--translate-x-9:focus{
  --tw-translate-x: -2.25rem !important;
}

.focus\:u--translate-x-10:focus{
  --tw-translate-x: -2.5rem !important;
}

.focus\:u--translate-x-11:focus{
  --tw-translate-x: -2.75rem !important;
}

.focus\:u--translate-x-12:focus{
  --tw-translate-x: -3rem !important;
}

.focus\:u--translate-x-14:focus{
  --tw-translate-x: -3.5rem !important;
}

.focus\:u--translate-x-16:focus{
  --tw-translate-x: -4rem !important;
}

.focus\:u--translate-x-20:focus{
  --tw-translate-x: -5rem !important;
}

.focus\:u--translate-x-24:focus{
  --tw-translate-x: -6rem !important;
}

.focus\:u--translate-x-28:focus{
  --tw-translate-x: -7rem !important;
}

.focus\:u--translate-x-32:focus{
  --tw-translate-x: -8rem !important;
}

.focus\:u--translate-x-36:focus{
  --tw-translate-x: -9rem !important;
}

.focus\:u--translate-x-40:focus{
  --tw-translate-x: -10rem !important;
}

.focus\:u--translate-x-44:focus{
  --tw-translate-x: -11rem !important;
}

.focus\:u--translate-x-48:focus{
  --tw-translate-x: -12rem !important;
}

.focus\:u--translate-x-52:focus{
  --tw-translate-x: -13rem !important;
}

.focus\:u--translate-x-56:focus{
  --tw-translate-x: -14rem !important;
}

.focus\:u--translate-x-60:focus{
  --tw-translate-x: -15rem !important;
}

.focus\:u--translate-x-64:focus{
  --tw-translate-x: -16rem !important;
}

.focus\:u--translate-x-72:focus{
  --tw-translate-x: -18rem !important;
}

.focus\:u--translate-x-80:focus{
  --tw-translate-x: -20rem !important;
}

.focus\:u--translate-x-96:focus{
  --tw-translate-x: -24rem !important;
}

.focus\:u--translate-x-px:focus{
  --tw-translate-x: -1px !important;
}

.focus\:u--translate-x-0\.5:focus{
  --tw-translate-x: -0.125rem !important;
}

.focus\:u--translate-x-1\.5:focus{
  --tw-translate-x: -0.375rem !important;
}

.focus\:u--translate-x-2\.5:focus{
  --tw-translate-x: -0.625rem !important;
}

.focus\:u--translate-x-3\.5:focus{
  --tw-translate-x: -0.875rem !important;
}

.focus\:u-translate-x-1\/2:focus{
  --tw-translate-x: 50% !important;
}

.focus\:u-translate-x-1\/3:focus{
  --tw-translate-x: 33.333333% !important;
}

.focus\:u-translate-x-2\/3:focus{
  --tw-translate-x: 66.666667% !important;
}

.focus\:u-translate-x-1\/4:focus{
  --tw-translate-x: 25% !important;
}

.focus\:u-translate-x-2\/4:focus{
  --tw-translate-x: 50% !important;
}

.focus\:u-translate-x-3\/4:focus{
  --tw-translate-x: 75% !important;
}

.focus\:u-translate-x-full:focus{
  --tw-translate-x: 100% !important;
}

.focus\:u--translate-x-1\/2:focus{
  --tw-translate-x: -50% !important;
}

.focus\:u--translate-x-1\/3:focus{
  --tw-translate-x: -33.333333% !important;
}

.focus\:u--translate-x-2\/3:focus{
  --tw-translate-x: -66.666667% !important;
}

.focus\:u--translate-x-1\/4:focus{
  --tw-translate-x: -25% !important;
}

.focus\:u--translate-x-2\/4:focus{
  --tw-translate-x: -50% !important;
}

.focus\:u--translate-x-3\/4:focus{
  --tw-translate-x: -75% !important;
}

.focus\:u--translate-x-full:focus{
  --tw-translate-x: -100% !important;
}

.focus\:u-translate-y-0:focus{
  --tw-translate-y: 0px !important;
}

.focus\:u-translate-y-1:focus{
  --tw-translate-y: 0.25rem !important;
}

.focus\:u-translate-y-2:focus{
  --tw-translate-y: 0.5rem !important;
}

.focus\:u-translate-y-3:focus{
  --tw-translate-y: 0.75rem !important;
}

.focus\:u-translate-y-4:focus{
  --tw-translate-y: 1rem !important;
}

.focus\:u-translate-y-5:focus{
  --tw-translate-y: 1.25rem !important;
}

.focus\:u-translate-y-6:focus{
  --tw-translate-y: 1.5rem !important;
}

.focus\:u-translate-y-7:focus{
  --tw-translate-y: 1.75rem !important;
}

.focus\:u-translate-y-8:focus{
  --tw-translate-y: 2rem !important;
}

.focus\:u-translate-y-9:focus{
  --tw-translate-y: 2.25rem !important;
}

.focus\:u-translate-y-10:focus{
  --tw-translate-y: 2.5rem !important;
}

.focus\:u-translate-y-11:focus{
  --tw-translate-y: 2.75rem !important;
}

.focus\:u-translate-y-12:focus{
  --tw-translate-y: 3rem !important;
}

.focus\:u-translate-y-14:focus{
  --tw-translate-y: 3.5rem !important;
}

.focus\:u-translate-y-16:focus{
  --tw-translate-y: 4rem !important;
}

.focus\:u-translate-y-20:focus{
  --tw-translate-y: 5rem !important;
}

.focus\:u-translate-y-24:focus{
  --tw-translate-y: 6rem !important;
}

.focus\:u-translate-y-28:focus{
  --tw-translate-y: 7rem !important;
}

.focus\:u-translate-y-32:focus{
  --tw-translate-y: 8rem !important;
}

.focus\:u-translate-y-36:focus{
  --tw-translate-y: 9rem !important;
}

.focus\:u-translate-y-40:focus{
  --tw-translate-y: 10rem !important;
}

.focus\:u-translate-y-44:focus{
  --tw-translate-y: 11rem !important;
}

.focus\:u-translate-y-48:focus{
  --tw-translate-y: 12rem !important;
}

.focus\:u-translate-y-52:focus{
  --tw-translate-y: 13rem !important;
}

.focus\:u-translate-y-56:focus{
  --tw-translate-y: 14rem !important;
}

.focus\:u-translate-y-60:focus{
  --tw-translate-y: 15rem !important;
}

.focus\:u-translate-y-64:focus{
  --tw-translate-y: 16rem !important;
}

.focus\:u-translate-y-72:focus{
  --tw-translate-y: 18rem !important;
}

.focus\:u-translate-y-80:focus{
  --tw-translate-y: 20rem !important;
}

.focus\:u-translate-y-96:focus{
  --tw-translate-y: 24rem !important;
}

.focus\:u-translate-y-px:focus{
  --tw-translate-y: 1px !important;
}

.focus\:u-translate-y-0\.5:focus{
  --tw-translate-y: 0.125rem !important;
}

.focus\:u-translate-y-1\.5:focus{
  --tw-translate-y: 0.375rem !important;
}

.focus\:u-translate-y-2\.5:focus{
  --tw-translate-y: 0.625rem !important;
}

.focus\:u-translate-y-3\.5:focus{
  --tw-translate-y: 0.875rem !important;
}

.focus\:u--translate-y-0:focus{
  --tw-translate-y: 0px !important;
}

.focus\:u--translate-y-1:focus{
  --tw-translate-y: -0.25rem !important;
}

.focus\:u--translate-y-2:focus{
  --tw-translate-y: -0.5rem !important;
}

.focus\:u--translate-y-3:focus{
  --tw-translate-y: -0.75rem !important;
}

.focus\:u--translate-y-4:focus{
  --tw-translate-y: -1rem !important;
}

.focus\:u--translate-y-5:focus{
  --tw-translate-y: -1.25rem !important;
}

.focus\:u--translate-y-6:focus{
  --tw-translate-y: -1.5rem !important;
}

.focus\:u--translate-y-7:focus{
  --tw-translate-y: -1.75rem !important;
}

.focus\:u--translate-y-8:focus{
  --tw-translate-y: -2rem !important;
}

.focus\:u--translate-y-9:focus{
  --tw-translate-y: -2.25rem !important;
}

.focus\:u--translate-y-10:focus{
  --tw-translate-y: -2.5rem !important;
}

.focus\:u--translate-y-11:focus{
  --tw-translate-y: -2.75rem !important;
}

.focus\:u--translate-y-12:focus{
  --tw-translate-y: -3rem !important;
}

.focus\:u--translate-y-14:focus{
  --tw-translate-y: -3.5rem !important;
}

.focus\:u--translate-y-16:focus{
  --tw-translate-y: -4rem !important;
}

.focus\:u--translate-y-20:focus{
  --tw-translate-y: -5rem !important;
}

.focus\:u--translate-y-24:focus{
  --tw-translate-y: -6rem !important;
}

.focus\:u--translate-y-28:focus{
  --tw-translate-y: -7rem !important;
}

.focus\:u--translate-y-32:focus{
  --tw-translate-y: -8rem !important;
}

.focus\:u--translate-y-36:focus{
  --tw-translate-y: -9rem !important;
}

.focus\:u--translate-y-40:focus{
  --tw-translate-y: -10rem !important;
}

.focus\:u--translate-y-44:focus{
  --tw-translate-y: -11rem !important;
}

.focus\:u--translate-y-48:focus{
  --tw-translate-y: -12rem !important;
}

.focus\:u--translate-y-52:focus{
  --tw-translate-y: -13rem !important;
}

.focus\:u--translate-y-56:focus{
  --tw-translate-y: -14rem !important;
}

.focus\:u--translate-y-60:focus{
  --tw-translate-y: -15rem !important;
}

.focus\:u--translate-y-64:focus{
  --tw-translate-y: -16rem !important;
}

.focus\:u--translate-y-72:focus{
  --tw-translate-y: -18rem !important;
}

.focus\:u--translate-y-80:focus{
  --tw-translate-y: -20rem !important;
}

.focus\:u--translate-y-96:focus{
  --tw-translate-y: -24rem !important;
}

.focus\:u--translate-y-px:focus{
  --tw-translate-y: -1px !important;
}

.focus\:u--translate-y-0\.5:focus{
  --tw-translate-y: -0.125rem !important;
}

.focus\:u--translate-y-1\.5:focus{
  --tw-translate-y: -0.375rem !important;
}

.focus\:u--translate-y-2\.5:focus{
  --tw-translate-y: -0.625rem !important;
}

.focus\:u--translate-y-3\.5:focus{
  --tw-translate-y: -0.875rem !important;
}

.focus\:u-translate-y-1\/2:focus{
  --tw-translate-y: 50% !important;
}

.focus\:u-translate-y-1\/3:focus{
  --tw-translate-y: 33.333333% !important;
}

.focus\:u-translate-y-2\/3:focus{
  --tw-translate-y: 66.666667% !important;
}

.focus\:u-translate-y-1\/4:focus{
  --tw-translate-y: 25% !important;
}

.focus\:u-translate-y-2\/4:focus{
  --tw-translate-y: 50% !important;
}

.focus\:u-translate-y-3\/4:focus{
  --tw-translate-y: 75% !important;
}

.focus\:u-translate-y-full:focus{
  --tw-translate-y: 100% !important;
}

.focus\:u--translate-y-1\/2:focus{
  --tw-translate-y: -50% !important;
}

.focus\:u--translate-y-1\/3:focus{
  --tw-translate-y: -33.333333% !important;
}

.focus\:u--translate-y-2\/3:focus{
  --tw-translate-y: -66.666667% !important;
}

.focus\:u--translate-y-1\/4:focus{
  --tw-translate-y: -25% !important;
}

.focus\:u--translate-y-2\/4:focus{
  --tw-translate-y: -50% !important;
}

.focus\:u--translate-y-3\/4:focus{
  --tw-translate-y: -75% !important;
}

.focus\:u--translate-y-full:focus{
  --tw-translate-y: -100% !important;
}

.u-skew-x-0{
  --tw-skew-x: 0deg !important;
}

.u-skew-x-1{
  --tw-skew-x: 1deg !important;
}

.u-skew-x-2{
  --tw-skew-x: 2deg !important;
}

.u-skew-x-3{
  --tw-skew-x: 3deg !important;
}

.u-skew-x-6{
  --tw-skew-x: 6deg !important;
}

.u-skew-x-12{
  --tw-skew-x: 12deg !important;
}

.u--skew-x-12{
  --tw-skew-x: -12deg !important;
}

.u--skew-x-6{
  --tw-skew-x: -6deg !important;
}

.u--skew-x-3{
  --tw-skew-x: -3deg !important;
}

.u--skew-x-2{
  --tw-skew-x: -2deg !important;
}

.u--skew-x-1{
  --tw-skew-x: -1deg !important;
}

.u-skew-y-0{
  --tw-skew-y: 0deg !important;
}

.u-skew-y-1{
  --tw-skew-y: 1deg !important;
}

.u-skew-y-2{
  --tw-skew-y: 2deg !important;
}

.u-skew-y-3{
  --tw-skew-y: 3deg !important;
}

.u-skew-y-6{
  --tw-skew-y: 6deg !important;
}

.u-skew-y-12{
  --tw-skew-y: 12deg !important;
}

.u--skew-y-12{
  --tw-skew-y: -12deg !important;
}

.u--skew-y-6{
  --tw-skew-y: -6deg !important;
}

.u--skew-y-3{
  --tw-skew-y: -3deg !important;
}

.u--skew-y-2{
  --tw-skew-y: -2deg !important;
}

.u--skew-y-1{
  --tw-skew-y: -1deg !important;
}

.hover\:u-skew-x-0:hover{
  --tw-skew-x: 0deg !important;
}

.hover\:u-skew-x-1:hover{
  --tw-skew-x: 1deg !important;
}

.hover\:u-skew-x-2:hover{
  --tw-skew-x: 2deg !important;
}

.hover\:u-skew-x-3:hover{
  --tw-skew-x: 3deg !important;
}

.hover\:u-skew-x-6:hover{
  --tw-skew-x: 6deg !important;
}

.hover\:u-skew-x-12:hover{
  --tw-skew-x: 12deg !important;
}

.hover\:u--skew-x-12:hover{
  --tw-skew-x: -12deg !important;
}

.hover\:u--skew-x-6:hover{
  --tw-skew-x: -6deg !important;
}

.hover\:u--skew-x-3:hover{
  --tw-skew-x: -3deg !important;
}

.hover\:u--skew-x-2:hover{
  --tw-skew-x: -2deg !important;
}

.hover\:u--skew-x-1:hover{
  --tw-skew-x: -1deg !important;
}

.hover\:u-skew-y-0:hover{
  --tw-skew-y: 0deg !important;
}

.hover\:u-skew-y-1:hover{
  --tw-skew-y: 1deg !important;
}

.hover\:u-skew-y-2:hover{
  --tw-skew-y: 2deg !important;
}

.hover\:u-skew-y-3:hover{
  --tw-skew-y: 3deg !important;
}

.hover\:u-skew-y-6:hover{
  --tw-skew-y: 6deg !important;
}

.hover\:u-skew-y-12:hover{
  --tw-skew-y: 12deg !important;
}

.hover\:u--skew-y-12:hover{
  --tw-skew-y: -12deg !important;
}

.hover\:u--skew-y-6:hover{
  --tw-skew-y: -6deg !important;
}

.hover\:u--skew-y-3:hover{
  --tw-skew-y: -3deg !important;
}

.hover\:u--skew-y-2:hover{
  --tw-skew-y: -2deg !important;
}

.hover\:u--skew-y-1:hover{
  --tw-skew-y: -1deg !important;
}

.focus\:u-skew-x-0:focus{
  --tw-skew-x: 0deg !important;
}

.focus\:u-skew-x-1:focus{
  --tw-skew-x: 1deg !important;
}

.focus\:u-skew-x-2:focus{
  --tw-skew-x: 2deg !important;
}

.focus\:u-skew-x-3:focus{
  --tw-skew-x: 3deg !important;
}

.focus\:u-skew-x-6:focus{
  --tw-skew-x: 6deg !important;
}

.focus\:u-skew-x-12:focus{
  --tw-skew-x: 12deg !important;
}

.focus\:u--skew-x-12:focus{
  --tw-skew-x: -12deg !important;
}

.focus\:u--skew-x-6:focus{
  --tw-skew-x: -6deg !important;
}

.focus\:u--skew-x-3:focus{
  --tw-skew-x: -3deg !important;
}

.focus\:u--skew-x-2:focus{
  --tw-skew-x: -2deg !important;
}

.focus\:u--skew-x-1:focus{
  --tw-skew-x: -1deg !important;
}

.focus\:u-skew-y-0:focus{
  --tw-skew-y: 0deg !important;
}

.focus\:u-skew-y-1:focus{
  --tw-skew-y: 1deg !important;
}

.focus\:u-skew-y-2:focus{
  --tw-skew-y: 2deg !important;
}

.focus\:u-skew-y-3:focus{
  --tw-skew-y: 3deg !important;
}

.focus\:u-skew-y-6:focus{
  --tw-skew-y: 6deg !important;
}

.focus\:u-skew-y-12:focus{
  --tw-skew-y: 12deg !important;
}

.focus\:u--skew-y-12:focus{
  --tw-skew-y: -12deg !important;
}

.focus\:u--skew-y-6:focus{
  --tw-skew-y: -6deg !important;
}

.focus\:u--skew-y-3:focus{
  --tw-skew-y: -3deg !important;
}

.focus\:u--skew-y-2:focus{
  --tw-skew-y: -2deg !important;
}

.focus\:u--skew-y-1:focus{
  --tw-skew-y: -1deg !important;
}

.u-transition-none{
  transition-property: none !important;
}

.u-transition-all{
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.u-transition{
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.u-transition-colors{
  transition-property: background-color, border-color, color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.u-transition-opacity{
  transition-property: opacity !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.u-transition-shadow{
  transition-property: box-shadow !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.u-transition-transform{
  transition-property: transform !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

.u-ease-linear{
  transition-timing-function: linear !important;
}

.u-ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
}

.u-ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
}

.u-ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.u-duration-75{
  transition-duration: 75ms !important;
}

.u-duration-100{
  transition-duration: 100ms !important;
}

.u-duration-150{
  transition-duration: 150ms !important;
}

.u-duration-200{
  transition-duration: 200ms !important;
}

.u-duration-300{
  transition-duration: 300ms !important;
}

.u-duration-500{
  transition-duration: 500ms !important;
}

.u-duration-700{
  transition-duration: 700ms !important;
}

.u-duration-1000{
  transition-duration: 1000ms !important;
}

.u-delay-75{
  transition-delay: 75ms !important;
}

.u-delay-100{
  transition-delay: 100ms !important;
}

.u-delay-150{
  transition-delay: 150ms !important;
}

.u-delay-200{
  transition-delay: 200ms !important;
}

.u-delay-300{
  transition-delay: 300ms !important;
}

.u-delay-500{
  transition-delay: 500ms !important;
}

.u-delay-700{
  transition-delay: 700ms !important;
}

.u-delay-1000{
  transition-delay: 1000ms !important;
}

@-webkit-keyframes u-spin{
  to{
    transform: rotate(360deg);
  }
}

@keyframes u-spin{
  to{
    transform: rotate(360deg);
  }
}

@-webkit-keyframes u-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes u-ping{
  75%, 100%{
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes u-pulse{
  50%{
    opacity: .5;
  }
}

@keyframes u-pulse{
  50%{
    opacity: .5;
  }
}

@-webkit-keyframes u-bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes u-bounce{
  0%, 100%{
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50%{
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

.u-animate-none{
  -webkit-animation: none !important;
          animation: none !important;
}

.u-animate-spin{
  -webkit-animation: u-spin 1s linear infinite !important;
          animation: u-spin 1s linear infinite !important;
}

.u-animate-ping{
  -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
          animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
}

.u-animate-pulse{
  -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
          animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
}

.u-animate-bounce{
  -webkit-animation: u-bounce 1s infinite !important;
          animation: u-bounce 1s infinite !important;
}

/* purgecss start ignore */

/*
  The next layer houses your globally available tooling – namely mixins and functions.
  Any mixin or function that does not need accessing globally should belong in the partial to which it relates.
  The Tools layer comes after the Settings layer because a mixin may require one of the global settings as a default parameter.

  Examples of global tools might be gradient mixins, font-sizing mixins and so on.
*/

/*
  The Generic layer is the first one that actually produces any CSS.
  It houses very high-level, far reaching styles. This layer is seldom modified, and is usually the same across any projects you work on.
  It contains things like Normalize.css, global box-sizing rules, CSS resets and so on.
  The Generic layer affects a lot of the DOM, hence it being nice and wide in the Triangle model, and occurring very early on.
*/

:root {
  --neutral-00: #fff;
  --neutral-10: #F7F7F7;
  --neutral-15: #F2F2F2;
  --neutral-20: #e3e3e3;
  --neutral-30: #D9D9D9;
  --neutral-40: #C1C1C1;
  --neutral-45: #494949;
  --neutral-50: #2d2d2d;
  --neutral-60: #000000;
  --primary-00: #FAFCFE;
  --primary-10: #BEDDF2;
  --primary-20: #83BEE6;
  --primary-30: #489FDA;
  --primary-40: #257BB5;
  --primary-50: #1C5E8B;
  --primary-60: #144160;
  --secundary-00: #F6FCF6;
  --secundary-10: #C4EAC1;
  --secundary-20: #93D78B;
  --secundary-30: #61C556;
  --secundary-40: #409E36;
  --secundary-50: #317829;
  --secundary-60: #21521C;
  --body-color: var(--neutral-60);
  --body-bg-color: var(--neutral-00);
  --body-color-faded: #818181;
  --box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  --color-info: #2373A9;
  --color-success: #296A33;
  --color-warning: #ae9434;
  --color-danger: #FD6262;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Raleway, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8em;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  height: 100%;
  background: var(--body-bg-color);
  color: var(--body-color);
  overflow-y: auto;
  transition: 500ms ease background;
}

body.is-dark-mode {
  background: var(--neutral-60);
  color: var(--neutral-00);
}

[v-cloak], [x-cloak] {
  display: none;
}

img[lazy=loaded] {
  -webkit-animation: 1s fadeIn;
          animation: 1s fadeIn;
}

/*
  These are bare, unclassed HTML elements. What does an h1 look like without a class on it?
  What does an a look like without a class on it? The Elements layer binds onto bare HTML element (or 'type') selectors only.
  It is slightly more explicit than the previous layer in that we are now saying 'make every h1 this big', or 'make every a be a certain colour'.
  It is still a very low-specificity layer, but affects slightly less of the DOM, and is slightly more opinionated, hence its location in the Triangle.

  The Base layer is typically the last one in which we'd find bare, element-based selectors, and is very rarely added to or changed after initial setup.
  Once we have defined element-level styles, all additions and deviations should be implemented using classes.
*/

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4em;
  margin: 0;
  margin-top: 1rem;
  color: var(--neutral-60);
  font-weight: 700;
  font-family: Raleway, serif;
  line-height: 1em;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
  font-weight: 400;
}

.is-dark-mode h1, .is-dark-mode h2, .is-dark-mode h3, .is-dark-mode h4, .is-dark-mode h5, .is-dark-mode h6 {
  color: var(--neutral-00);
}

h1 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1120px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1120px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

h1 {
  margin-top: 1.5rem;
  color: var(--neutral-60);
}

h1:first-child {
  margin-top: 0;
}

h2 span {
  color: var(--neutral-40);
  font-size: 0.8em;
}

h4, h5, h6 {
  color: var(--neutral-60);
  font-family: Raleway, sans-serif;
  font-weight: 700;
}

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

a:hover, a:focus {
  text-decoration: underline;
}

p {
  line-height: 1.75;
  margin-top: 0.5em;
}

p:first-child {
  margin-top: 0;
}

p a {
  text-decoration: underline;
}

address {
  margin-top: 0.5rem;
  font-style: normal;
}

address:first-child {
  margin-top: 0;
}

::-moz-selection {
  background: var(--primary-20);
  /* WebKit/Blink Browsers */
}

::selection {
  background: var(--primary-20);
  /* WebKit/Blink Browsers */
}

blockquote {
  font-family: "PT Serif", serif;
  font-size: 1.25rem;
}

/*
  Users of OOCSS will be familiar with the concept of objects. This is the first layer in which we find class-based selectors.
  These are concerned with styling non-cosmetic design patterns, or 'objects'.
  Objects can range from something as simple as a .wrapper element, to layout systems, through to things like the OOCSS poster child – the Media Object.
  This layer affects less of the DOM than the last layer, has a higher specificity,
  and is slightly more explicit in that we are now targeting sections of the DOM with classes.
*/

.o-layout__page {
  width: 100%;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.o-layout__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.o-section {
  position: relative;
  margin-top: 2.5rem;
  display: inline-block;
  width: 100%;
}

@media (min-width: 1120px) {
  .o-section {
    margin-top: 5rem;
  }

  .o-section--pull-top {
    margin-top: 6.5rem;
  }
}

@media (min-width: 1120px) {
  .tablet\:o-section {
    margin-top: 5rem;
  }
}

/*
  The Components layer is where we begin to style recognisable pieces of UI.
  We're still binding onto classes here, so our specificity hasn't yet increased.
  However, this layer is more explicit than the last one in that we are now styling explicit, designed pieces of the DOM.

  We shouldn't find any selectors with a lower specificity than one class in this layer.
  This is where the majority of your work will happen after initial project set-up.
  Adding new components and features usually makes up the vast majority of development.
*/

.c-article__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px){
  .c-article__grid{
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}

.c-article__column {
  display: flex;
  flex-direction: column;
}

.c-article__grid--dynamic .c-article__column {
  display: block;
}

.c-article__column .c-article__card {
  flex-grow: 1;
}

.c-article__card {
  margin-top: 2rem;
}

.c-article .align-center {
  text-align: center;
}

.c-article h2, .c-article h3 {
  margin-top: 2rem;
}

.c-article h2:first-child, .c-article h3:first-child {
  margin-top: 0;
}

.c-article-background {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 5rem;
}

.c-article-background__wrapper {
  width: 100vw;
  flex: 0 0 100vw;
  padding: 3rem 0;
  background: var(--neutral-10);
}

.c-article-background-image {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 5rem;
  position: relative;
}

.c-article-background-image__wrapper {
  width: 100vw;
  flex: 0 0 100vw;
  background: var(--neutral-10);
  position: relative;
}

.c-article-background-image__body {
  position: relative;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .c-article-background-image__body {
    width: 50%;
  }
}

.c-article-background-image__background-wrapper {
  position: relative;
}

.c-article-background-image__background-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.666%;
  min-height: 8rem;
}

@media (min-width: 768px) {
  .c-article-background-image__background-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

.c-article-background-image__background-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--neutral-10);
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
}

@media (min-width: 768px) {
  .c-article-background-image__background-wrapper:after {
    background: linear-gradient(90deg, #f7f7f7 40%, rgba(247, 247, 247, 0) 100%);
  }
}

.c-article-background-image__background {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .c-article-background-image__background {
    width: 60%;
  }
}

.c-article-redefine {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
  margin-top: 5rem;
}

.c-article-redefine__wrapper {
  width: 100vw;
  flex: 0 0 100vw;
  padding: 3rem 0;
  background: var(--neutral-10);
  display: grid;
  align-items: flex-end;
  gap: 2rem;
}

@media (min-width: 768px) {
  .c-article-redefine__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

.c-article-redefine__content {
  margin-left: auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .c-article-redefine__content {
    padding: 0;
    width: 384px;
  }
}

@media (min-width: 1120px) {
  .c-article-redefine__content {
    width: 480px;
  }
}

.c-article-redefine__cta-wrapper {
  margin-bottom: -50px;
  margin-top: 3rem;
}

@media (min-width: 1120px) {
  .c-article-redefine__cta-wrapper {
    margin-top: 0;
  }
}

.c-article-redefine__cta {
  margin-bottom: -50px;
}

.c-bar-bottom {
  position: fixed;
  bottom: 0;
  z-index: 30;
  width: 100%;
  max-height: calc(100vh - 7em);
  pointer-events: all !important;
}

.c-bar-bottom--active {
  z-index: 30;
}

.c-bar-bottom--action {
  bottom: 0;
  display: flex;
}

.c-bar-bottom--is-ios {
  max-height: none;
}

.c-bar-bottom.bar-toggle-enter-active, .c-bar-bottom.bar-toggle-leave-active {
  transition: 600ms ease all;
}

.c-bar-bottom.bar-toggle-enter-to, .c-bar-bottom.bar-toggle-leave {
  max-height: calc(100vh - 7em);
}

.c-bar-bottom.bar-toggle-enter, .c-bar-bottom.bar-toggle-leave-to {
  max-height: 0;
}

.c-bar-bottom--action {
  height: calc(100% - 4em);
}

.c-bar-bottom--action.bar-toggle-enter-to, .c-bar-bottom--action.bar-toggle-leave {
  max-height: none;
  height: calc(100% - 4em);
}

.c-bar-bottom--action.bar-toggle-enter, .c-bar-bottom--action.bar-toggle-leave-to {
  max-height: none;
  height: 0;
}

.c-bar-bottom__wrapper {
  z-index: 1;
  width: 100%;
  background: var(--neutral-00);
  border-radius: 2rem 2rem 0 0;
  box-shadow: var(--box-shadow);
  pointer-events: all;
  max-height: calc(100vh - 7em);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  overflow: hidden;
}

.is-dark-mode .c-bar-bottom__wrapper {
  background: var(--neutral-50);
}

.c-bar-bottom--is-ios .c-bar-bottom__wrapper {
  justify-content: normal;
}

.c-bar-bottom--action .c-bar-bottom__wrapper {
  max-height: none;
}

.c-bar-bottom__section {
  background: var(--neutral-10);
}

.is-dark-mode .c-bar-bottom__section {
  background: var(--neutral-45);
}

.c-bar-bottom__content {
  overflow-y: scroll;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.c-bar-bottom--is-ios.c-bar-bottom--action .c-bar-bottom__content {
  display: block;
}

.c-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-weight: 600;
  background: transparent;
  line-height: 1.3em;
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .c-btn {
    font-size: 1rem;
  }
}

.c-btn[disabled] {
  opacity: 0.7;
  cursor: default;
  color: var(--primary-10);
}

.c-btn--primary {
  background: var(--neutral-60);
  color: white;
}

.c-btn--primary.c-btn--diapos {
  border: none;
  background: var(--neutral-00);
  color: var(--neutral-60);
}

.is-dark-mode .c-btn--primary {
  background: var(--neutral-00);
  color: var(--neutral-60);
}

.c-btn--primary:hover, .c-btn--primary:focus {
  text-decoration: none;
  background: var(--neutral-50) !important;
  color: white !important;
}

.c-btn--primary > i.fal {
  margin-right: 0.25rem;
}

.c-btn--primary:before {
  content: "";
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
  color: var(--secundary-40);
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--secundary-40);
  font-size: 1rem;
  transition: 300ms ease all;
}

.c-btn--primary.c-btn--no-icon::before {
  content: "";
  margin: 0;
}

.c-btn--primary:hover {
  text-decoration: none;
}

.c-btn--default {
  background: var(--neutral-15);
  color: var(--neutral-60);
}

@media screen and (prefers-color-scheme: dark) {
  .c-btn--default {
    background: var(--neutral-20);
  }
}

.c-btn--default.c-btn--diapos {
  border: 1px solid var(--neutral-00);
  background: transparent;
  color: var(--neutral-00);
}

.c-btn--default:hover, .c-btn--default:focus {
  text-decoration: none;
  background: var(--primary-40) !important;
  color: white !important;
}

.c-btn--default > i.fal {
  margin-right: 0.25rem;
}

.c-btn--text {
  white-space: nowrap;
  padding-left: 0;
  padding-right: 0;
}

.c-btn--text:after {
  content: "";
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
  color: var(--neutral-60);
  vertical-align: middle;
  margin-left: 0.5rem;
  font-size: 1rem;
  transition: 300ms ease all;
}

.is-dark-mode .c-btn--text:after {
  color: var(--neutral-20);
}

.c-btn--text:hover {
  text-decoration: none;
}

.c-btn--text:hover:after {
  margin-left: 1rem;
}

.c-btn--icon {
  height: 2.5rem;
  min-width: 2.5rem;
  border-radius: 2.5rem;
  padding: 0;
  display: inline-flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
}

.c-btn--icon:hover, .c-btn--icon:focus {
  text-decoration: none;
}

.c-btn--icon.c-btn--lg {
  padding: 0;
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
}

.c-btn--icon.c-btn--sm {
  padding: 0;
  font-size: 0.875rem;
}

.c-btn--icon.c-btn--default {
  background: var(--neutral-20);
  border: none;
}

.c-btn--icon.c-btn--default:hover, .c-btn--icon.c-btn--default:focus {
  text-decoration: none;
  background: var(--neutral-10);
}

.c-btn--icon.c-btn--secundary {
  color: var(--secundary-40);
  background: none;
  border: none;
}

.c-btn--icon.c-btn--secundary:hover, .c-btn--icon.c-btn--secundary:focus {
  text-decoration: none;
  color: var(--secundary-50);
}

.c-btn--icon > i.fal {
  margin-right: 0;
}

.c-car-menu {
  display: flex;
}

.c-car-menu__slide {
  transition: 300ms ease all;
  opacity: 1;
}

.c-car-menu__slide.swiper-slide-visible {
  opacity: 1;
}

.c-car-menu__item {
  margin: 0 0.5rem;
  padding: 2rem;
  border-radius: 2rem;
  background-color: #1b1b1b;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1em;
  opacity: 0.8;
  position: relative;
}

@media (min-width: 768px) {
  .c-car-menu__item {
    font-size: 1.5em;
  }
}

.c-car-menu__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 100%;
  border: 1px solid var(--primary-40);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

@media (min-width: 768px) {
  .c-car-menu__icon {
    width: 6rem;
    height: 6rem;
  }
}

.c-car-menu__label {
  margin-top: 1em;
}

.c-card {
  background-color: var(--neutral-10);
  padding-bottom: 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  border-radius: 1.5rem;
  background-size: 100% auto;
  background-position-y: bottom;
  position: relative;
}

.c-card--top-align {
  flex-direction: column;
}

@media (min-width: 768px) {
  .c-card--left-align {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .c-card--right-align {
    flex-direction: row;
  }
}

.c-card--dark {
  background-color: var(--neutral-60);
}

.c-card--dark * {
  color: var(--neutral-00);
}

.c-card--vertical-center {
  justify-content: center;
}

.c-card__before-header {
  border-radius: 1.5rem 1.5rem 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .c-card {
    padding-bottom: 1.5rem;
  }
}

.c-card__header {
  padding: 2rem;
  padding-bottom: 0;
}

.c-card__heading {
  padding: 0 2rem;
  padding-top: 1rem;
}

@media (min-width: 768px) {
  .c-card__heading {
    padding-top: 2rem;
  }
}

.c-card__title {
  margin: 0;
}

.c-card--primary .c-card__title, .c-card--dark .c-card__title {
  color: var(--neutral-00);
}

.c-card--center .c-card__title {
  text-align: center;
}

.c-card__content {
  flex: 0 0 auto;
  position: relative;
}

.c-card--top-align .c-card__content {
  margin-top: -1.5rem;
}

@media (min-width: 768px) {
  .c-card--left-align .c-card__content {
    flex: 0 0 60%;
    margin-left: -10%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .c-card--right-align .c-card__content {
    flex: 0 0 60%;
    margin-right: -10%;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.c-card__body {
  padding: 0 2rem;
  margin-top: 1.5rem;
}

.c-card__body:first-child {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .c-card__body:first-child {
    margin-top: 2rem;
  }
}

.c-card__footer {
  padding: 0 2rem;
  margin-top: 1.5rem;
}

.c-card--footer-center .c-card__footer {
  text-align: center;
}

.c-card__background-wrapper {
  width: 100%;
  border-radius: 0 0 1.5rem 1.5rem;
  overflow: hidden;
  position: relative;
  margin-bottom: -1.5rem;
  margin-top: -15%;
  z-index: 0;
}

.c-card--top-align .c-card__background-wrapper {
  border-radius: 1.5rem 1.5rem 0 0;
  margin-top: 0;
}

@media (min-width: 768px) {
  .c-card--right-align .c-card__background-wrapper, .c-card--left-align .c-card__background-wrapper {
    border-radius: 1.5rem;
    margin-top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
  }
}

@media (min-width: 768px) {
  .c-card--left-align .c-card__background-wrapper {
    width: 60%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}

.c-card__background-wrapper:before {
  content: "";
  display: block;
  padding-top: 66.666%;
  min-height: 8rem;
}

.c-card__background-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--neutral-10);
  background: linear-gradient(180deg, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
}

.c-card--dark .c-card__background-wrapper:after {
  background: var(--neutral-60);
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.c-card--top-align .c-card__background-wrapper:after {
  background: linear-gradient(180deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
}

.c-card--dark.c-card--top-align .c-card__background-wrapper:after {
  background: var(--neutral-60);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 100%);
}

@media (min-width: 768px) {
  .c-card--left-align .c-card__background-wrapper:after {
    background: linear-gradient(90deg, rgba(247, 247, 247, 0) 0%, #f7f7f7 100%);
  }

  .c-card--dark.c-card--left-align .c-card__background-wrapper:after {
    background: var(--neutral-60);
    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, black 100%);
  }
}

@media (min-width: 768px) {
  .c-card--right-align .c-card__background-wrapper:after {
    background: linear-gradient(90deg, #f7f7f7 0%, rgba(247, 247, 247, 0) 100%);
  }

  .c-card--dark.c-card--right-align .c-card__background-wrapper:after {
    background: var(--neutral-60);
    background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
  }
}

.c-card__background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-checklist {
  margin: 0;
  list-style: none;
  padding: 0;
  display: inline-block;
}

.c-checklist__item {
  margin-top: 0.5em;
  position: relative;
  padding-left: 2em;
  text-align: left;
}

.c-checklist__item:first-child {
  margin-top: 0;
}

.c-checklist__item:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  color: #296A33;
  margin-right: 1em;
  position: absolute;
  left: 0;
  top: 0.3em;
}

.c-checklist__item.is-off {
  color: var(--neutral-40);
}

.c-checklist__item.is-off:before {
  content: "";
  color: var(--neutral-40) !important;
}

.c-content-section {
  min-height: 700px;
  position: relative;
}

@media (min-width: 768px) {
  .c-content-section {
    min-height: 60vh;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
  }
}

.c-content-section__visual {
  margin-bottom: -10%;
}

@media (min-width: 768px) {
  .c-content-section__visual {
    margin-bottom: 0;
  }

  .c-content-section__visual:first-child {
    margin-right: -10%;
  }

  .c-content-section__visual:last-child {
    margin-left: -10%;
  }
}

.c-content-section__text {
  position: relative;
  padding: 0 2rem;
}

@media (min-width: 768px) {
  .c-content-section__text {
    padding: 0;
    width: 384px;
  }
}

@media (min-width: 1120px) {
  .c-content-section__text {
    width: 480px;
  }
}

.c-content-section__text:first-child {
  margin-left: auto;
  position: relative;
  z-index: 1;
}

.c-content-section__full-img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 0;
  transform: translateY(-50%);
}

.c-content-section__full-img.align-top {
  transform: translateY(-70%);
}

.c-cta {
  background: var(--neutral-10);
  padding: 1.5rem;
  border-radius: 1.5rem;
  margin-top: 7rem;
}

@media (min-width: 768px) {
  .c-cta {
    padding: 3rem;
  }
}

.is-dark-mode .c-cta {
  background: var(--neutral-50);
}

.c-cta__title {
  font-size: 3rem;
  margin-top: -5rem !important;
}

@media (min-width: 768px) {
  .c-cta__title {
    font-size: 5rem;
    margin-top: -9.5rem !important;
    margin-left: -8rem;
  }
}

.c-dropdown {
  background: var(--neutral-10);
  border-radius: 1rem;
  padding-bottom: 1.5rem;
  margin-top: 1rem;
}

.c-dropdown:first-child {
  margin-top: 0;
}

.c-dropdown__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  padding-top: 1.5rem;
  cursor: pointer;
}

.c-dropdown__title:hover {
  text-decoration: none;
}

.c-dropdown__title:after {
  content: "";
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
  vertical-align: middle;
  margin-right: 0.5rem;
  color: var(--secundary-40);
  font-size: 1rem;
  transition: 300ms ease all;
}

.c-dropdown__title:hover:after {
  transform: rotate(180deg);
}

.c-dropdown.is-active .c-dropdown__title {
  transform: rotate(180deg);
}

.c-dropdown__body-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: 300ms ease all;
}

.c-dropdown__body-wrapper.is-active, .entry .c-dropdown__body-wrapper {
  max-height: 400px;
}

.c-dropdown__body {
  padding: 0 1.5rem;
  padding-top: 1.5rem;
}

.c-footer {
  padding-top: 12rem;
  padding-bottom: 4rem;
  background: url("/images/footer-impact.svg") no-repeat;
  background-position: bottom center;
  background-size: contain;
}

.c-hero-scroll {
  position: relative;
}

.c-hero-scroll--sticky {
  position: sticky;
  top: 0;
}

.c-hero-scroll:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: var(--neutral-10);
}

.c-hero-scroll--impact-bg .c-hero-scroll:before {
  background-image: url("/images/top-impact-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
}

.c-hero-scroll__content {
  padding: 3rem 1.5rem;
  padding-bottom: 12rem;
}

@media (min-width: 768px) {
  .c-hero-scroll__content {
    padding: 8rem 1.5rem;
    padding-right: 2rem;
    margin-left: auto;
    width: 450px;
  }
}

@media (min-width: 1120px) {
  .c-hero-scroll__content {
    padding: 12rem 1.5rem;
    width: 624px;
  }
}

.c-icon-info {
  display: flex;
  align-items: center;
}

.c-icon-info__icon {
  flex: 0 0 3rem;
  font-size: 2em;
  margin-right: 1rem;
}

.c-image-zoomable {
  position: relative;
}

.c-image-zoomable:after {
  content: "";
  color: white;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.c-image--impact {
  position: relative;
}

.c-image--impact:before {
  content: "";
  display: block;
  width: 60vw;
  height: 60vw;
  background-image: url("/images/top-impact-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -20%;
  left: 30vw;
}

.c-image__image {
  position: relative;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow);
}

.c-input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-family: Raleway, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  background: var(--neutral-10);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease all;
}

@media screen and (prefers-color-scheme: dark) {
  .c-input {
    background: var(--neutral-00);
  }
}

.c-input.is-error, .c-input--error {
  border-color: var(--color-danger);
}

.c-input:focus {
  border-color: var(--primary-50);
}

.c-input:disabled, .c-input.is-disabled {
  border-bottom-color: var(--neutral-20) !important;
  background: var(--neutral-20) !important;
}

.c-input:disabled::-moz-placeholder, .c-input.is-disabled::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input:disabled:-ms-input-placeholder, .c-input.is-disabled:-ms-input-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input:disabled::placeholder, .c-input.is-disabled::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input:-ms-input-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input--lg {
  padding: 1rem;
}

@media (min-width: 768px) {
  .c-input--lg {
    padding: 1.5rem;
    font-size: 1.25rem;
  }
}

.c-input--center {
  text-align: center;
}

.c-input--number {
  text-align: right;
}

.c-input--block {
  display: block;
  width: 100%;
}

.c-input__help {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input__help.is-error {
  color: var(--color-danger);
}

.c-input__help.is-error:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 1.25rem;
  padding: 0.5rem 0;
}

.c-input:focus {
  outline: none;
}

.c-input-group {
  margin-top: 0.5rem;
  display: block;
}

.c-input-group:first-child {
  margin-top: 0;
}

.c-input-group--horizontal {
  display: grid;
}

.c-input-group--center {
  align-items: center;
}

.c-input-group__label {
  color: var(--neutral-45);
  display: block;
  margin: 0;
}

.c-input-group--horizontal .c-input-group__label {
  margin-top: 0.5rem;
}

.c-input-group__input {
  margin-top: 0.5rem;
  position: relative;
}

.c-input-group__input:first-child {
  margin-top: 0;
}

.c-input-group--horizontal .c-input-group__input {
  margin-top: 0;
}

.c-input-group__input > input {
  display: block;
  width: 100%;
}

.c-input-group__passtoggle {
  background: none;
  border: none;
  font-size: 1rem;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}

.c-input-group__passtoggle:focus {
  outline: none;
}

.c-input-select {
  position: relative;
}

.c-input-select--block {
  display: block;
}

.c-input-select__label {
  color: var(--neutral-50);
  line-height: 1.5em;
}

.c-input-select__input {
  width: 100%;
}

.c-input-select__input select {
  display: block;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  font-family: Raleway, sans-serif;
  font-weight: 500;
  padding: 0.5rem 1rem;
  min-height: 2.5rem;
  background: var(--neutral-10);
  margin: 0;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--neutral-30);
  border-radius: 0.5rem;
  max-width: 100%;
  color: var(--neutral-50);
  overflow: hidden;
  text-overflow: ellipsis;
  transition: 200ms ease all;
  padding-right: 2rem;
}

@media screen and (prefers-color-scheme: dark) {
  .c-input-select__input select {
    background: var(--neutral-00);
  }
}

.c-input-select__input select.is-error, .c-input-select__input select--error {
  border-color: var(--color-danger);
}

.c-input-select__input select:focus {
  border-color: var(--primary-50);
}

.c-input-select__input select:disabled, .c-input-select__input select.is-disabled {
  border-bottom-color: var(--neutral-20) !important;
  background: var(--neutral-20) !important;
}

.c-input-select__input select:disabled::-moz-placeholder, .c-input-select__input select.is-disabled::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select:disabled:-ms-input-placeholder, .c-input-select__input select.is-disabled:-ms-input-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select:disabled::placeholder, .c-input-select__input select.is-disabled::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select::-moz-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select:-ms-input-placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select::placeholder {
  color: var(--neutral-40);
  font-weight: normal;
}

.c-input-select__input select--lg {
  padding: 1rem;
}

@media (min-width: 768px) {
  .c-input-select__input select--lg {
    padding: 1.5rem;
    font-size: 1.25rem;
  }
}

.c-input-select__input select--center {
  text-align: center;
}

.c-input-select__input select--number {
  text-align: right;
}

.c-input-select__input select--block {
  display: block;
  width: 100%;
}

.c-input-select__input select__help {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-left: 1rem;
  color: var(--neutral-50);
}

.c-input-select__input select__help.is-error {
  color: var(--color-danger);
}

.c-input-select__input select__help.is-error:before {
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
}

.c-input-select__input select__counter {
  text-align: right;
  color: var(--neutral-50);
  font-size: 1.25rem;
  padding: 0.5rem 0;
}

.c-input-select__input select:focus {
  outline: none;
}

.is-error .c-input-select__input select {
  border-color: var(--color-danger);
}

.c-input-select__input select:focus {
  border-bottom-color: var(--primary-50);
  outline: none;
}

.c-input-select__input select::-moz-placeholder {
  color: var(--neutral-20);
}

.c-input-select__input select:-ms-input-placeholder {
  color: var(--neutral-20);
}

.c-input-select__input select::placeholder {
  color: var(--neutral-20);
}

.c-input-select__select-pointer {
  position: absolute;
  top: 0;
  height: 100%;
  right: 1rem;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.c-lead {
  margin-top: 0.5em;
  font-weight: 300;
}

@media (min-width: 1120px) {
  .c-lead {
    font-size: 1.25rem;
  }
}

.c-lead:first-child {
  margin-top: 0;
}

.c-lead--diapos {
  color: var(--neutral-00);
}

.c-link-title {
  white-space: nowrap;
}

.c-link-title:after {
  content: "";
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
  color: var(--secundary-40);
  vertical-align: middle;
  margin-left: 1rem;
  color: var(--secundary-40);
  font-size: 1rem;
  transition: 300ms ease all;
}

.c-link-title:hover {
  text-decoration: none;
}

.c-link-title:hover:after {
  margin-left: 1.5rem;
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.c-nav-main__item {
  position: relative;
}

.c-nav-main__link {
  position: relative;
  font-weight: 600;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: inline-block;
}

.c-nav-main__item.is-active .c-nav-main__link {
  background: var(--neutral-10);
}

.c-nav-main__dropdown-wrapper {
  position: absolute;
  z-index: 2;
  top: 3.5rem;
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
}

.c-nav-main__dropdown-wrapper:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-bottom-color: var(--neutral-00);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (prefers-color-scheme: dark) {
  .c-nav-main__dropdown-wrapper:after {
    border-bottom-color: var(--neutral-20);
    box-shadow: none;
  }
}

.c-nav-main__dropdown {
  background: var(--neutral-00);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  padding: 1rem 0;
}

@media screen and (prefers-color-scheme: dark) {
  .c-nav-main__dropdown {
    background-color: var(--neutral-20);
    box-shadow: none;
  }
}

@media (max-height: 600px) {
  .c-nav-main__dropdown {
    max-height: 18em;
    overflow-y: auto;
  }
}

.c-nav-dropdown {
  transition: 300ms ease all;
}

.c-nav-dropdown__main {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--neutral-00);
  box-shadow: var(--box-shadow);
  -webkit-animation: fadeInDown 300ms ease forwards;
          animation: fadeInDown 300ms ease forwards;
}

.c-nav-dropdown.bar-toggle-leave-to .c-nav-dropdown__main {
  -webkit-animation: fadeOutUp 300ms ease forwards;
          animation: fadeOutUp 300ms ease forwards;
}

.c-nav-dropdown__main:before {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  bottom: 0;
  top: 0;
  right: 0;
  z-index: 0;
  background: var(--neutral-10);
}

.is-dark-mode .c-nav-dropdown__main {
  background: var(--neutral-50);
}

.is-dark-mode .c-nav-dropdown__main:before {
  background: var(--neutral-45);
}

.c-nav-dropdown__backdrop {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeIn 300ms ease;
          animation: fadeIn 300ms ease;
}

.c-nav-dropdown.bar-toggle-enter-to .c-nav-dropdown__backdrop {
  -webkit-animation: fadeIn 300ms ease forwards;
          animation: fadeIn 300ms ease forwards;
}

.c-nav-dropdown.bar-toggle-leave-to .c-nav-dropdown__backdrop {
  -webkit-animation: fadeOut 300ms ease forwards;
          animation: fadeOut 300ms ease forwards;
}

.c-nav__item {
  font-weight: 600;
}

.c-nav__link {
  padding: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 300ms ease all;
}

.c-nav__link:after {
  content: "";
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
}

.c-nav__link:hover {
  text-decoration: none;
  transform: translateX(16px);
}

.c-navbar-bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 30;
}

.c-navbar-bottom__button {
  margin-top: 2rem;
  pointer-events: none;
  margin-bottom: 1rem;
  text-align: center;
}

.c-navbar-bottom__button .c-btn {
  pointer-events: all;
}

@media (min-width: 900px) {
  .c-navbar-bottom__button {
    display: none;
  }
}

.c-navbar-bottom__submenu {
  margin-top: 1rem;
}

.c-navbar-bottom__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  -webkit-animation: fadeIn 300ms ease;
          animation: fadeIn 300ms ease;
}

.c-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: auto;
  max-height: 100vh;
}

.c-panel--no-height {
  height: auto !important;
}

.c-panel__header {
  padding: 0 1.5rem;
  padding-top: 1.5rem;
  position: relative;
  flex: 0 0 auto;
}

.c-panel__body {
  flex: 1 1 auto;
  max-height: calc(100vh);
  overflow: auto;
  transition: 300ms ease max-height;
}

.c-panel__body-wrapper {
  padding: 1rem 1.5rem;
}

.c-panel__footer {
  padding: 1rem 1.5rem;
  position: relative;
  flex: 0 0 auto;
}

.c-redefinedriving {
  position: relative;
}

.c-redefinedriving__hero {
  height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("/images/top-impact.svg") no-repeat;
  background-position: top center;
  background-size: 300px auto;
}

@media (min-width: 768px) {
  .c-redefinedriving__hero {
    height: 100vh;
  }
}

@media (min-width: 768px) {
  .c-redefinedriving__hero {
    background-size: 1080px auto;
  }
}

.c-redefinedriving__hero-video {
  position: absolute;
  z-index: -1;
  top: 0;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  height: 750px;
}

@media (min-width: 768px) {
  .c-redefinedriving__hero-video {
    height: 100vh;
  }
}

.c-redefinedriving__intuitive-communication {
  position: relative;
}

.c-redefinedriving__intuitive-canvas {
  width: 100vw;
  height: 750px;
  z-index: 0;
  margin-top: -750px;
}

@media (min-width: 768px) {
  .c-redefinedriving__intuitive-canvas {
    height: 100vh;
    margin-top: -100vh;
  }
}

.c-redefinedriving__content {
  position: relative;
  padding-top: 400px;
}

@media (min-width: 768px) {
  .c-redefinedriving__content {
    padding-top: 50vh;
  }
}

.c-redefinedriving__bigger-items-wrapper {
  width: 100vw;
}

.c-redefinedriving__bigger-items-buttons {
  perspective: 31px;
  perspective-origin: bottom center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0.7) translate(-50%, -110%);
}

@media (min-width: 768px) {
  .c-redefinedriving__bigger-items-buttons {
    transform: scale(1) translate(-48%, -86%);
  }
}

.c-redefinedriving__bigger-items {
  z-index: 1;
  padding-left: 8rem;
  margin-top: 0;
  transform: rotateY(0.3deg) rotateZ(-1deg) rotateX(-0.2deg);
}

@media (min-width: 768px) {
  .c-redefinedriving__bigger-items {
    transform: rotateY(0.3deg) rotateZ(-1deg) rotateX(-0.2deg);
    margin-left: 0 !important;
  }
}

.c-redefinedriving__bigger-item {
  background: var(--neutral-50);
  width: 8rem;
  margin: 0 0.5rem;
}

.c-redefinedriving__content-item {
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, black 20%, black 80%, rgba(0, 0, 0, 0) 100%);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .c-redefinedriving__content-item {
    background: none;
  }
}

.c-redefinedriving__bigger-displays-wrapper {
  width: 100vw;
  height: 300vh;
  overflow-x: hidden;
}

.c-redefinedriving__bigger-wrapper {
  min-width: 600px;
  padding: 2px;
}

.c-redefinedriving__bigger-displays {
  background: #000;
  z-index: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  top: 0;
}

.c-redefinedriving__bigger-displays-mask {
  top: 0;
  left: 0;
  width: 100%;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-image: url("/pages/redefinedriving/bigger-displays/bigger-displays-mask.png");
          mask-image: url("/pages/redefinedriving/bigger-displays/bigger-displays-mask.png");
  background-image: url("/pages/redefinedriving/bigger-displays/bigger-displays.png");
  background-size: contain;
  position: relative;
}

@media (min-width: 768px) {
  .c-redefinedriving__bigger-displays-mask {
    width: 100vw;
  }
}

.c-redefinedriving__bigger-displays-mask:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}

.c-redefinedriving__bigger-displays-mask > iframe, .c-redefinedriving__bigger-displays-mask > video, .c-redefinedriving__bigger-displays-mask > .video-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.c-redefinedriving__bigger-displays-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2px;
  box-sizing: border-box;
}

.c-redefinedriving__freedom {
  height: 750px;
  position: relative;
}

@media (min-width: 768px) {
  .c-redefinedriving__freedom {
    height: 100vh;
    display: flex;
    align-items: center;
  }
}

.c-redefinedriving__freedom-video {
  width: 80%;
}

@media (min-width: 768px) {
  .c-redefinedriving__freedom-video {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 50%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.c-redefinedriving__perfect {
  opacity: 0;
  height: 750px;
  position: relative;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .c-redefinedriving__perfect {
    height: 100vh;
  }
}

.c-redefinedriving__perfect-video {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .c-redefinedriving__perfect-video {
    width: 100%;
  }
}

.c-redefinedriving__display {
  position: relative;
}

.c-redefinedriving__display-canvas {
  position: absolute;
  top: 0;
}

.c-redefinedriving__black {
  display: flex;
  align-items: center;
  height: 750px;
}

@media (min-width: 768px) {
  .c-redefinedriving__black {
    height: 100vh;
  }
}

.c-redefinedriving__black {
  position: relative;
}

.c-redefinedriving__black-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-redefinedriving__high-quality-wrapper {
  height: 2000px;
}

@media (min-width: 768px) {
  .c-redefinedriving__high-quality-wrapper {
    height: 300vh;
  }
}

.c-redefinedriving__high-quality {
  position: relative;
  display: flex;
  align-items: center;
  height: 750px;
}

@media (min-width: 768px) {
  .c-redefinedriving__high-quality {
    height: 100vh;
  }
}

.c-redefinedriving__high-quality-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.c-redefinedriving__high-quality-img-wrapper:before {
  content: "";
  padding-top: 100%;
}

.c-redefinedriving__high-quality-img {
  position: absolute;
  top: 0;
  height: 100%;
  transform-origin: center left;
  max-width: initial;
  opacity: 0;
}

.c-redefinedriving__high-quality-video {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
}

.c-redefinedriving__display-turn {
  width: 100%;
}

.c-redefinedriving__fluid-interactivity-wrapper {
  height: 1500px;
}

@media (min-width: 768px) {
  .c-redefinedriving__fluid-interactivity-wrapper {
    height: 200vh;
  }
}

.c-redefinedriving__fluid-interactivity {
  position: relative;
  display: flex;
  align-items: center;
  height: 750px;
}

@media (min-width: 768px) {
  .c-redefinedriving__fluid-interactivity {
    height: 100vh;
  }
}

.c-redefinedriving__fluid-interactivity-video {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  visibility: hidden;
}

.c-redefinedriving__fluid-interactivity-text {
  transform: translateY("100px");
}

.c-side-card {
  border-radius: 1.5rem 0 0 1.5rem;
  background-size: auto 100%;
  position: relative;
  transition: 3000ms ease background;
  background-position: center;
}

@media (min-width: 768px) {
  .c-side-card:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    height: 100%;
    right: 0;
    width: 20%;
    background: black;
    background: linear-gradient(270deg, black 28%, rgba(0, 0, 0, 0) 100%);
  }
}

a.c-side-card:hover {
  background-size: auto 120%;
}

.c-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.c-social-list__item {
  display: inline-block;
  padding-top: 0.5rem;
}

.c-table {
  font-size: 0.875rem;
}

.c-table__wrapper {
  overflow-x: scroll;
  position: relative;
  padding-bottom: 1rem;
  box-shadow: inset -5px 0 5px -2px rgba(0, 0, 0, 0.1);
}

.c-table__item, .c-table__head, .c-table__row-head {
  padding: 1rem;
}

.c-table__row-head {
  font-weight: 600;
  position: sticky;
  left: 0;
  white-space: nowrap;
  background: var(--neutral-00);
}

.c-table__row-head:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 5px 0 5px -2px rgba(0, 0, 0, 0.1);
  z-index: -1;
}

.c-table__head {
  color: var(--secundary-40);
  font-weight: 600;
  border-bottom: 1px solid var(--neutral-10);
  text-align: center;
}

.c-table__item {
  text-align: center;
}

.c-table__row:nth-child(even) .c-table__item {
  background-color: var(--neutral-10);
}

@media (min-width: 768px) {
  .c-topnav-nav__item {
    display: inline-block;
  }
}

.c-topnav-nav__link {
  display: block;
  padding: 0.5rem;
  text-decoration: underline;
}

.c-topnav-nav__item.is-current .c-topnav-nav__link, .c-topnav-nav__item.exact-active .c-topnav-nav__link {
  font-weight: 700;
  text-decoration: none;
}

.c-topnav {
  position: sticky;
  z-index: 10;
  top: 0;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(255, 255, 255, 0.72);
}

.is-dark-mode .c-topnav {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(0, 0, 0, 0.1);
}

.is-gray-mode .c-topnav {
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  background-color: rgba(247, 247, 247, 0.8);
}

.c-topnav__container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

@media (min-width: 450px){
  .c-topnav__container{
    max-width: 450px;
  }
}

@media (min-width: 600px){
  .c-topnav__container{
    max-width: 600px;
  }
}

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

@media (min-width: 900px){
  .c-topnav__container{
    max-width: 900px;
  }
}

@media (min-width: 1120px){
  .c-topnav__container{
    max-width: 1120px;
  }
}

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

.c-topnav__container{
  border: 1px solid var(--neutral-20);
  border-left: 0;
  border-right: 0;
}

.is-dark-mode .c-topnav__container {
  border-color: var(--neutral-50);
}

@media (min-width: 768px) {
  .c-topnav__container {
    display: flex;
    justify-content: space-between;
  }
}

.c-topnav__title {
  font-weight: 700;
  padding: 0.5rem 0;
  display: flex;
  justify-content: space-between;
}

.c-topnav--no-menu .c-topnav__title {
  justify-content: flex-start;
}

.c-topnav__title:focus, .c-topnav__title:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .c-topnav__title:after {
    content: "";
    font-weight: 300;
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    color: var(--primary-40);
  }

  .c-topnav--no-menu .c-topnav__title:after {
    content: "";
  }
}

@media (min-width: 768px) {
  .c-topnav__title:before {
    content: "";
    font-weight: 300;
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    color: var(--primary-40);
    margin-right: 1rem;
  }
}

.c-topnav--no-menu .c-topnav__title:before {
  content: "";
  font-weight: 300;
  font-family: "Font Awesome 5 Pro";
  display: inline-block;
  color: var(--primary-40);
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .c-topnav__nav-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: 300ms ease all;
  }

  .c-topnav.is-open .c-topnav__nav-wrapper {
    max-height: 600px;
  }
}

/* purgecss end ignore */

/* Start purging... */

/*
  This layer beats – or 'trumps' – all other layers, and has the power to override anything at all that has gone before it.
  It is inelegant and heavy-handed, and contains utility and helper classes, hacks and overrides.

  A lot of the declarations in this layer will carry !important (e.g. .text-center { text-align: centre !important; }).
  This is the highest specificity layer – it includes the most explicit types of rule, with the most narrow focus.
  This layer forms the point of the Triangle.
*/

.u-visible-hidden {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.u-link-title {
  vertical-align: center;
}

.u-link-title .fal {
  color: var(--secundairy-40);
}

/* Stop purging. */

[x-cloak] {
  display: none !important;
}

/* purgecss start ignore */

/* purgecss end ignore */

@media (min-width: 450px){
  .mobile-large\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .mobile-large\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .mobile-large\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .mobile-large\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .mobile-large\:u-container{
      max-width: 1120px;
    }
  }

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

  .mobile-large\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .mobile-large\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .mobile-large\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .mobile-large\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .mobile-large\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .mobile-large\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .mobile-large\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .mobile-large\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .mobile-large\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .mobile-large\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .mobile-large\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .mobile-large\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .mobile-large\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .mobile-large\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .mobile-large\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .mobile-large\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .mobile-large\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .mobile-large\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .mobile-large\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .mobile-large\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .mobile-large\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .mobile-large\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .mobile-large\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .mobile-large\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .mobile-large\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .mobile-large\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .mobile-large\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .mobile-large\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .mobile-large\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .mobile-large\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .mobile-large\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .mobile-large\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .mobile-large\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .mobile-large\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .mobile-large\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .mobile-large\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .mobile-large\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .mobile-large\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .mobile-large\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .mobile-large\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .mobile-large\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .mobile-large\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .mobile-large\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .mobile-large\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .mobile-large\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .mobile-large\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .mobile-large\:u-bg-local{
    background-attachment: local !important;
  }

  .mobile-large\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .mobile-large\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .mobile-large\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .mobile-large\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .mobile-large\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .mobile-large\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-transparent{
    background-color: transparent !important;
  }

  .mobile-large\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .mobile-large\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .mobile-large\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .mobile-large\:u-bg-none{
    background-image: none !important;
  }

  .mobile-large\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .mobile-large\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile-large\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .mobile-large\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .mobile-large\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .mobile-large\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .mobile-large\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .mobile-large\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .mobile-large\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .mobile-large\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .mobile-large\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .mobile-large\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .mobile-large\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .mobile-large\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .mobile-large\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .mobile-large\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .mobile-large\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .mobile-large\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .mobile-large\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile-large\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile-large\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .mobile-large\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .mobile-large\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .mobile-large\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .mobile-large\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .mobile-large\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .mobile-large\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .mobile-large\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .mobile-large\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .mobile-large\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .mobile-large\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .mobile-large\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .mobile-large\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .mobile-large\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .mobile-large\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .mobile-large\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .mobile-large\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile-large\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .mobile-large\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .mobile-large\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .mobile-large\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .mobile-large\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile-large\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile-large\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .mobile-large\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .mobile-large\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .mobile-large\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .mobile-large\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .mobile-large\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .mobile-large\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .mobile-large\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .mobile-large\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .mobile-large\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .mobile-large\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .mobile-large\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .mobile-large\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .mobile-large\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .mobile-large\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .mobile-large\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .mobile-large\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .mobile-large\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .mobile-large\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .mobile-large\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .mobile-large\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .mobile-large\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .mobile-large\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .mobile-large\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .mobile-large\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile-large\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .mobile-large\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .mobile-large\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .mobile-large\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .mobile-large\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .mobile-large\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile-large\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .mobile-large\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .mobile-large\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .mobile-large\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .mobile-large\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile-large\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile-large\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .mobile-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .mobile-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .mobile-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .mobile-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .mobile-large\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .mobile-large\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .mobile-large\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .mobile-large\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .mobile-large\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .mobile-large\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .mobile-large\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .mobile-large\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .mobile-large\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .mobile-large\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .mobile-large\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .mobile-large\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .mobile-large\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .mobile-large\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .mobile-large\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .mobile-large\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .mobile-large\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .mobile-large\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .mobile-large\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .mobile-large\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile-large\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .mobile-large\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .mobile-large\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .mobile-large\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .mobile-large\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .mobile-large\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .mobile-large\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .mobile-large\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .mobile-large\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .mobile-large\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .mobile-large\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .mobile-large\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .mobile-large\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .mobile-large\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .mobile-large\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .mobile-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .mobile-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .mobile-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .mobile-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .mobile-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .mobile-large\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .mobile-large\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .mobile-large\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .mobile-large\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .mobile-large\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .mobile-large\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .mobile-large\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .mobile-large\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .mobile-large\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .mobile-large\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .mobile-large\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .mobile-large\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .mobile-large\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .mobile-large\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .mobile-large\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .mobile-large\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .mobile-large\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .mobile-large\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile-large\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile-large\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile-large\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile-large\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile-large\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile-large\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile-large\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile-large\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile-large\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile-large\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile-large\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile-large\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile-large\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile-large\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .mobile-large\:u-bg-bottom{
    background-position: bottom !important;
  }

  .mobile-large\:u-bg-center{
    background-position: center !important;
  }

  .mobile-large\:u-bg-left{
    background-position: left !important;
  }

  .mobile-large\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .mobile-large\:u-bg-left-top{
    background-position: left top !important;
  }

  .mobile-large\:u-bg-right{
    background-position: right !important;
  }

  .mobile-large\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .mobile-large\:u-bg-right-top{
    background-position: right top !important;
  }

  .mobile-large\:u-bg-top{
    background-position: top !important;
  }

  .mobile-large\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .mobile-large\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .mobile-large\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .mobile-large\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .mobile-large\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .mobile-large\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .mobile-large\:u-bg-auto{
    background-size: auto !important;
  }

  .mobile-large\:u-bg-cover{
    background-size: cover !important;
  }

  .mobile-large\:u-bg-contain{
    background-size: contain !important;
  }

  .mobile-large\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .mobile-large\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .mobile-large\:u-border-separate{
    border-collapse: separate !important;
  }

  .mobile-large\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-transparent{
    border-color: transparent !important;
  }

  .mobile-large\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .mobile-large\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .mobile-large\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .mobile-large\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .mobile-large\:u-rounded-none{
    border-radius: 0 !important;
  }

  .mobile-large\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .mobile-large\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .mobile-large\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .mobile-large\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .mobile-large\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .mobile-large\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .mobile-large\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .mobile-large\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .mobile-large\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .mobile-large\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .mobile-large\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .mobile-large\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .mobile-large\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .mobile-large\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .mobile-large\:u-border-solid{
    border-style: solid !important;
  }

  .mobile-large\:u-border-dashed{
    border-style: dashed !important;
  }

  .mobile-large\:u-border-dotted{
    border-style: dotted !important;
  }

  .mobile-large\:u-border-double{
    border-style: double !important;
  }

  .mobile-large\:u-border-none{
    border-style: none !important;
  }

  .mobile-large\:u-border-0{
    border-width: 0px !important;
  }

  .mobile-large\:u-border-2{
    border-width: 2px !important;
  }

  .mobile-large\:u-border-4{
    border-width: 4px !important;
  }

  .mobile-large\:u-border-8{
    border-width: 8px !important;
  }

  .mobile-large\:u-border{
    border-width: 1px !important;
  }

  .mobile-large\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .mobile-large\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .mobile-large\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .mobile-large\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .mobile-large\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .mobile-large\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .mobile-large\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .mobile-large\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .mobile-large\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .mobile-large\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .mobile-large\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .mobile-large\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .mobile-large\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .mobile-large\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .mobile-large\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .mobile-large\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .mobile-large\:u-border-t{
    border-top-width: 1px !important;
  }

  .mobile-large\:u-border-r{
    border-right-width: 1px !important;
  }

  .mobile-large\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .mobile-large\:u-border-l{
    border-left-width: 1px !important;
  }

  .mobile-large\:u-box-border{
    box-sizing: border-box !important;
  }

  .mobile-large\:u-box-content{
    box-sizing: content-box !important;
  }

  .mobile-large\:u-cursor-auto{
    cursor: auto !important;
  }

  .mobile-large\:u-cursor-default{
    cursor: default !important;
  }

  .mobile-large\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .mobile-large\:u-cursor-wait{
    cursor: wait !important;
  }

  .mobile-large\:u-cursor-text{
    cursor: text !important;
  }

  .mobile-large\:u-cursor-move{
    cursor: move !important;
  }

  .mobile-large\:u-cursor-help{
    cursor: help !important;
  }

  .mobile-large\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .mobile-large\:u-block{
    display: block !important;
  }

  .mobile-large\:u-inline-block{
    display: inline-block !important;
  }

  .mobile-large\:u-inline{
    display: inline !important;
  }

  .mobile-large\:u-flex{
    display: flex !important;
  }

  .mobile-large\:u-inline-flex{
    display: inline-flex !important;
  }

  .mobile-large\:u-table{
    display: table !important;
  }

  .mobile-large\:u-table-caption{
    display: table-caption !important;
  }

  .mobile-large\:u-table-cell{
    display: table-cell !important;
  }

  .mobile-large\:u-table-column{
    display: table-column !important;
  }

  .mobile-large\:u-table-column-group{
    display: table-column-group !important;
  }

  .mobile-large\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .mobile-large\:u-table-header-group{
    display: table-header-group !important;
  }

  .mobile-large\:u-table-row-group{
    display: table-row-group !important;
  }

  .mobile-large\:u-table-row{
    display: table-row !important;
  }

  .mobile-large\:u-flow-root{
    display: flow-root !important;
  }

  .mobile-large\:u-grid{
    display: grid !important;
  }

  .mobile-large\:u-inline-grid{
    display: inline-grid !important;
  }

  .mobile-large\:u-contents{
    display: contents !important;
  }

  .mobile-large\:u-hidden{
    display: none !important;
  }

  .mobile-large\:u-flex-row{
    flex-direction: row !important;
  }

  .mobile-large\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .mobile-large\:u-flex-col{
    flex-direction: column !important;
  }

  .mobile-large\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .mobile-large\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .mobile-large\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .mobile-large\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .mobile-large\:u-place-items-auto{
    place-items: auto !important;
  }

  .mobile-large\:u-place-items-start{
    place-items: start !important;
  }

  .mobile-large\:u-place-items-end{
    place-items: end !important;
  }

  .mobile-large\:u-place-items-center{
    place-items: center !important;
  }

  .mobile-large\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .mobile-large\:u-place-content-center{
    place-content: center !important;
  }

  .mobile-large\:u-place-content-start{
    place-content: start !important;
  }

  .mobile-large\:u-place-content-end{
    place-content: end !important;
  }

  .mobile-large\:u-place-content-between{
    place-content: space-between !important;
  }

  .mobile-large\:u-place-content-around{
    place-content: space-around !important;
  }

  .mobile-large\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .mobile-large\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .mobile-large\:u-place-self-auto{
    place-self: auto !important;
  }

  .mobile-large\:u-place-self-start{
    place-self: start !important;
  }

  .mobile-large\:u-place-self-end{
    place-self: end !important;
  }

  .mobile-large\:u-place-self-center{
    place-self: center !important;
  }

  .mobile-large\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .mobile-large\:u-items-start{
    align-items: flex-start !important;
  }

  .mobile-large\:u-items-end{
    align-items: flex-end !important;
  }

  .mobile-large\:u-items-center{
    align-items: center !important;
  }

  .mobile-large\:u-items-baseline{
    align-items: baseline !important;
  }

  .mobile-large\:u-items-stretch{
    align-items: stretch !important;
  }

  .mobile-large\:u-content-center{
    align-content: center !important;
  }

  .mobile-large\:u-content-start{
    align-content: flex-start !important;
  }

  .mobile-large\:u-content-end{
    align-content: flex-end !important;
  }

  .mobile-large\:u-content-between{
    align-content: space-between !important;
  }

  .mobile-large\:u-content-around{
    align-content: space-around !important;
  }

  .mobile-large\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .mobile-large\:u-self-auto{
    align-self: auto !important;
  }

  .mobile-large\:u-self-start{
    align-self: flex-start !important;
  }

  .mobile-large\:u-self-end{
    align-self: flex-end !important;
  }

  .mobile-large\:u-self-center{
    align-self: center !important;
  }

  .mobile-large\:u-self-stretch{
    align-self: stretch !important;
  }

  .mobile-large\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .mobile-large\:u-justify-items-start{
    justify-items: start !important;
  }

  .mobile-large\:u-justify-items-end{
    justify-items: end !important;
  }

  .mobile-large\:u-justify-items-center{
    justify-items: center !important;
  }

  .mobile-large\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .mobile-large\:u-justify-start{
    justify-content: flex-start !important;
  }

  .mobile-large\:u-justify-end{
    justify-content: flex-end !important;
  }

  .mobile-large\:u-justify-center{
    justify-content: center !important;
  }

  .mobile-large\:u-justify-between{
    justify-content: space-between !important;
  }

  .mobile-large\:u-justify-around{
    justify-content: space-around !important;
  }

  .mobile-large\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .mobile-large\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .mobile-large\:u-justify-self-start{
    justify-self: start !important;
  }

  .mobile-large\:u-justify-self-end{
    justify-self: end !important;
  }

  .mobile-large\:u-justify-self-center{
    justify-self: center !important;
  }

  .mobile-large\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .mobile-large\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .mobile-large\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .mobile-large\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .mobile-large\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .mobile-large\:u-flex-none{
    flex: none !important;
  }

  .mobile-large\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .mobile-large\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .mobile-large\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .mobile-large\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .mobile-large\:u-order-1{
    order: 1 !important;
  }

  .mobile-large\:u-order-2{
    order: 2 !important;
  }

  .mobile-large\:u-order-3{
    order: 3 !important;
  }

  .mobile-large\:u-order-4{
    order: 4 !important;
  }

  .mobile-large\:u-order-5{
    order: 5 !important;
  }

  .mobile-large\:u-order-6{
    order: 6 !important;
  }

  .mobile-large\:u-order-7{
    order: 7 !important;
  }

  .mobile-large\:u-order-8{
    order: 8 !important;
  }

  .mobile-large\:u-order-9{
    order: 9 !important;
  }

  .mobile-large\:u-order-10{
    order: 10 !important;
  }

  .mobile-large\:u-order-11{
    order: 11 !important;
  }

  .mobile-large\:u-order-12{
    order: 12 !important;
  }

  .mobile-large\:u-order-first{
    order: -9999 !important;
  }

  .mobile-large\:u-order-last{
    order: 9999 !important;
  }

  .mobile-large\:u-order-none{
    order: 0 !important;
  }

  .mobile-large\:u-float-right{
    float: right !important;
  }

  .mobile-large\:u-float-left{
    float: left !important;
  }

  .mobile-large\:u-float-none{
    float: none !important;
  }

  .mobile-large\:u-clear-left{
    clear: left !important;
  }

  .mobile-large\:u-clear-right{
    clear: right !important;
  }

  .mobile-large\:u-clear-both{
    clear: both !important;
  }

  .mobile-large\:u-clear-none{
    clear: none !important;
  }

  .mobile-large\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .mobile-large\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .mobile-large\:u-font-thin{
    font-weight: 100 !important;
  }

  .mobile-large\:u-font-extralight{
    font-weight: 200 !important;
  }

  .mobile-large\:u-font-light{
    font-weight: 300 !important;
  }

  .mobile-large\:u-font-normal{
    font-weight: 400 !important;
  }

  .mobile-large\:u-font-medium{
    font-weight: 500 !important;
  }

  .mobile-large\:u-font-semibold{
    font-weight: 600 !important;
  }

  .mobile-large\:u-font-bold{
    font-weight: 700 !important;
  }

  .mobile-large\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .mobile-large\:u-font-black{
    font-weight: 900 !important;
  }

  .mobile-large\:u-h-0{
    height: 0px !important;
  }

  .mobile-large\:u-h-1{
    height: 0.25rem !important;
  }

  .mobile-large\:u-h-2{
    height: 0.5rem !important;
  }

  .mobile-large\:u-h-3{
    height: 0.75rem !important;
  }

  .mobile-large\:u-h-4{
    height: 1rem !important;
  }

  .mobile-large\:u-h-5{
    height: 1.25rem !important;
  }

  .mobile-large\:u-h-6{
    height: 1.5rem !important;
  }

  .mobile-large\:u-h-7{
    height: 1.75rem !important;
  }

  .mobile-large\:u-h-8{
    height: 2rem !important;
  }

  .mobile-large\:u-h-9{
    height: 2.25rem !important;
  }

  .mobile-large\:u-h-10{
    height: 2.5rem !important;
  }

  .mobile-large\:u-h-11{
    height: 2.75rem !important;
  }

  .mobile-large\:u-h-12{
    height: 3rem !important;
  }

  .mobile-large\:u-h-14{
    height: 3.5rem !important;
  }

  .mobile-large\:u-h-16{
    height: 4rem !important;
  }

  .mobile-large\:u-h-20{
    height: 5rem !important;
  }

  .mobile-large\:u-h-24{
    height: 6rem !important;
  }

  .mobile-large\:u-h-28{
    height: 7rem !important;
  }

  .mobile-large\:u-h-32{
    height: 8rem !important;
  }

  .mobile-large\:u-h-36{
    height: 9rem !important;
  }

  .mobile-large\:u-h-40{
    height: 10rem !important;
  }

  .mobile-large\:u-h-44{
    height: 11rem !important;
  }

  .mobile-large\:u-h-48{
    height: 12rem !important;
  }

  .mobile-large\:u-h-52{
    height: 13rem !important;
  }

  .mobile-large\:u-h-56{
    height: 14rem !important;
  }

  .mobile-large\:u-h-60{
    height: 15rem !important;
  }

  .mobile-large\:u-h-64{
    height: 16rem !important;
  }

  .mobile-large\:u-h-72{
    height: 18rem !important;
  }

  .mobile-large\:u-h-80{
    height: 20rem !important;
  }

  .mobile-large\:u-h-96{
    height: 24rem !important;
  }

  .mobile-large\:u-h-auto{
    height: auto !important;
  }

  .mobile-large\:u-h-px{
    height: 1px !important;
  }

  .mobile-large\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .mobile-large\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .mobile-large\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .mobile-large\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .mobile-large\:u-h-1\/2{
    height: 50% !important;
  }

  .mobile-large\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .mobile-large\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .mobile-large\:u-h-1\/4{
    height: 25% !important;
  }

  .mobile-large\:u-h-2\/4{
    height: 50% !important;
  }

  .mobile-large\:u-h-3\/4{
    height: 75% !important;
  }

  .mobile-large\:u-h-1\/5{
    height: 20% !important;
  }

  .mobile-large\:u-h-2\/5{
    height: 40% !important;
  }

  .mobile-large\:u-h-3\/5{
    height: 60% !important;
  }

  .mobile-large\:u-h-4\/5{
    height: 80% !important;
  }

  .mobile-large\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .mobile-large\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .mobile-large\:u-h-3\/6{
    height: 50% !important;
  }

  .mobile-large\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .mobile-large\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .mobile-large\:u-h-full{
    height: 100% !important;
  }

  .mobile-large\:u-h-screen{
    height: 100vh !important;
  }

  .mobile-large\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .mobile-large\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .mobile-large\:u-text-base{
    font-size: 1rem !important;
  }

  .mobile-large\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .mobile-large\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .mobile-large\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .mobile-large\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .mobile-large\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .mobile-large\:u-text-5xl{
    font-size: 3rem !important;
  }

  .mobile-large\:u-text-6xl{
    font-size: 4rem !important;
  }

  .mobile-large\:u-text-7xl{
    font-size: 5rem !important;
  }

  .mobile-large\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .mobile-large\:u-leading-3{
    line-height: .75rem !important;
  }

  .mobile-large\:u-leading-4{
    line-height: 1rem !important;
  }

  .mobile-large\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .mobile-large\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .mobile-large\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .mobile-large\:u-leading-8{
    line-height: 2rem !important;
  }

  .mobile-large\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .mobile-large\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .mobile-large\:u-leading-none{
    line-height: 1 !important;
  }

  .mobile-large\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .mobile-large\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .mobile-large\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .mobile-large\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .mobile-large\:u-leading-loose{
    line-height: 2 !important;
  }

  .mobile-large\:u-list-inside{
    list-style-position: inside !important;
  }

  .mobile-large\:u-list-outside{
    list-style-position: outside !important;
  }

  .mobile-large\:u-list-none{
    list-style-type: none !important;
  }

  .mobile-large\:u-list-disc{
    list-style-type: disc !important;
  }

  .mobile-large\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .mobile-large\:u-m-0{
    margin: 0px !important;
  }

  .mobile-large\:u-m-1{
    margin: 0.25rem !important;
  }

  .mobile-large\:u-m-2{
    margin: 0.5rem !important;
  }

  .mobile-large\:u-m-3{
    margin: 0.75rem !important;
  }

  .mobile-large\:u-m-4{
    margin: 1rem !important;
  }

  .mobile-large\:u-m-5{
    margin: 1.25rem !important;
  }

  .mobile-large\:u-m-6{
    margin: 1.5rem !important;
  }

  .mobile-large\:u-m-7{
    margin: 1.75rem !important;
  }

  .mobile-large\:u-m-8{
    margin: 2rem !important;
  }

  .mobile-large\:u-m-9{
    margin: 2.25rem !important;
  }

  .mobile-large\:u-m-10{
    margin: 2.5rem !important;
  }

  .mobile-large\:u-m-11{
    margin: 2.75rem !important;
  }

  .mobile-large\:u-m-12{
    margin: 3rem !important;
  }

  .mobile-large\:u-m-14{
    margin: 3.5rem !important;
  }

  .mobile-large\:u-m-16{
    margin: 4rem !important;
  }

  .mobile-large\:u-m-20{
    margin: 5rem !important;
  }

  .mobile-large\:u-m-24{
    margin: 6rem !important;
  }

  .mobile-large\:u-m-28{
    margin: 7rem !important;
  }

  .mobile-large\:u-m-32{
    margin: 8rem !important;
  }

  .mobile-large\:u-m-36{
    margin: 9rem !important;
  }

  .mobile-large\:u-m-40{
    margin: 10rem !important;
  }

  .mobile-large\:u-m-44{
    margin: 11rem !important;
  }

  .mobile-large\:u-m-48{
    margin: 12rem !important;
  }

  .mobile-large\:u-m-52{
    margin: 13rem !important;
  }

  .mobile-large\:u-m-56{
    margin: 14rem !important;
  }

  .mobile-large\:u-m-60{
    margin: 15rem !important;
  }

  .mobile-large\:u-m-64{
    margin: 16rem !important;
  }

  .mobile-large\:u-m-72{
    margin: 18rem !important;
  }

  .mobile-large\:u-m-80{
    margin: 20rem !important;
  }

  .mobile-large\:u-m-96{
    margin: 24rem !important;
  }

  .mobile-large\:u-m-auto{
    margin: auto !important;
  }

  .mobile-large\:u-m-px{
    margin: 1px !important;
  }

  .mobile-large\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .mobile-large\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .mobile-large\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .mobile-large\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .mobile-large\:u--m-0{
    margin: 0px !important;
  }

  .mobile-large\:u--m-1{
    margin: -0.25rem !important;
  }

  .mobile-large\:u--m-2{
    margin: -0.5rem !important;
  }

  .mobile-large\:u--m-3{
    margin: -0.75rem !important;
  }

  .mobile-large\:u--m-4{
    margin: -1rem !important;
  }

  .mobile-large\:u--m-5{
    margin: -1.25rem !important;
  }

  .mobile-large\:u--m-6{
    margin: -1.5rem !important;
  }

  .mobile-large\:u--m-7{
    margin: -1.75rem !important;
  }

  .mobile-large\:u--m-8{
    margin: -2rem !important;
  }

  .mobile-large\:u--m-9{
    margin: -2.25rem !important;
  }

  .mobile-large\:u--m-10{
    margin: -2.5rem !important;
  }

  .mobile-large\:u--m-11{
    margin: -2.75rem !important;
  }

  .mobile-large\:u--m-12{
    margin: -3rem !important;
  }

  .mobile-large\:u--m-14{
    margin: -3.5rem !important;
  }

  .mobile-large\:u--m-16{
    margin: -4rem !important;
  }

  .mobile-large\:u--m-20{
    margin: -5rem !important;
  }

  .mobile-large\:u--m-24{
    margin: -6rem !important;
  }

  .mobile-large\:u--m-28{
    margin: -7rem !important;
  }

  .mobile-large\:u--m-32{
    margin: -8rem !important;
  }

  .mobile-large\:u--m-36{
    margin: -9rem !important;
  }

  .mobile-large\:u--m-40{
    margin: -10rem !important;
  }

  .mobile-large\:u--m-44{
    margin: -11rem !important;
  }

  .mobile-large\:u--m-48{
    margin: -12rem !important;
  }

  .mobile-large\:u--m-52{
    margin: -13rem !important;
  }

  .mobile-large\:u--m-56{
    margin: -14rem !important;
  }

  .mobile-large\:u--m-60{
    margin: -15rem !important;
  }

  .mobile-large\:u--m-64{
    margin: -16rem !important;
  }

  .mobile-large\:u--m-72{
    margin: -18rem !important;
  }

  .mobile-large\:u--m-80{
    margin: -20rem !important;
  }

  .mobile-large\:u--m-96{
    margin: -24rem !important;
  }

  .mobile-large\:u--m-px{
    margin: -1px !important;
  }

  .mobile-large\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .mobile-large\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .mobile-large\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .mobile-large\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .mobile-large\:u-m-full{
    margin: 100% !important;
  }

  .mobile-large\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .mobile-large\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .mobile-large\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .mobile-large\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mobile-large\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .mobile-large\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mobile-large\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .mobile-large\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .mobile-large\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mobile-large\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mobile-large\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .mobile-large\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .mobile-large\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .mobile-large\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mobile-large\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .mobile-large\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .mobile-large\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .mobile-large\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .mobile-large\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .mobile-large\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .mobile-large\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .mobile-large\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .mobile-large\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .mobile-large\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .mobile-large\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .mobile-large\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mobile-large\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .mobile-large\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .mobile-large\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .mobile-large\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .mobile-large\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .mobile-large\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mobile-large\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .mobile-large\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .mobile-large\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .mobile-large\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mobile-large\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .mobile-large\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mobile-large\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .mobile-large\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mobile-large\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .mobile-large\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mobile-large\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .mobile-large\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mobile-large\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .mobile-large\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mobile-large\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .mobile-large\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mobile-large\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .mobile-large\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mobile-large\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .mobile-large\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mobile-large\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .mobile-large\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mobile-large\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .mobile-large\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mobile-large\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .mobile-large\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mobile-large\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .mobile-large\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .mobile-large\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mobile-large\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .mobile-large\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .mobile-large\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .mobile-large\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .mobile-large\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .mobile-large\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .mobile-large\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .mobile-large\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .mobile-large\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .mobile-large\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .mobile-large\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .mobile-large\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .mobile-large\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .mobile-large\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .mobile-large\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mobile-large\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .mobile-large\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mobile-large\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .mobile-large\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .mobile-large\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .mobile-large\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mobile-large\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .mobile-large\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .mobile-large\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .mobile-large\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mobile-large\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .mobile-large\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .mobile-large\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .mobile-large\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .mobile-large\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .mobile-large\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .mobile-large\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .mobile-large\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .mobile-large\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .mobile-large\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .mobile-large\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .mobile-large\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mobile-large\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .mobile-large\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .mobile-large\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .mobile-large\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .mobile-large\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mobile-large\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mobile-large\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .mobile-large\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .mobile-large\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .mobile-large\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mobile-large\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .mobile-large\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mobile-large\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .mobile-large\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mobile-large\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .mobile-large\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mobile-large\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .mobile-large\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mobile-large\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .mobile-large\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mobile-large\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .mobile-large\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mobile-large\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .mobile-large\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mobile-large\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .mobile-large\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mobile-large\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .mobile-large\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mobile-large\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .mobile-large\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mobile-large\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .mobile-large\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mobile-large\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .mobile-large\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .mobile-large\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .mobile-large\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .mobile-large\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .mobile-large\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .mobile-large\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .mobile-large\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .mobile-large\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .mobile-large\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .mobile-large\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .mobile-large\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .mobile-large\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .mobile-large\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .mobile-large\:u-mt-0{
    margin-top: 0px !important;
  }

  .mobile-large\:u-mr-0{
    margin-right: 0px !important;
  }

  .mobile-large\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .mobile-large\:u-ml-0{
    margin-left: 0px !important;
  }

  .mobile-large\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .mobile-large\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .mobile-large\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .mobile-large\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .mobile-large\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .mobile-large\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .mobile-large\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .mobile-large\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .mobile-large\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .mobile-large\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .mobile-large\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .mobile-large\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .mobile-large\:u-mt-4{
    margin-top: 1rem !important;
  }

  .mobile-large\:u-mr-4{
    margin-right: 1rem !important;
  }

  .mobile-large\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .mobile-large\:u-ml-4{
    margin-left: 1rem !important;
  }

  .mobile-large\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .mobile-large\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .mobile-large\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .mobile-large\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .mobile-large\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .mobile-large\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .mobile-large\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .mobile-large\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .mobile-large\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .mobile-large\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .mobile-large\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .mobile-large\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .mobile-large\:u-mt-8{
    margin-top: 2rem !important;
  }

  .mobile-large\:u-mr-8{
    margin-right: 2rem !important;
  }

  .mobile-large\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .mobile-large\:u-ml-8{
    margin-left: 2rem !important;
  }

  .mobile-large\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .mobile-large\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .mobile-large\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .mobile-large\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .mobile-large\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .mobile-large\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .mobile-large\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .mobile-large\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .mobile-large\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .mobile-large\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .mobile-large\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .mobile-large\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .mobile-large\:u-mt-12{
    margin-top: 3rem !important;
  }

  .mobile-large\:u-mr-12{
    margin-right: 3rem !important;
  }

  .mobile-large\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .mobile-large\:u-ml-12{
    margin-left: 3rem !important;
  }

  .mobile-large\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .mobile-large\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .mobile-large\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .mobile-large\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .mobile-large\:u-mt-16{
    margin-top: 4rem !important;
  }

  .mobile-large\:u-mr-16{
    margin-right: 4rem !important;
  }

  .mobile-large\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .mobile-large\:u-ml-16{
    margin-left: 4rem !important;
  }

  .mobile-large\:u-mt-20{
    margin-top: 5rem !important;
  }

  .mobile-large\:u-mr-20{
    margin-right: 5rem !important;
  }

  .mobile-large\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .mobile-large\:u-ml-20{
    margin-left: 5rem !important;
  }

  .mobile-large\:u-mt-24{
    margin-top: 6rem !important;
  }

  .mobile-large\:u-mr-24{
    margin-right: 6rem !important;
  }

  .mobile-large\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .mobile-large\:u-ml-24{
    margin-left: 6rem !important;
  }

  .mobile-large\:u-mt-28{
    margin-top: 7rem !important;
  }

  .mobile-large\:u-mr-28{
    margin-right: 7rem !important;
  }

  .mobile-large\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .mobile-large\:u-ml-28{
    margin-left: 7rem !important;
  }

  .mobile-large\:u-mt-32{
    margin-top: 8rem !important;
  }

  .mobile-large\:u-mr-32{
    margin-right: 8rem !important;
  }

  .mobile-large\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .mobile-large\:u-ml-32{
    margin-left: 8rem !important;
  }

  .mobile-large\:u-mt-36{
    margin-top: 9rem !important;
  }

  .mobile-large\:u-mr-36{
    margin-right: 9rem !important;
  }

  .mobile-large\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .mobile-large\:u-ml-36{
    margin-left: 9rem !important;
  }

  .mobile-large\:u-mt-40{
    margin-top: 10rem !important;
  }

  .mobile-large\:u-mr-40{
    margin-right: 10rem !important;
  }

  .mobile-large\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .mobile-large\:u-ml-40{
    margin-left: 10rem !important;
  }

  .mobile-large\:u-mt-44{
    margin-top: 11rem !important;
  }

  .mobile-large\:u-mr-44{
    margin-right: 11rem !important;
  }

  .mobile-large\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .mobile-large\:u-ml-44{
    margin-left: 11rem !important;
  }

  .mobile-large\:u-mt-48{
    margin-top: 12rem !important;
  }

  .mobile-large\:u-mr-48{
    margin-right: 12rem !important;
  }

  .mobile-large\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .mobile-large\:u-ml-48{
    margin-left: 12rem !important;
  }

  .mobile-large\:u-mt-52{
    margin-top: 13rem !important;
  }

  .mobile-large\:u-mr-52{
    margin-right: 13rem !important;
  }

  .mobile-large\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .mobile-large\:u-ml-52{
    margin-left: 13rem !important;
  }

  .mobile-large\:u-mt-56{
    margin-top: 14rem !important;
  }

  .mobile-large\:u-mr-56{
    margin-right: 14rem !important;
  }

  .mobile-large\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .mobile-large\:u-ml-56{
    margin-left: 14rem !important;
  }

  .mobile-large\:u-mt-60{
    margin-top: 15rem !important;
  }

  .mobile-large\:u-mr-60{
    margin-right: 15rem !important;
  }

  .mobile-large\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .mobile-large\:u-ml-60{
    margin-left: 15rem !important;
  }

  .mobile-large\:u-mt-64{
    margin-top: 16rem !important;
  }

  .mobile-large\:u-mr-64{
    margin-right: 16rem !important;
  }

  .mobile-large\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .mobile-large\:u-ml-64{
    margin-left: 16rem !important;
  }

  .mobile-large\:u-mt-72{
    margin-top: 18rem !important;
  }

  .mobile-large\:u-mr-72{
    margin-right: 18rem !important;
  }

  .mobile-large\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .mobile-large\:u-ml-72{
    margin-left: 18rem !important;
  }

  .mobile-large\:u-mt-80{
    margin-top: 20rem !important;
  }

  .mobile-large\:u-mr-80{
    margin-right: 20rem !important;
  }

  .mobile-large\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .mobile-large\:u-ml-80{
    margin-left: 20rem !important;
  }

  .mobile-large\:u-mt-96{
    margin-top: 24rem !important;
  }

  .mobile-large\:u-mr-96{
    margin-right: 24rem !important;
  }

  .mobile-large\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .mobile-large\:u-ml-96{
    margin-left: 24rem !important;
  }

  .mobile-large\:u-mt-auto{
    margin-top: auto !important;
  }

  .mobile-large\:u-mr-auto{
    margin-right: auto !important;
  }

  .mobile-large\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .mobile-large\:u-ml-auto{
    margin-left: auto !important;
  }

  .mobile-large\:u-mt-px{
    margin-top: 1px !important;
  }

  .mobile-large\:u-mr-px{
    margin-right: 1px !important;
  }

  .mobile-large\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .mobile-large\:u-ml-px{
    margin-left: 1px !important;
  }

  .mobile-large\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .mobile-large\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .mobile-large\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .mobile-large\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .mobile-large\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .mobile-large\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .mobile-large\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .mobile-large\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .mobile-large\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .mobile-large\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .mobile-large\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .mobile-large\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .mobile-large\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .mobile-large\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .mobile-large\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .mobile-large\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .mobile-large\:u--mt-0{
    margin-top: 0px !important;
  }

  .mobile-large\:u--mr-0{
    margin-right: 0px !important;
  }

  .mobile-large\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .mobile-large\:u--ml-0{
    margin-left: 0px !important;
  }

  .mobile-large\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .mobile-large\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .mobile-large\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .mobile-large\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .mobile-large\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .mobile-large\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .mobile-large\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .mobile-large\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .mobile-large\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .mobile-large\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .mobile-large\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .mobile-large\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .mobile-large\:u--mt-4{
    margin-top: -1rem !important;
  }

  .mobile-large\:u--mr-4{
    margin-right: -1rem !important;
  }

  .mobile-large\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .mobile-large\:u--ml-4{
    margin-left: -1rem !important;
  }

  .mobile-large\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .mobile-large\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .mobile-large\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .mobile-large\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .mobile-large\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .mobile-large\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .mobile-large\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .mobile-large\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .mobile-large\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .mobile-large\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .mobile-large\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .mobile-large\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .mobile-large\:u--mt-8{
    margin-top: -2rem !important;
  }

  .mobile-large\:u--mr-8{
    margin-right: -2rem !important;
  }

  .mobile-large\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .mobile-large\:u--ml-8{
    margin-left: -2rem !important;
  }

  .mobile-large\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .mobile-large\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .mobile-large\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .mobile-large\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .mobile-large\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .mobile-large\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .mobile-large\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .mobile-large\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .mobile-large\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .mobile-large\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .mobile-large\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .mobile-large\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .mobile-large\:u--mt-12{
    margin-top: -3rem !important;
  }

  .mobile-large\:u--mr-12{
    margin-right: -3rem !important;
  }

  .mobile-large\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .mobile-large\:u--ml-12{
    margin-left: -3rem !important;
  }

  .mobile-large\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .mobile-large\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .mobile-large\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .mobile-large\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .mobile-large\:u--mt-16{
    margin-top: -4rem !important;
  }

  .mobile-large\:u--mr-16{
    margin-right: -4rem !important;
  }

  .mobile-large\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .mobile-large\:u--ml-16{
    margin-left: -4rem !important;
  }

  .mobile-large\:u--mt-20{
    margin-top: -5rem !important;
  }

  .mobile-large\:u--mr-20{
    margin-right: -5rem !important;
  }

  .mobile-large\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .mobile-large\:u--ml-20{
    margin-left: -5rem !important;
  }

  .mobile-large\:u--mt-24{
    margin-top: -6rem !important;
  }

  .mobile-large\:u--mr-24{
    margin-right: -6rem !important;
  }

  .mobile-large\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .mobile-large\:u--ml-24{
    margin-left: -6rem !important;
  }

  .mobile-large\:u--mt-28{
    margin-top: -7rem !important;
  }

  .mobile-large\:u--mr-28{
    margin-right: -7rem !important;
  }

  .mobile-large\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .mobile-large\:u--ml-28{
    margin-left: -7rem !important;
  }

  .mobile-large\:u--mt-32{
    margin-top: -8rem !important;
  }

  .mobile-large\:u--mr-32{
    margin-right: -8rem !important;
  }

  .mobile-large\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .mobile-large\:u--ml-32{
    margin-left: -8rem !important;
  }

  .mobile-large\:u--mt-36{
    margin-top: -9rem !important;
  }

  .mobile-large\:u--mr-36{
    margin-right: -9rem !important;
  }

  .mobile-large\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .mobile-large\:u--ml-36{
    margin-left: -9rem !important;
  }

  .mobile-large\:u--mt-40{
    margin-top: -10rem !important;
  }

  .mobile-large\:u--mr-40{
    margin-right: -10rem !important;
  }

  .mobile-large\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .mobile-large\:u--ml-40{
    margin-left: -10rem !important;
  }

  .mobile-large\:u--mt-44{
    margin-top: -11rem !important;
  }

  .mobile-large\:u--mr-44{
    margin-right: -11rem !important;
  }

  .mobile-large\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .mobile-large\:u--ml-44{
    margin-left: -11rem !important;
  }

  .mobile-large\:u--mt-48{
    margin-top: -12rem !important;
  }

  .mobile-large\:u--mr-48{
    margin-right: -12rem !important;
  }

  .mobile-large\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .mobile-large\:u--ml-48{
    margin-left: -12rem !important;
  }

  .mobile-large\:u--mt-52{
    margin-top: -13rem !important;
  }

  .mobile-large\:u--mr-52{
    margin-right: -13rem !important;
  }

  .mobile-large\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .mobile-large\:u--ml-52{
    margin-left: -13rem !important;
  }

  .mobile-large\:u--mt-56{
    margin-top: -14rem !important;
  }

  .mobile-large\:u--mr-56{
    margin-right: -14rem !important;
  }

  .mobile-large\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .mobile-large\:u--ml-56{
    margin-left: -14rem !important;
  }

  .mobile-large\:u--mt-60{
    margin-top: -15rem !important;
  }

  .mobile-large\:u--mr-60{
    margin-right: -15rem !important;
  }

  .mobile-large\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .mobile-large\:u--ml-60{
    margin-left: -15rem !important;
  }

  .mobile-large\:u--mt-64{
    margin-top: -16rem !important;
  }

  .mobile-large\:u--mr-64{
    margin-right: -16rem !important;
  }

  .mobile-large\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .mobile-large\:u--ml-64{
    margin-left: -16rem !important;
  }

  .mobile-large\:u--mt-72{
    margin-top: -18rem !important;
  }

  .mobile-large\:u--mr-72{
    margin-right: -18rem !important;
  }

  .mobile-large\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .mobile-large\:u--ml-72{
    margin-left: -18rem !important;
  }

  .mobile-large\:u--mt-80{
    margin-top: -20rem !important;
  }

  .mobile-large\:u--mr-80{
    margin-right: -20rem !important;
  }

  .mobile-large\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .mobile-large\:u--ml-80{
    margin-left: -20rem !important;
  }

  .mobile-large\:u--mt-96{
    margin-top: -24rem !important;
  }

  .mobile-large\:u--mr-96{
    margin-right: -24rem !important;
  }

  .mobile-large\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .mobile-large\:u--ml-96{
    margin-left: -24rem !important;
  }

  .mobile-large\:u--mt-px{
    margin-top: -1px !important;
  }

  .mobile-large\:u--mr-px{
    margin-right: -1px !important;
  }

  .mobile-large\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .mobile-large\:u--ml-px{
    margin-left: -1px !important;
  }

  .mobile-large\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .mobile-large\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .mobile-large\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .mobile-large\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .mobile-large\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .mobile-large\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .mobile-large\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .mobile-large\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .mobile-large\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .mobile-large\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .mobile-large\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .mobile-large\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .mobile-large\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .mobile-large\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .mobile-large\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .mobile-large\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .mobile-large\:u-mt-full{
    margin-top: 100% !important;
  }

  .mobile-large\:u-mr-full{
    margin-right: 100% !important;
  }

  .mobile-large\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .mobile-large\:u-ml-full{
    margin-left: 100% !important;
  }

  .mobile-large\:u-max-h-0{
    max-height: 0px !important;
  }

  .mobile-large\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .mobile-large\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .mobile-large\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .mobile-large\:u-max-h-4{
    max-height: 1rem !important;
  }

  .mobile-large\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .mobile-large\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .mobile-large\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .mobile-large\:u-max-h-8{
    max-height: 2rem !important;
  }

  .mobile-large\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .mobile-large\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .mobile-large\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .mobile-large\:u-max-h-12{
    max-height: 3rem !important;
  }

  .mobile-large\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .mobile-large\:u-max-h-16{
    max-height: 4rem !important;
  }

  .mobile-large\:u-max-h-20{
    max-height: 5rem !important;
  }

  .mobile-large\:u-max-h-24{
    max-height: 6rem !important;
  }

  .mobile-large\:u-max-h-28{
    max-height: 7rem !important;
  }

  .mobile-large\:u-max-h-32{
    max-height: 8rem !important;
  }

  .mobile-large\:u-max-h-36{
    max-height: 9rem !important;
  }

  .mobile-large\:u-max-h-40{
    max-height: 10rem !important;
  }

  .mobile-large\:u-max-h-44{
    max-height: 11rem !important;
  }

  .mobile-large\:u-max-h-48{
    max-height: 12rem !important;
  }

  .mobile-large\:u-max-h-52{
    max-height: 13rem !important;
  }

  .mobile-large\:u-max-h-56{
    max-height: 14rem !important;
  }

  .mobile-large\:u-max-h-60{
    max-height: 15rem !important;
  }

  .mobile-large\:u-max-h-64{
    max-height: 16rem !important;
  }

  .mobile-large\:u-max-h-72{
    max-height: 18rem !important;
  }

  .mobile-large\:u-max-h-80{
    max-height: 20rem !important;
  }

  .mobile-large\:u-max-h-96{
    max-height: 24rem !important;
  }

  .mobile-large\:u-max-h-px{
    max-height: 1px !important;
  }

  .mobile-large\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .mobile-large\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .mobile-large\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .mobile-large\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .mobile-large\:u-max-h-full{
    max-height: 100% !important;
  }

  .mobile-large\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .mobile-large\:u-max-w-none{
    max-width: none !important;
  }

  .mobile-large\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .mobile-large\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .mobile-large\:u-max-w-md{
    max-width: 24rem !important;
  }

  .mobile-large\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .mobile-large\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .mobile-large\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .mobile-large\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .mobile-large\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .mobile-large\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .mobile-large\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .mobile-large\:u-max-w-full{
    max-width: 100% !important;
  }

  .mobile-large\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .mobile-large\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .mobile-large\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .mobile-large\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .mobile-large\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .mobile-large\:u-min-h-none{
    min-height: none !important;
  }

  .mobile-large\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .mobile-large\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .mobile-large\:u-min-h-md{
    min-height: 24rem !important;
  }

  .mobile-large\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .mobile-large\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .mobile-large\:u-min-w-sm{
    min-width: 320px !important;
  }

  .mobile-large\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .mobile-large\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .mobile-large\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .mobile-large\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .mobile-large\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .mobile-large\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .mobile-large\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .mobile-large\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .mobile-large\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .mobile-large\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .mobile-large\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .mobile-large\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .mobile-large\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .mobile-large\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .mobile-large\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .mobile-large\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .mobile-large\:u-opacity-0{
    opacity: 0 !important;
  }

  .mobile-large\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .mobile-large\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .mobile-large\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .mobile-large\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .mobile-large\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .mobile-large\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .mobile-large\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .mobile-large\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .mobile-large\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .mobile-large\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .mobile-large\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .mobile-large\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .mobile-large\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .mobile-large\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .mobile-large\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .mobile-large\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .mobile-large\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .mobile-large\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .mobile-large\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .mobile-large\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .mobile-large\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .mobile-large\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .mobile-large\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .mobile-large\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .mobile-large\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .mobile-large\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .mobile-large\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .mobile-large\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .mobile-large\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .mobile-large\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .mobile-large\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .mobile-large\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .mobile-large\:u-overflow-auto{
    overflow: auto !important;
  }

  .mobile-large\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .mobile-large\:u-overflow-visible{
    overflow: visible !important;
  }

  .mobile-large\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .mobile-large\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .mobile-large\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .mobile-large\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .mobile-large\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .mobile-large\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .mobile-large\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .mobile-large\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .mobile-large\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .mobile-large\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .mobile-large\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .mobile-large\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .mobile-large\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .mobile-large\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .mobile-large\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .mobile-large\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .mobile-large\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .mobile-large\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .mobile-large\:u-p-0{
    padding: 0px !important;
  }

  .mobile-large\:u-p-1{
    padding: 0.25rem !important;
  }

  .mobile-large\:u-p-2{
    padding: 0.5rem !important;
  }

  .mobile-large\:u-p-3{
    padding: 0.75rem !important;
  }

  .mobile-large\:u-p-4{
    padding: 1rem !important;
  }

  .mobile-large\:u-p-5{
    padding: 1.25rem !important;
  }

  .mobile-large\:u-p-6{
    padding: 1.5rem !important;
  }

  .mobile-large\:u-p-7{
    padding: 1.75rem !important;
  }

  .mobile-large\:u-p-8{
    padding: 2rem !important;
  }

  .mobile-large\:u-p-9{
    padding: 2.25rem !important;
  }

  .mobile-large\:u-p-10{
    padding: 2.5rem !important;
  }

  .mobile-large\:u-p-11{
    padding: 2.75rem !important;
  }

  .mobile-large\:u-p-12{
    padding: 3rem !important;
  }

  .mobile-large\:u-p-14{
    padding: 3.5rem !important;
  }

  .mobile-large\:u-p-16{
    padding: 4rem !important;
  }

  .mobile-large\:u-p-20{
    padding: 5rem !important;
  }

  .mobile-large\:u-p-24{
    padding: 6rem !important;
  }

  .mobile-large\:u-p-28{
    padding: 7rem !important;
  }

  .mobile-large\:u-p-32{
    padding: 8rem !important;
  }

  .mobile-large\:u-p-36{
    padding: 9rem !important;
  }

  .mobile-large\:u-p-40{
    padding: 10rem !important;
  }

  .mobile-large\:u-p-44{
    padding: 11rem !important;
  }

  .mobile-large\:u-p-48{
    padding: 12rem !important;
  }

  .mobile-large\:u-p-52{
    padding: 13rem !important;
  }

  .mobile-large\:u-p-56{
    padding: 14rem !important;
  }

  .mobile-large\:u-p-60{
    padding: 15rem !important;
  }

  .mobile-large\:u-p-64{
    padding: 16rem !important;
  }

  .mobile-large\:u-p-72{
    padding: 18rem !important;
  }

  .mobile-large\:u-p-80{
    padding: 20rem !important;
  }

  .mobile-large\:u-p-96{
    padding: 24rem !important;
  }

  .mobile-large\:u-p-px{
    padding: 1px !important;
  }

  .mobile-large\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .mobile-large\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .mobile-large\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .mobile-large\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .mobile-large\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .mobile-large\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .mobile-large\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .mobile-large\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .mobile-large\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .mobile-large\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .mobile-large\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .mobile-large\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .mobile-large\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .mobile-large\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mobile-large\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .mobile-large\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .mobile-large\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .mobile-large\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .mobile-large\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .mobile-large\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .mobile-large\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .mobile-large\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .mobile-large\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .mobile-large\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .mobile-large\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .mobile-large\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .mobile-large\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .mobile-large\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .mobile-large\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .mobile-large\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .mobile-large\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .mobile-large\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .mobile-large\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .mobile-large\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .mobile-large\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .mobile-large\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .mobile-large\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .mobile-large\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .mobile-large\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .mobile-large\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .mobile-large\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .mobile-large\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .mobile-large\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .mobile-large\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .mobile-large\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .mobile-large\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .mobile-large\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .mobile-large\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .mobile-large\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .mobile-large\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .mobile-large\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .mobile-large\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .mobile-large\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .mobile-large\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .mobile-large\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .mobile-large\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .mobile-large\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .mobile-large\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .mobile-large\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .mobile-large\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .mobile-large\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .mobile-large\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .mobile-large\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .mobile-large\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .mobile-large\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .mobile-large\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .mobile-large\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .mobile-large\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .mobile-large\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .mobile-large\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .mobile-large\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .mobile-large\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .mobile-large\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .mobile-large\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .mobile-large\:u-pt-0{
    padding-top: 0px !important;
  }

  .mobile-large\:u-pr-0{
    padding-right: 0px !important;
  }

  .mobile-large\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .mobile-large\:u-pl-0{
    padding-left: 0px !important;
  }

  .mobile-large\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .mobile-large\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .mobile-large\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .mobile-large\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .mobile-large\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .mobile-large\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .mobile-large\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .mobile-large\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .mobile-large\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .mobile-large\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .mobile-large\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .mobile-large\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .mobile-large\:u-pt-4{
    padding-top: 1rem !important;
  }

  .mobile-large\:u-pr-4{
    padding-right: 1rem !important;
  }

  .mobile-large\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .mobile-large\:u-pl-4{
    padding-left: 1rem !important;
  }

  .mobile-large\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .mobile-large\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .mobile-large\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .mobile-large\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .mobile-large\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .mobile-large\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .mobile-large\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .mobile-large\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .mobile-large\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .mobile-large\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .mobile-large\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .mobile-large\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .mobile-large\:u-pt-8{
    padding-top: 2rem !important;
  }

  .mobile-large\:u-pr-8{
    padding-right: 2rem !important;
  }

  .mobile-large\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .mobile-large\:u-pl-8{
    padding-left: 2rem !important;
  }

  .mobile-large\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .mobile-large\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .mobile-large\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .mobile-large\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .mobile-large\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .mobile-large\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .mobile-large\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .mobile-large\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .mobile-large\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .mobile-large\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .mobile-large\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .mobile-large\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .mobile-large\:u-pt-12{
    padding-top: 3rem !important;
  }

  .mobile-large\:u-pr-12{
    padding-right: 3rem !important;
  }

  .mobile-large\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .mobile-large\:u-pl-12{
    padding-left: 3rem !important;
  }

  .mobile-large\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .mobile-large\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .mobile-large\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .mobile-large\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .mobile-large\:u-pt-16{
    padding-top: 4rem !important;
  }

  .mobile-large\:u-pr-16{
    padding-right: 4rem !important;
  }

  .mobile-large\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .mobile-large\:u-pl-16{
    padding-left: 4rem !important;
  }

  .mobile-large\:u-pt-20{
    padding-top: 5rem !important;
  }

  .mobile-large\:u-pr-20{
    padding-right: 5rem !important;
  }

  .mobile-large\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .mobile-large\:u-pl-20{
    padding-left: 5rem !important;
  }

  .mobile-large\:u-pt-24{
    padding-top: 6rem !important;
  }

  .mobile-large\:u-pr-24{
    padding-right: 6rem !important;
  }

  .mobile-large\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .mobile-large\:u-pl-24{
    padding-left: 6rem !important;
  }

  .mobile-large\:u-pt-28{
    padding-top: 7rem !important;
  }

  .mobile-large\:u-pr-28{
    padding-right: 7rem !important;
  }

  .mobile-large\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .mobile-large\:u-pl-28{
    padding-left: 7rem !important;
  }

  .mobile-large\:u-pt-32{
    padding-top: 8rem !important;
  }

  .mobile-large\:u-pr-32{
    padding-right: 8rem !important;
  }

  .mobile-large\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .mobile-large\:u-pl-32{
    padding-left: 8rem !important;
  }

  .mobile-large\:u-pt-36{
    padding-top: 9rem !important;
  }

  .mobile-large\:u-pr-36{
    padding-right: 9rem !important;
  }

  .mobile-large\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .mobile-large\:u-pl-36{
    padding-left: 9rem !important;
  }

  .mobile-large\:u-pt-40{
    padding-top: 10rem !important;
  }

  .mobile-large\:u-pr-40{
    padding-right: 10rem !important;
  }

  .mobile-large\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .mobile-large\:u-pl-40{
    padding-left: 10rem !important;
  }

  .mobile-large\:u-pt-44{
    padding-top: 11rem !important;
  }

  .mobile-large\:u-pr-44{
    padding-right: 11rem !important;
  }

  .mobile-large\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .mobile-large\:u-pl-44{
    padding-left: 11rem !important;
  }

  .mobile-large\:u-pt-48{
    padding-top: 12rem !important;
  }

  .mobile-large\:u-pr-48{
    padding-right: 12rem !important;
  }

  .mobile-large\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .mobile-large\:u-pl-48{
    padding-left: 12rem !important;
  }

  .mobile-large\:u-pt-52{
    padding-top: 13rem !important;
  }

  .mobile-large\:u-pr-52{
    padding-right: 13rem !important;
  }

  .mobile-large\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .mobile-large\:u-pl-52{
    padding-left: 13rem !important;
  }

  .mobile-large\:u-pt-56{
    padding-top: 14rem !important;
  }

  .mobile-large\:u-pr-56{
    padding-right: 14rem !important;
  }

  .mobile-large\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .mobile-large\:u-pl-56{
    padding-left: 14rem !important;
  }

  .mobile-large\:u-pt-60{
    padding-top: 15rem !important;
  }

  .mobile-large\:u-pr-60{
    padding-right: 15rem !important;
  }

  .mobile-large\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .mobile-large\:u-pl-60{
    padding-left: 15rem !important;
  }

  .mobile-large\:u-pt-64{
    padding-top: 16rem !important;
  }

  .mobile-large\:u-pr-64{
    padding-right: 16rem !important;
  }

  .mobile-large\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .mobile-large\:u-pl-64{
    padding-left: 16rem !important;
  }

  .mobile-large\:u-pt-72{
    padding-top: 18rem !important;
  }

  .mobile-large\:u-pr-72{
    padding-right: 18rem !important;
  }

  .mobile-large\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .mobile-large\:u-pl-72{
    padding-left: 18rem !important;
  }

  .mobile-large\:u-pt-80{
    padding-top: 20rem !important;
  }

  .mobile-large\:u-pr-80{
    padding-right: 20rem !important;
  }

  .mobile-large\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .mobile-large\:u-pl-80{
    padding-left: 20rem !important;
  }

  .mobile-large\:u-pt-96{
    padding-top: 24rem !important;
  }

  .mobile-large\:u-pr-96{
    padding-right: 24rem !important;
  }

  .mobile-large\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .mobile-large\:u-pl-96{
    padding-left: 24rem !important;
  }

  .mobile-large\:u-pt-px{
    padding-top: 1px !important;
  }

  .mobile-large\:u-pr-px{
    padding-right: 1px !important;
  }

  .mobile-large\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .mobile-large\:u-pl-px{
    padding-left: 1px !important;
  }

  .mobile-large\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .mobile-large\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .mobile-large\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .mobile-large\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .mobile-large\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .mobile-large\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .mobile-large\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .mobile-large\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .mobile-large\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .mobile-large\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .mobile-large\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .mobile-large\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .mobile-large\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .mobile-large\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .mobile-large\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .mobile-large\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .mobile-large\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .mobile-large\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .mobile-large\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .mobile-large\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .mobile-large\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .mobile-large\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .mobile-large\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile-large\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile-large\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile-large\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile-large\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile-large\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile-large\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile-large\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile-large\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile-large\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile-large\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile-large\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile-large\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile-large\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile-large\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile-large\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile-large\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile-large\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile-large\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile-large\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile-large\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile-large\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile-large\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile-large\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile-large\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile-large\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile-large\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile-large\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile-large\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile-large\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile-large\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile-large\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile-large\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile-large\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile-large\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile-large\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile-large\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile-large\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile-large\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile-large\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile-large\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile-large\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile-large\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile-large\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile-large\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .mobile-large\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .mobile-large\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .mobile-large\:u-static{
    position: static !important;
  }

  .mobile-large\:u-fixed{
    position: fixed !important;
  }

  .mobile-large\:u-absolute{
    position: absolute !important;
  }

  .mobile-large\:u-relative{
    position: relative !important;
  }

  .mobile-large\:u-sticky{
    position: sticky !important;
  }

  .mobile-large\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .mobile-large\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .mobile-large\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .mobile-large\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .mobile-large\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .mobile-large\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .mobile-large\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .mobile-large\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .mobile-large\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .mobile-large\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .mobile-large\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .mobile-large\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .mobile-large\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .mobile-large\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .mobile-large\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .mobile-large\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .mobile-large\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .mobile-large\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .mobile-large\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .mobile-large\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .mobile-large\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .mobile-large\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .mobile-large\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .mobile-large\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .mobile-large\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .mobile-large\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .mobile-large\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .mobile-large\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .mobile-large\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .mobile-large\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .mobile-large\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .mobile-large\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .mobile-large\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .mobile-large\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .mobile-large\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .mobile-large\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .mobile-large\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .mobile-large\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .mobile-large\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .mobile-large\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .mobile-large\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .mobile-large\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .mobile-large\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .mobile-large\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .mobile-large\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .mobile-large\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .mobile-large\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .mobile-large\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .mobile-large\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .mobile-large\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .mobile-large\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .mobile-large\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .mobile-large\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .mobile-large\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .mobile-large\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .mobile-large\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .mobile-large\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .mobile-large\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .mobile-large\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .mobile-large\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .mobile-large\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .mobile-large\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .mobile-large\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .mobile-large\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .mobile-large\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .mobile-large\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .mobile-large\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .mobile-large\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .mobile-large\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .mobile-large\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .mobile-large\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .mobile-large\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .mobile-large\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .mobile-large\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .mobile-large\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .mobile-large\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .mobile-large\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .mobile-large\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .mobile-large\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .mobile-large\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .mobile-large\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .mobile-large\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .mobile-large\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .mobile-large\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .mobile-large\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .mobile-large\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .mobile-large\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .mobile-large\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .mobile-large\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .mobile-large\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .mobile-large\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .mobile-large\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .mobile-large\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .mobile-large\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .mobile-large\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .mobile-large\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .mobile-large\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .mobile-large\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .mobile-large\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .mobile-large\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .mobile-large\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .mobile-large\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .mobile-large\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .mobile-large\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .mobile-large\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .mobile-large\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .mobile-large\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .mobile-large\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .mobile-large\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .mobile-large\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .mobile-large\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .mobile-large\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .mobile-large\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .mobile-large\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .mobile-large\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .mobile-large\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .mobile-large\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .mobile-large\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .mobile-large\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .mobile-large\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .mobile-large\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .mobile-large\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .mobile-large\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .mobile-large\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .mobile-large\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .mobile-large\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .mobile-large\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .mobile-large\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .mobile-large\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .mobile-large\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .mobile-large\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .mobile-large\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .mobile-large\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .mobile-large\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .mobile-large\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .mobile-large\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .mobile-large\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .mobile-large\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .mobile-large\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .mobile-large\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .mobile-large\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .mobile-large\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .mobile-large\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .mobile-large\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .mobile-large\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .mobile-large\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .mobile-large\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .mobile-large\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .mobile-large\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .mobile-large\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .mobile-large\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .mobile-large\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .mobile-large\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .mobile-large\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .mobile-large\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .mobile-large\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .mobile-large\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .mobile-large\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .mobile-large\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .mobile-large\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .mobile-large\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .mobile-large\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .mobile-large\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .mobile-large\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .mobile-large\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .mobile-large\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .mobile-large\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .mobile-large\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .mobile-large\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .mobile-large\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .mobile-large\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .mobile-large\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .mobile-large\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .mobile-large\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .mobile-large\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .mobile-large\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .mobile-large\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .mobile-large\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .mobile-large\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .mobile-large\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .mobile-large\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .mobile-large\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .mobile-large\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .mobile-large\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .mobile-large\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .mobile-large\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .mobile-large\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .mobile-large\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .mobile-large\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .mobile-large\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .mobile-large\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .mobile-large\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .mobile-large\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .mobile-large\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .mobile-large\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .mobile-large\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .mobile-large\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .mobile-large\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .mobile-large\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .mobile-large\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .mobile-large\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .mobile-large\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .mobile-large\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .mobile-large\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .mobile-large\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .mobile-large\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .mobile-large\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .mobile-large\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .mobile-large\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .mobile-large\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .mobile-large\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .mobile-large\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .mobile-large\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .mobile-large\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .mobile-large\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .mobile-large\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .mobile-large\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .mobile-large\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .mobile-large\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .mobile-large\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .mobile-large\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .mobile-large\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .mobile-large\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .mobile-large\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .mobile-large\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .mobile-large\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .mobile-large\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .mobile-large\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .mobile-large\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .mobile-large\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .mobile-large\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .mobile-large\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .mobile-large\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .mobile-large\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .mobile-large\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .mobile-large\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .mobile-large\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .mobile-large\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .mobile-large\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .mobile-large\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .mobile-large\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .mobile-large\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .mobile-large\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .mobile-large\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .mobile-large\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .mobile-large\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .mobile-large\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .mobile-large\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .mobile-large\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .mobile-large\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .mobile-large\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .mobile-large\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .mobile-large\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .mobile-large\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .mobile-large\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .mobile-large\:u-top-0{
    top: 0px !important;
  }

  .mobile-large\:u-right-0{
    right: 0px !important;
  }

  .mobile-large\:u-bottom-0{
    bottom: 0px !important;
  }

  .mobile-large\:u-left-0{
    left: 0px !important;
  }

  .mobile-large\:u-top-1{
    top: 0.25rem !important;
  }

  .mobile-large\:u-right-1{
    right: 0.25rem !important;
  }

  .mobile-large\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .mobile-large\:u-left-1{
    left: 0.25rem !important;
  }

  .mobile-large\:u-top-2{
    top: 0.5rem !important;
  }

  .mobile-large\:u-right-2{
    right: 0.5rem !important;
  }

  .mobile-large\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .mobile-large\:u-left-2{
    left: 0.5rem !important;
  }

  .mobile-large\:u-top-3{
    top: 0.75rem !important;
  }

  .mobile-large\:u-right-3{
    right: 0.75rem !important;
  }

  .mobile-large\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .mobile-large\:u-left-3{
    left: 0.75rem !important;
  }

  .mobile-large\:u-top-4{
    top: 1rem !important;
  }

  .mobile-large\:u-right-4{
    right: 1rem !important;
  }

  .mobile-large\:u-bottom-4{
    bottom: 1rem !important;
  }

  .mobile-large\:u-left-4{
    left: 1rem !important;
  }

  .mobile-large\:u-top-5{
    top: 1.25rem !important;
  }

  .mobile-large\:u-right-5{
    right: 1.25rem !important;
  }

  .mobile-large\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .mobile-large\:u-left-5{
    left: 1.25rem !important;
  }

  .mobile-large\:u-top-6{
    top: 1.5rem !important;
  }

  .mobile-large\:u-right-6{
    right: 1.5rem !important;
  }

  .mobile-large\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .mobile-large\:u-left-6{
    left: 1.5rem !important;
  }

  .mobile-large\:u-top-7{
    top: 1.75rem !important;
  }

  .mobile-large\:u-right-7{
    right: 1.75rem !important;
  }

  .mobile-large\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .mobile-large\:u-left-7{
    left: 1.75rem !important;
  }

  .mobile-large\:u-top-8{
    top: 2rem !important;
  }

  .mobile-large\:u-right-8{
    right: 2rem !important;
  }

  .mobile-large\:u-bottom-8{
    bottom: 2rem !important;
  }

  .mobile-large\:u-left-8{
    left: 2rem !important;
  }

  .mobile-large\:u-top-9{
    top: 2.25rem !important;
  }

  .mobile-large\:u-right-9{
    right: 2.25rem !important;
  }

  .mobile-large\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .mobile-large\:u-left-9{
    left: 2.25rem !important;
  }

  .mobile-large\:u-top-10{
    top: 2.5rem !important;
  }

  .mobile-large\:u-right-10{
    right: 2.5rem !important;
  }

  .mobile-large\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .mobile-large\:u-left-10{
    left: 2.5rem !important;
  }

  .mobile-large\:u-top-11{
    top: 2.75rem !important;
  }

  .mobile-large\:u-right-11{
    right: 2.75rem !important;
  }

  .mobile-large\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .mobile-large\:u-left-11{
    left: 2.75rem !important;
  }

  .mobile-large\:u-top-12{
    top: 3rem !important;
  }

  .mobile-large\:u-right-12{
    right: 3rem !important;
  }

  .mobile-large\:u-bottom-12{
    bottom: 3rem !important;
  }

  .mobile-large\:u-left-12{
    left: 3rem !important;
  }

  .mobile-large\:u-top-14{
    top: 3.5rem !important;
  }

  .mobile-large\:u-right-14{
    right: 3.5rem !important;
  }

  .mobile-large\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .mobile-large\:u-left-14{
    left: 3.5rem !important;
  }

  .mobile-large\:u-top-16{
    top: 4rem !important;
  }

  .mobile-large\:u-right-16{
    right: 4rem !important;
  }

  .mobile-large\:u-bottom-16{
    bottom: 4rem !important;
  }

  .mobile-large\:u-left-16{
    left: 4rem !important;
  }

  .mobile-large\:u-top-20{
    top: 5rem !important;
  }

  .mobile-large\:u-right-20{
    right: 5rem !important;
  }

  .mobile-large\:u-bottom-20{
    bottom: 5rem !important;
  }

  .mobile-large\:u-left-20{
    left: 5rem !important;
  }

  .mobile-large\:u-top-24{
    top: 6rem !important;
  }

  .mobile-large\:u-right-24{
    right: 6rem !important;
  }

  .mobile-large\:u-bottom-24{
    bottom: 6rem !important;
  }

  .mobile-large\:u-left-24{
    left: 6rem !important;
  }

  .mobile-large\:u-top-28{
    top: 7rem !important;
  }

  .mobile-large\:u-right-28{
    right: 7rem !important;
  }

  .mobile-large\:u-bottom-28{
    bottom: 7rem !important;
  }

  .mobile-large\:u-left-28{
    left: 7rem !important;
  }

  .mobile-large\:u-top-32{
    top: 8rem !important;
  }

  .mobile-large\:u-right-32{
    right: 8rem !important;
  }

  .mobile-large\:u-bottom-32{
    bottom: 8rem !important;
  }

  .mobile-large\:u-left-32{
    left: 8rem !important;
  }

  .mobile-large\:u-top-36{
    top: 9rem !important;
  }

  .mobile-large\:u-right-36{
    right: 9rem !important;
  }

  .mobile-large\:u-bottom-36{
    bottom: 9rem !important;
  }

  .mobile-large\:u-left-36{
    left: 9rem !important;
  }

  .mobile-large\:u-top-40{
    top: 10rem !important;
  }

  .mobile-large\:u-right-40{
    right: 10rem !important;
  }

  .mobile-large\:u-bottom-40{
    bottom: 10rem !important;
  }

  .mobile-large\:u-left-40{
    left: 10rem !important;
  }

  .mobile-large\:u-top-44{
    top: 11rem !important;
  }

  .mobile-large\:u-right-44{
    right: 11rem !important;
  }

  .mobile-large\:u-bottom-44{
    bottom: 11rem !important;
  }

  .mobile-large\:u-left-44{
    left: 11rem !important;
  }

  .mobile-large\:u-top-48{
    top: 12rem !important;
  }

  .mobile-large\:u-right-48{
    right: 12rem !important;
  }

  .mobile-large\:u-bottom-48{
    bottom: 12rem !important;
  }

  .mobile-large\:u-left-48{
    left: 12rem !important;
  }

  .mobile-large\:u-top-52{
    top: 13rem !important;
  }

  .mobile-large\:u-right-52{
    right: 13rem !important;
  }

  .mobile-large\:u-bottom-52{
    bottom: 13rem !important;
  }

  .mobile-large\:u-left-52{
    left: 13rem !important;
  }

  .mobile-large\:u-top-56{
    top: 14rem !important;
  }

  .mobile-large\:u-right-56{
    right: 14rem !important;
  }

  .mobile-large\:u-bottom-56{
    bottom: 14rem !important;
  }

  .mobile-large\:u-left-56{
    left: 14rem !important;
  }

  .mobile-large\:u-top-60{
    top: 15rem !important;
  }

  .mobile-large\:u-right-60{
    right: 15rem !important;
  }

  .mobile-large\:u-bottom-60{
    bottom: 15rem !important;
  }

  .mobile-large\:u-left-60{
    left: 15rem !important;
  }

  .mobile-large\:u-top-64{
    top: 16rem !important;
  }

  .mobile-large\:u-right-64{
    right: 16rem !important;
  }

  .mobile-large\:u-bottom-64{
    bottom: 16rem !important;
  }

  .mobile-large\:u-left-64{
    left: 16rem !important;
  }

  .mobile-large\:u-top-72{
    top: 18rem !important;
  }

  .mobile-large\:u-right-72{
    right: 18rem !important;
  }

  .mobile-large\:u-bottom-72{
    bottom: 18rem !important;
  }

  .mobile-large\:u-left-72{
    left: 18rem !important;
  }

  .mobile-large\:u-top-80{
    top: 20rem !important;
  }

  .mobile-large\:u-right-80{
    right: 20rem !important;
  }

  .mobile-large\:u-bottom-80{
    bottom: 20rem !important;
  }

  .mobile-large\:u-left-80{
    left: 20rem !important;
  }

  .mobile-large\:u-top-96{
    top: 24rem !important;
  }

  .mobile-large\:u-right-96{
    right: 24rem !important;
  }

  .mobile-large\:u-bottom-96{
    bottom: 24rem !important;
  }

  .mobile-large\:u-left-96{
    left: 24rem !important;
  }

  .mobile-large\:u-top-auto{
    top: auto !important;
  }

  .mobile-large\:u-right-auto{
    right: auto !important;
  }

  .mobile-large\:u-bottom-auto{
    bottom: auto !important;
  }

  .mobile-large\:u-left-auto{
    left: auto !important;
  }

  .mobile-large\:u-top-px{
    top: 1px !important;
  }

  .mobile-large\:u-right-px{
    right: 1px !important;
  }

  .mobile-large\:u-bottom-px{
    bottom: 1px !important;
  }

  .mobile-large\:u-left-px{
    left: 1px !important;
  }

  .mobile-large\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .mobile-large\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .mobile-large\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .mobile-large\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .mobile-large\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .mobile-large\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .mobile-large\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .mobile-large\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .mobile-large\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .mobile-large\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .mobile-large\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .mobile-large\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .mobile-large\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .mobile-large\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .mobile-large\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .mobile-large\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .mobile-large\:u--top-0{
    top: 0px !important;
  }

  .mobile-large\:u--right-0{
    right: 0px !important;
  }

  .mobile-large\:u--bottom-0{
    bottom: 0px !important;
  }

  .mobile-large\:u--left-0{
    left: 0px !important;
  }

  .mobile-large\:u--top-1{
    top: -0.25rem !important;
  }

  .mobile-large\:u--right-1{
    right: -0.25rem !important;
  }

  .mobile-large\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .mobile-large\:u--left-1{
    left: -0.25rem !important;
  }

  .mobile-large\:u--top-2{
    top: -0.5rem !important;
  }

  .mobile-large\:u--right-2{
    right: -0.5rem !important;
  }

  .mobile-large\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .mobile-large\:u--left-2{
    left: -0.5rem !important;
  }

  .mobile-large\:u--top-3{
    top: -0.75rem !important;
  }

  .mobile-large\:u--right-3{
    right: -0.75rem !important;
  }

  .mobile-large\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .mobile-large\:u--left-3{
    left: -0.75rem !important;
  }

  .mobile-large\:u--top-4{
    top: -1rem !important;
  }

  .mobile-large\:u--right-4{
    right: -1rem !important;
  }

  .mobile-large\:u--bottom-4{
    bottom: -1rem !important;
  }

  .mobile-large\:u--left-4{
    left: -1rem !important;
  }

  .mobile-large\:u--top-5{
    top: -1.25rem !important;
  }

  .mobile-large\:u--right-5{
    right: -1.25rem !important;
  }

  .mobile-large\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .mobile-large\:u--left-5{
    left: -1.25rem !important;
  }

  .mobile-large\:u--top-6{
    top: -1.5rem !important;
  }

  .mobile-large\:u--right-6{
    right: -1.5rem !important;
  }

  .mobile-large\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .mobile-large\:u--left-6{
    left: -1.5rem !important;
  }

  .mobile-large\:u--top-7{
    top: -1.75rem !important;
  }

  .mobile-large\:u--right-7{
    right: -1.75rem !important;
  }

  .mobile-large\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .mobile-large\:u--left-7{
    left: -1.75rem !important;
  }

  .mobile-large\:u--top-8{
    top: -2rem !important;
  }

  .mobile-large\:u--right-8{
    right: -2rem !important;
  }

  .mobile-large\:u--bottom-8{
    bottom: -2rem !important;
  }

  .mobile-large\:u--left-8{
    left: -2rem !important;
  }

  .mobile-large\:u--top-9{
    top: -2.25rem !important;
  }

  .mobile-large\:u--right-9{
    right: -2.25rem !important;
  }

  .mobile-large\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .mobile-large\:u--left-9{
    left: -2.25rem !important;
  }

  .mobile-large\:u--top-10{
    top: -2.5rem !important;
  }

  .mobile-large\:u--right-10{
    right: -2.5rem !important;
  }

  .mobile-large\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .mobile-large\:u--left-10{
    left: -2.5rem !important;
  }

  .mobile-large\:u--top-11{
    top: -2.75rem !important;
  }

  .mobile-large\:u--right-11{
    right: -2.75rem !important;
  }

  .mobile-large\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .mobile-large\:u--left-11{
    left: -2.75rem !important;
  }

  .mobile-large\:u--top-12{
    top: -3rem !important;
  }

  .mobile-large\:u--right-12{
    right: -3rem !important;
  }

  .mobile-large\:u--bottom-12{
    bottom: -3rem !important;
  }

  .mobile-large\:u--left-12{
    left: -3rem !important;
  }

  .mobile-large\:u--top-14{
    top: -3.5rem !important;
  }

  .mobile-large\:u--right-14{
    right: -3.5rem !important;
  }

  .mobile-large\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .mobile-large\:u--left-14{
    left: -3.5rem !important;
  }

  .mobile-large\:u--top-16{
    top: -4rem !important;
  }

  .mobile-large\:u--right-16{
    right: -4rem !important;
  }

  .mobile-large\:u--bottom-16{
    bottom: -4rem !important;
  }

  .mobile-large\:u--left-16{
    left: -4rem !important;
  }

  .mobile-large\:u--top-20{
    top: -5rem !important;
  }

  .mobile-large\:u--right-20{
    right: -5rem !important;
  }

  .mobile-large\:u--bottom-20{
    bottom: -5rem !important;
  }

  .mobile-large\:u--left-20{
    left: -5rem !important;
  }

  .mobile-large\:u--top-24{
    top: -6rem !important;
  }

  .mobile-large\:u--right-24{
    right: -6rem !important;
  }

  .mobile-large\:u--bottom-24{
    bottom: -6rem !important;
  }

  .mobile-large\:u--left-24{
    left: -6rem !important;
  }

  .mobile-large\:u--top-28{
    top: -7rem !important;
  }

  .mobile-large\:u--right-28{
    right: -7rem !important;
  }

  .mobile-large\:u--bottom-28{
    bottom: -7rem !important;
  }

  .mobile-large\:u--left-28{
    left: -7rem !important;
  }

  .mobile-large\:u--top-32{
    top: -8rem !important;
  }

  .mobile-large\:u--right-32{
    right: -8rem !important;
  }

  .mobile-large\:u--bottom-32{
    bottom: -8rem !important;
  }

  .mobile-large\:u--left-32{
    left: -8rem !important;
  }

  .mobile-large\:u--top-36{
    top: -9rem !important;
  }

  .mobile-large\:u--right-36{
    right: -9rem !important;
  }

  .mobile-large\:u--bottom-36{
    bottom: -9rem !important;
  }

  .mobile-large\:u--left-36{
    left: -9rem !important;
  }

  .mobile-large\:u--top-40{
    top: -10rem !important;
  }

  .mobile-large\:u--right-40{
    right: -10rem !important;
  }

  .mobile-large\:u--bottom-40{
    bottom: -10rem !important;
  }

  .mobile-large\:u--left-40{
    left: -10rem !important;
  }

  .mobile-large\:u--top-44{
    top: -11rem !important;
  }

  .mobile-large\:u--right-44{
    right: -11rem !important;
  }

  .mobile-large\:u--bottom-44{
    bottom: -11rem !important;
  }

  .mobile-large\:u--left-44{
    left: -11rem !important;
  }

  .mobile-large\:u--top-48{
    top: -12rem !important;
  }

  .mobile-large\:u--right-48{
    right: -12rem !important;
  }

  .mobile-large\:u--bottom-48{
    bottom: -12rem !important;
  }

  .mobile-large\:u--left-48{
    left: -12rem !important;
  }

  .mobile-large\:u--top-52{
    top: -13rem !important;
  }

  .mobile-large\:u--right-52{
    right: -13rem !important;
  }

  .mobile-large\:u--bottom-52{
    bottom: -13rem !important;
  }

  .mobile-large\:u--left-52{
    left: -13rem !important;
  }

  .mobile-large\:u--top-56{
    top: -14rem !important;
  }

  .mobile-large\:u--right-56{
    right: -14rem !important;
  }

  .mobile-large\:u--bottom-56{
    bottom: -14rem !important;
  }

  .mobile-large\:u--left-56{
    left: -14rem !important;
  }

  .mobile-large\:u--top-60{
    top: -15rem !important;
  }

  .mobile-large\:u--right-60{
    right: -15rem !important;
  }

  .mobile-large\:u--bottom-60{
    bottom: -15rem !important;
  }

  .mobile-large\:u--left-60{
    left: -15rem !important;
  }

  .mobile-large\:u--top-64{
    top: -16rem !important;
  }

  .mobile-large\:u--right-64{
    right: -16rem !important;
  }

  .mobile-large\:u--bottom-64{
    bottom: -16rem !important;
  }

  .mobile-large\:u--left-64{
    left: -16rem !important;
  }

  .mobile-large\:u--top-72{
    top: -18rem !important;
  }

  .mobile-large\:u--right-72{
    right: -18rem !important;
  }

  .mobile-large\:u--bottom-72{
    bottom: -18rem !important;
  }

  .mobile-large\:u--left-72{
    left: -18rem !important;
  }

  .mobile-large\:u--top-80{
    top: -20rem !important;
  }

  .mobile-large\:u--right-80{
    right: -20rem !important;
  }

  .mobile-large\:u--bottom-80{
    bottom: -20rem !important;
  }

  .mobile-large\:u--left-80{
    left: -20rem !important;
  }

  .mobile-large\:u--top-96{
    top: -24rem !important;
  }

  .mobile-large\:u--right-96{
    right: -24rem !important;
  }

  .mobile-large\:u--bottom-96{
    bottom: -24rem !important;
  }

  .mobile-large\:u--left-96{
    left: -24rem !important;
  }

  .mobile-large\:u--top-px{
    top: -1px !important;
  }

  .mobile-large\:u--right-px{
    right: -1px !important;
  }

  .mobile-large\:u--bottom-px{
    bottom: -1px !important;
  }

  .mobile-large\:u--left-px{
    left: -1px !important;
  }

  .mobile-large\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .mobile-large\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .mobile-large\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .mobile-large\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .mobile-large\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .mobile-large\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .mobile-large\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .mobile-large\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .mobile-large\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .mobile-large\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .mobile-large\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .mobile-large\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .mobile-large\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .mobile-large\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .mobile-large\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .mobile-large\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .mobile-large\:u-top-1\/2{
    top: 50% !important;
  }

  .mobile-large\:u-right-1\/2{
    right: 50% !important;
  }

  .mobile-large\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .mobile-large\:u-left-1\/2{
    left: 50% !important;
  }

  .mobile-large\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .mobile-large\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .mobile-large\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .mobile-large\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .mobile-large\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .mobile-large\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .mobile-large\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .mobile-large\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .mobile-large\:u-top-1\/4{
    top: 25% !important;
  }

  .mobile-large\:u-right-1\/4{
    right: 25% !important;
  }

  .mobile-large\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .mobile-large\:u-left-1\/4{
    left: 25% !important;
  }

  .mobile-large\:u-top-2\/4{
    top: 50% !important;
  }

  .mobile-large\:u-right-2\/4{
    right: 50% !important;
  }

  .mobile-large\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .mobile-large\:u-left-2\/4{
    left: 50% !important;
  }

  .mobile-large\:u-top-3\/4{
    top: 75% !important;
  }

  .mobile-large\:u-right-3\/4{
    right: 75% !important;
  }

  .mobile-large\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .mobile-large\:u-left-3\/4{
    left: 75% !important;
  }

  .mobile-large\:u-top-full{
    top: 100% !important;
  }

  .mobile-large\:u-right-full{
    right: 100% !important;
  }

  .mobile-large\:u-bottom-full{
    bottom: 100% !important;
  }

  .mobile-large\:u-left-full{
    left: 100% !important;
  }

  .mobile-large\:u--top-1\/2{
    top: -50% !important;
  }

  .mobile-large\:u--right-1\/2{
    right: -50% !important;
  }

  .mobile-large\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .mobile-large\:u--left-1\/2{
    left: -50% !important;
  }

  .mobile-large\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .mobile-large\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .mobile-large\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .mobile-large\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .mobile-large\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .mobile-large\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .mobile-large\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .mobile-large\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .mobile-large\:u--top-1\/4{
    top: -25% !important;
  }

  .mobile-large\:u--right-1\/4{
    right: -25% !important;
  }

  .mobile-large\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .mobile-large\:u--left-1\/4{
    left: -25% !important;
  }

  .mobile-large\:u--top-2\/4{
    top: -50% !important;
  }

  .mobile-large\:u--right-2\/4{
    right: -50% !important;
  }

  .mobile-large\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .mobile-large\:u--left-2\/4{
    left: -50% !important;
  }

  .mobile-large\:u--top-3\/4{
    top: -75% !important;
  }

  .mobile-large\:u--right-3\/4{
    right: -75% !important;
  }

  .mobile-large\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .mobile-large\:u--left-3\/4{
    left: -75% !important;
  }

  .mobile-large\:u--top-full{
    top: -100% !important;
  }

  .mobile-large\:u--right-full{
    right: -100% !important;
  }

  .mobile-large\:u--bottom-full{
    bottom: -100% !important;
  }

  .mobile-large\:u--left-full{
    left: -100% !important;
  }

  .mobile-large\:u-resize-none{
    resize: none !important;
  }

  .mobile-large\:u-resize-y{
    resize: vertical !important;
  }

  .mobile-large\:u-resize-x{
    resize: horizontal !important;
  }

  .mobile-large\:u-resize{
    resize: both !important;
  }

  .mobile-large\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .mobile-large\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .mobile-large\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .mobile-large\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .mobile-large\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .mobile-large\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .mobile-large\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .mobile-large\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .mobile-large\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile-large\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .mobile-large\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .mobile-large\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .mobile-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .mobile-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .mobile-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .mobile-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .mobile-large\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .mobile-large\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .mobile-large\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .mobile-large\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .mobile-large\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .mobile-large\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .mobile-large\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .mobile-large\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .mobile-large\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .mobile-large\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .mobile-large\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .mobile-large\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .mobile-large\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .mobile-large\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .mobile-large\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile-large\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .mobile-large\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .mobile-large\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .mobile-large\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .mobile-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .mobile-large\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .mobile-large\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .mobile-large\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .mobile-large\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .mobile-large\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .mobile-large\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .mobile-large\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .mobile-large\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .mobile-large\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .mobile-large\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .mobile-large\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .mobile-large\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .mobile-large\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .mobile-large\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .mobile-large\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .mobile-large\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .mobile-large\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .mobile-large\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .mobile-large\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .mobile-large\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile-large\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile-large\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile-large\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile-large\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile-large\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile-large\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile-large\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile-large\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile-large\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile-large\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile-large\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile-large\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile-large\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .mobile-large\:u-fill-current{
    fill: currentColor !important;
  }

  .mobile-large\:u-stroke-current{
    stroke: currentColor !important;
  }

  .mobile-large\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .mobile-large\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .mobile-large\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .mobile-large\:u-table-auto{
    table-layout: auto !important;
  }

  .mobile-large\:u-table-fixed{
    table-layout: fixed !important;
  }

  .mobile-large\:u-text-left{
    text-align: left !important;
  }

  .mobile-large\:u-text-center{
    text-align: center !important;
  }

  .mobile-large\:u-text-right{
    text-align: right !important;
  }

  .mobile-large\:u-text-justify{
    text-align: justify !important;
  }

  .mobile-large\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-transparent{
    color: transparent !important;
  }

  .mobile-large\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .mobile-large\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .mobile-large\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .mobile-large\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .mobile-large\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .mobile-large\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .mobile-large\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .mobile-large\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .mobile-large\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .mobile-large\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .mobile-large\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .mobile-large\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .mobile-large\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .mobile-large\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .mobile-large\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .mobile-large\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .mobile-large\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .mobile-large\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .mobile-large\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .mobile-large\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .mobile-large\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .mobile-large\:u-italic{
    font-style: italic !important;
  }

  .mobile-large\:u-not-italic{
    font-style: normal !important;
  }

  .mobile-large\:u-uppercase{
    text-transform: uppercase !important;
  }

  .mobile-large\:u-lowercase{
    text-transform: lowercase !important;
  }

  .mobile-large\:u-capitalize{
    text-transform: capitalize !important;
  }

  .mobile-large\:u-normal-case{
    text-transform: none !important;
  }

  .mobile-large\:u-underline{
    text-decoration: underline !important;
  }

  .mobile-large\:u-line-through{
    text-decoration: line-through !important;
  }

  .mobile-large\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .mobile-large\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .mobile-large\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .mobile-large\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .mobile-large\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .mobile-large\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .mobile-large\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .mobile-large\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .mobile-large\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .mobile-large\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .mobile-large\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .mobile-large\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .mobile-large\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .mobile-large\:u-ordinal, .mobile-large\:u-slashed-zero, .mobile-large\:u-lining-nums, .mobile-large\:u-oldstyle-nums, .mobile-large\:u-proportional-nums, .mobile-large\:u-tabular-nums, .mobile-large\:u-diagonal-fractions, .mobile-large\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .mobile-large\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .mobile-large\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .mobile-large\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .mobile-large\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .mobile-large\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .mobile-large\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .mobile-large\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .mobile-large\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .mobile-large\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .mobile-large\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .mobile-large\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .mobile-large\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .mobile-large\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .mobile-large\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .mobile-large\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .mobile-large\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .mobile-large\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .mobile-large\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .mobile-large\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .mobile-large\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .mobile-large\:u-align-top{
    vertical-align: top !important;
  }

  .mobile-large\:u-align-middle{
    vertical-align: middle !important;
  }

  .mobile-large\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .mobile-large\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .mobile-large\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .mobile-large\:u-visible{
    visibility: visible !important;
  }

  .mobile-large\:u-invisible{
    visibility: hidden !important;
  }

  .mobile-large\:u-whitespace-normal{
    white-space: normal !important;
  }

  .mobile-large\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .mobile-large\:u-whitespace-pre{
    white-space: pre !important;
  }

  .mobile-large\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .mobile-large\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .mobile-large\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .mobile-large\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .mobile-large\:u-break-all{
    word-break: break-all !important;
  }

  .mobile-large\:u-w-0{
    width: 0px !important;
  }

  .mobile-large\:u-w-1{
    width: 0.25rem !important;
  }

  .mobile-large\:u-w-2{
    width: 0.5rem !important;
  }

  .mobile-large\:u-w-3{
    width: 0.75rem !important;
  }

  .mobile-large\:u-w-4{
    width: 1rem !important;
  }

  .mobile-large\:u-w-5{
    width: 1.25rem !important;
  }

  .mobile-large\:u-w-6{
    width: 1.5rem !important;
  }

  .mobile-large\:u-w-7{
    width: 1.75rem !important;
  }

  .mobile-large\:u-w-8{
    width: 2rem !important;
  }

  .mobile-large\:u-w-9{
    width: 2.25rem !important;
  }

  .mobile-large\:u-w-10{
    width: 2.5rem !important;
  }

  .mobile-large\:u-w-11{
    width: 2.75rem !important;
  }

  .mobile-large\:u-w-12{
    width: 3rem !important;
  }

  .mobile-large\:u-w-14{
    width: 3.5rem !important;
  }

  .mobile-large\:u-w-16{
    width: 4rem !important;
  }

  .mobile-large\:u-w-20{
    width: 5rem !important;
  }

  .mobile-large\:u-w-24{
    width: 6rem !important;
  }

  .mobile-large\:u-w-28{
    width: 7rem !important;
  }

  .mobile-large\:u-w-32{
    width: 8rem !important;
  }

  .mobile-large\:u-w-36{
    width: 9rem !important;
  }

  .mobile-large\:u-w-40{
    width: 10rem !important;
  }

  .mobile-large\:u-w-44{
    width: 11rem !important;
  }

  .mobile-large\:u-w-48{
    width: 12rem !important;
  }

  .mobile-large\:u-w-52{
    width: 13rem !important;
  }

  .mobile-large\:u-w-56{
    width: 14rem !important;
  }

  .mobile-large\:u-w-60{
    width: 15rem !important;
  }

  .mobile-large\:u-w-64{
    width: 16rem !important;
  }

  .mobile-large\:u-w-72{
    width: 18rem !important;
  }

  .mobile-large\:u-w-80{
    width: 20rem !important;
  }

  .mobile-large\:u-w-96{
    width: 24rem !important;
  }

  .mobile-large\:u-w-auto{
    width: auto !important;
  }

  .mobile-large\:u-w-px{
    width: 1px !important;
  }

  .mobile-large\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .mobile-large\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .mobile-large\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .mobile-large\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .mobile-large\:u-w-1\/2{
    width: 50% !important;
  }

  .mobile-large\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .mobile-large\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .mobile-large\:u-w-1\/4{
    width: 25% !important;
  }

  .mobile-large\:u-w-2\/4{
    width: 50% !important;
  }

  .mobile-large\:u-w-3\/4{
    width: 75% !important;
  }

  .mobile-large\:u-w-1\/5{
    width: 20% !important;
  }

  .mobile-large\:u-w-2\/5{
    width: 40% !important;
  }

  .mobile-large\:u-w-3\/5{
    width: 60% !important;
  }

  .mobile-large\:u-w-4\/5{
    width: 80% !important;
  }

  .mobile-large\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .mobile-large\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .mobile-large\:u-w-3\/6{
    width: 50% !important;
  }

  .mobile-large\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .mobile-large\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .mobile-large\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .mobile-large\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .mobile-large\:u-w-3\/12{
    width: 25% !important;
  }

  .mobile-large\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .mobile-large\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .mobile-large\:u-w-6\/12{
    width: 50% !important;
  }

  .mobile-large\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .mobile-large\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .mobile-large\:u-w-9\/12{
    width: 75% !important;
  }

  .mobile-large\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .mobile-large\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .mobile-large\:u-w-full{
    width: 100% !important;
  }

  .mobile-large\:u-w-screen{
    width: 100vw !important;
  }

  .mobile-large\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .mobile-large\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .mobile-large\:u-z-0{
    z-index: 0 !important;
  }

  .mobile-large\:u-z-10{
    z-index: 10 !important;
  }

  .mobile-large\:u-z-20{
    z-index: 20 !important;
  }

  .mobile-large\:u-z-30{
    z-index: 30 !important;
  }

  .mobile-large\:u-z-40{
    z-index: 40 !important;
  }

  .mobile-large\:u-z-50{
    z-index: 50 !important;
  }

  .mobile-large\:u-z-auto{
    z-index: auto !important;
  }

  .mobile-large\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .mobile-large\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .mobile-large\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .mobile-large\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .mobile-large\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .mobile-large\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .mobile-large\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .mobile-large\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .mobile-large\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .mobile-large\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .mobile-large\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .mobile-large\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .mobile-large\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .mobile-large\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .mobile-large\:u-gap-0{
    gap: 0px !important;
  }

  .mobile-large\:u-gap-1{
    gap: 0.25rem !important;
  }

  .mobile-large\:u-gap-2{
    gap: 0.5rem !important;
  }

  .mobile-large\:u-gap-3{
    gap: 0.75rem !important;
  }

  .mobile-large\:u-gap-4{
    gap: 1rem !important;
  }

  .mobile-large\:u-gap-5{
    gap: 1.25rem !important;
  }

  .mobile-large\:u-gap-6{
    gap: 1.5rem !important;
  }

  .mobile-large\:u-gap-7{
    gap: 1.75rem !important;
  }

  .mobile-large\:u-gap-8{
    gap: 2rem !important;
  }

  .mobile-large\:u-gap-9{
    gap: 2.25rem !important;
  }

  .mobile-large\:u-gap-10{
    gap: 2.5rem !important;
  }

  .mobile-large\:u-gap-11{
    gap: 2.75rem !important;
  }

  .mobile-large\:u-gap-12{
    gap: 3rem !important;
  }

  .mobile-large\:u-gap-14{
    gap: 3.5rem !important;
  }

  .mobile-large\:u-gap-16{
    gap: 4rem !important;
  }

  .mobile-large\:u-gap-20{
    gap: 5rem !important;
  }

  .mobile-large\:u-gap-24{
    gap: 6rem !important;
  }

  .mobile-large\:u-gap-28{
    gap: 7rem !important;
  }

  .mobile-large\:u-gap-32{
    gap: 8rem !important;
  }

  .mobile-large\:u-gap-36{
    gap: 9rem !important;
  }

  .mobile-large\:u-gap-40{
    gap: 10rem !important;
  }

  .mobile-large\:u-gap-44{
    gap: 11rem !important;
  }

  .mobile-large\:u-gap-48{
    gap: 12rem !important;
  }

  .mobile-large\:u-gap-52{
    gap: 13rem !important;
  }

  .mobile-large\:u-gap-56{
    gap: 14rem !important;
  }

  .mobile-large\:u-gap-60{
    gap: 15rem !important;
  }

  .mobile-large\:u-gap-64{
    gap: 16rem !important;
  }

  .mobile-large\:u-gap-72{
    gap: 18rem !important;
  }

  .mobile-large\:u-gap-80{
    gap: 20rem !important;
  }

  .mobile-large\:u-gap-96{
    gap: 24rem !important;
  }

  .mobile-large\:u-gap-px{
    gap: 1px !important;
  }

  .mobile-large\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .mobile-large\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .mobile-large\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .mobile-large\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .mobile-large\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .mobile-large\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .mobile-large\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .mobile-large\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .mobile-large\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .mobile-large\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .mobile-large\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .mobile-large\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .mobile-large\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .mobile-large\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .mobile-large\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .mobile-large\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .mobile-large\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .mobile-large\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .mobile-large\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .mobile-large\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .mobile-large\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .mobile-large\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .mobile-large\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .mobile-large\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .mobile-large\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .mobile-large\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .mobile-large\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .mobile-large\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .mobile-large\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .mobile-large\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .mobile-large\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .mobile-large\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .mobile-large\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .mobile-large\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .mobile-large\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .mobile-large\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .mobile-large\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .mobile-large\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .mobile-large\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .mobile-large\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .mobile-large\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .mobile-large\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .mobile-large\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .mobile-large\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .mobile-large\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .mobile-large\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .mobile-large\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .mobile-large\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .mobile-large\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .mobile-large\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .mobile-large\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .mobile-large\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .mobile-large\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .mobile-large\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .mobile-large\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .mobile-large\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .mobile-large\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .mobile-large\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .mobile-large\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .mobile-large\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .mobile-large\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .mobile-large\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .mobile-large\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .mobile-large\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .mobile-large\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .mobile-large\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .mobile-large\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .mobile-large\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .mobile-large\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .mobile-large\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .mobile-large\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .mobile-large\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .mobile-large\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .mobile-large\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .mobile-large\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .mobile-large\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .mobile-large\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .mobile-large\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .mobile-large\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .mobile-large\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .mobile-large\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .mobile-large\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .mobile-large\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .mobile-large\:u-col-auto{
    grid-column: auto !important;
  }

  .mobile-large\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .mobile-large\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .mobile-large\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .mobile-large\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .mobile-large\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .mobile-large\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .mobile-large\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .mobile-large\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .mobile-large\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .mobile-large\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .mobile-large\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .mobile-large\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .mobile-large\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .mobile-large\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .mobile-large\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .mobile-large\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .mobile-large\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .mobile-large\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .mobile-large\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .mobile-large\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .mobile-large\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .mobile-large\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .mobile-large\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .mobile-large\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .mobile-large\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .mobile-large\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .mobile-large\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .mobile-large\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .mobile-large\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .mobile-large\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .mobile-large\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .mobile-large\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .mobile-large\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .mobile-large\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .mobile-large\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .mobile-large\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .mobile-large\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .mobile-large\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .mobile-large\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .mobile-large\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .mobile-large\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .mobile-large\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .mobile-large\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .mobile-large\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .mobile-large\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .mobile-large\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .mobile-large\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .mobile-large\:u-row-auto{
    grid-row: auto !important;
  }

  .mobile-large\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .mobile-large\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .mobile-large\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .mobile-large\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .mobile-large\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .mobile-large\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .mobile-large\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .mobile-large\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .mobile-large\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .mobile-large\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .mobile-large\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .mobile-large\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .mobile-large\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .mobile-large\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .mobile-large\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .mobile-large\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .mobile-large\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .mobile-large\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .mobile-large\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .mobile-large\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .mobile-large\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .mobile-large\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .mobile-large\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .mobile-large\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .mobile-large\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .mobile-large\:u-transform-none{
    transform: none !important;
  }

  .mobile-large\:u-origin-center{
    transform-origin: center !important;
  }

  .mobile-large\:u-origin-top{
    transform-origin: top !important;
  }

  .mobile-large\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .mobile-large\:u-origin-right{
    transform-origin: right !important;
  }

  .mobile-large\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .mobile-large\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .mobile-large\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .mobile-large\:u-origin-left{
    transform-origin: left !important;
  }

  .mobile-large\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .mobile-large\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .mobile-large\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .mobile-large\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .mobile-large\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .mobile-large\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .mobile-large\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .mobile-large\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .mobile-large\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .mobile-large\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .mobile-large\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .mobile-large\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .mobile-large\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .mobile-large\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .mobile-large\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .mobile-large\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .mobile-large\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .mobile-large\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .mobile-large\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .mobile-large\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .mobile-large\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .mobile-large\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .mobile-large\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .mobile-large\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .mobile-large\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .mobile-large\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .mobile-large\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .mobile-large\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .mobile-large\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .mobile-large\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .mobile-large\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .mobile-large\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .mobile-large\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .mobile-large\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .mobile-large\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .mobile-large\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .mobile-large\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .mobile-large\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .mobile-large\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .mobile-large\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .mobile-large\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .mobile-large\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .mobile-large\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .mobile-large\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .mobile-large\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .mobile-large\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .mobile-large\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .mobile-large\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .mobile-large\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .mobile-large\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .mobile-large\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .mobile-large\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .mobile-large\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .mobile-large\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .mobile-large\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .mobile-large\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .mobile-large\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .mobile-large\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .mobile-large\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .mobile-large\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .mobile-large\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .mobile-large\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .mobile-large\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .mobile-large\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .mobile-large\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .mobile-large\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .mobile-large\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .mobile-large\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .mobile-large\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .mobile-large\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .mobile-large\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .mobile-large\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .mobile-large\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .mobile-large\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .mobile-large\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .mobile-large\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .mobile-large\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .mobile-large\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .mobile-large\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .mobile-large\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .mobile-large\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .mobile-large\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .mobile-large\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .mobile-large\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .mobile-large\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .mobile-large\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .mobile-large\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .mobile-large\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .mobile-large\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .mobile-large\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .mobile-large\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .mobile-large\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .mobile-large\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .mobile-large\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .mobile-large\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .mobile-large\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .mobile-large\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .mobile-large\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .mobile-large\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .mobile-large\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .mobile-large\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .mobile-large\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .mobile-large\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .mobile-large\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .mobile-large\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .mobile-large\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .mobile-large\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .mobile-large\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .mobile-large\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .mobile-large\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .mobile-large\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .mobile-large\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .mobile-large\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .mobile-large\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .mobile-large\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .mobile-large\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .mobile-large\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .mobile-large\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .mobile-large\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .mobile-large\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .mobile-large\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .mobile-large\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .mobile-large\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .mobile-large\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .mobile-large\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .mobile-large\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .mobile-large\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .mobile-large\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .mobile-large\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .mobile-large\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .mobile-large\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .mobile-large\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .mobile-large\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .mobile-large\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .mobile-large\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .mobile-large\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .mobile-large\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .mobile-large\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .mobile-large\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .mobile-large\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .mobile-large\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .mobile-large\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .mobile-large\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .mobile-large\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .mobile-large\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .mobile-large\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .mobile-large\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .mobile-large\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .mobile-large\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .mobile-large\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .mobile-large\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .mobile-large\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .mobile-large\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .mobile-large\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .mobile-large\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .mobile-large\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .mobile-large\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .mobile-large\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .mobile-large\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .mobile-large\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .mobile-large\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .mobile-large\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .mobile-large\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .mobile-large\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .mobile-large\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .mobile-large\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .mobile-large\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .mobile-large\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .mobile-large\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .mobile-large\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .mobile-large\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .mobile-large\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .mobile-large\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .mobile-large\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .mobile-large\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .mobile-large\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .mobile-large\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .mobile-large\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .mobile-large\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .mobile-large\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .mobile-large\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .mobile-large\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .mobile-large\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .mobile-large\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .mobile-large\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .mobile-large\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .mobile-large\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .mobile-large\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .mobile-large\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .mobile-large\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .mobile-large\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .mobile-large\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .mobile-large\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .mobile-large\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .mobile-large\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .mobile-large\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .mobile-large\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .mobile-large\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .mobile-large\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .mobile-large\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .mobile-large\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .mobile-large\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .mobile-large\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .mobile-large\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .mobile-large\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .mobile-large\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .mobile-large\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .mobile-large\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .mobile-large\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .mobile-large\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .mobile-large\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .mobile-large\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .mobile-large\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .mobile-large\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .mobile-large\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .mobile-large\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .mobile-large\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .mobile-large\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .mobile-large\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .mobile-large\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .mobile-large\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .mobile-large\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .mobile-large\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .mobile-large\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .mobile-large\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .mobile-large\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .mobile-large\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .mobile-large\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .mobile-large\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .mobile-large\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .mobile-large\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .mobile-large\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .mobile-large\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .mobile-large\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .mobile-large\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .mobile-large\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .mobile-large\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .mobile-large\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .mobile-large\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .mobile-large\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .mobile-large\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .mobile-large\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .mobile-large\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .mobile-large\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .mobile-large\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .mobile-large\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .mobile-large\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .mobile-large\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .mobile-large\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .mobile-large\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .mobile-large\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .mobile-large\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .mobile-large\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .mobile-large\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .mobile-large\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .mobile-large\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .mobile-large\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .mobile-large\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .mobile-large\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .mobile-large\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .mobile-large\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .mobile-large\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .mobile-large\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .mobile-large\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .mobile-large\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .mobile-large\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .mobile-large\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .mobile-large\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .mobile-large\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .mobile-large\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .mobile-large\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .mobile-large\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .mobile-large\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .mobile-large\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .mobile-large\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .mobile-large\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .mobile-large\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .mobile-large\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .mobile-large\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .mobile-large\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .mobile-large\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .mobile-large\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .mobile-large\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .mobile-large\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .mobile-large\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .mobile-large\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .mobile-large\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .mobile-large\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .mobile-large\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .mobile-large\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .mobile-large\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .mobile-large\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .mobile-large\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .mobile-large\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .mobile-large\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .mobile-large\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .mobile-large\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .mobile-large\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .mobile-large\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .mobile-large\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .mobile-large\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .mobile-large\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .mobile-large\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .mobile-large\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .mobile-large\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .mobile-large\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .mobile-large\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .mobile-large\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .mobile-large\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .mobile-large\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .mobile-large\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .mobile-large\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .mobile-large\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .mobile-large\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .mobile-large\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .mobile-large\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .mobile-large\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .mobile-large\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .mobile-large\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .mobile-large\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .mobile-large\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .mobile-large\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .mobile-large\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .mobile-large\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .mobile-large\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .mobile-large\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .mobile-large\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .mobile-large\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .mobile-large\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .mobile-large\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .mobile-large\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .mobile-large\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .mobile-large\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .mobile-large\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .mobile-large\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .mobile-large\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .mobile-large\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .mobile-large\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .mobile-large\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .mobile-large\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .mobile-large\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .mobile-large\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .mobile-large\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .mobile-large\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .mobile-large\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .mobile-large\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .mobile-large\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .mobile-large\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .mobile-large\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .mobile-large\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .mobile-large\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .mobile-large\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .mobile-large\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .mobile-large\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .mobile-large\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .mobile-large\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .mobile-large\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .mobile-large\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .mobile-large\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .mobile-large\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .mobile-large\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .mobile-large\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .mobile-large\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .mobile-large\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .mobile-large\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .mobile-large\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .mobile-large\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .mobile-large\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .mobile-large\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .mobile-large\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .mobile-large\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .mobile-large\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .mobile-large\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .mobile-large\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .mobile-large\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .mobile-large\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .mobile-large\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .mobile-large\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .mobile-large\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .mobile-large\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .mobile-large\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .mobile-large\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .mobile-large\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .mobile-large\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .mobile-large\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .mobile-large\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .mobile-large\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .mobile-large\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .mobile-large\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .mobile-large\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .mobile-large\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .mobile-large\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .mobile-large\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .mobile-large\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .mobile-large\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .mobile-large\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .mobile-large\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .mobile-large\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .mobile-large\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .mobile-large\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .mobile-large\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .mobile-large\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .mobile-large\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .mobile-large\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .mobile-large\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .mobile-large\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .mobile-large\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .mobile-large\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .mobile-large\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .mobile-large\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .mobile-large\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .mobile-large\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .mobile-large\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .mobile-large\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .mobile-large\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .mobile-large\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .mobile-large\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .mobile-large\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .mobile-large\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .mobile-large\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .mobile-large\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .mobile-large\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .mobile-large\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .mobile-large\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .mobile-large\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .mobile-large\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .mobile-large\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .mobile-large\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .mobile-large\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .mobile-large\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .mobile-large\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .mobile-large\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .mobile-large\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .mobile-large\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .mobile-large\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .mobile-large\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .mobile-large\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .mobile-large\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .mobile-large\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .mobile-large\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .mobile-large\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .mobile-large\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .mobile-large\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .mobile-large\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .mobile-large\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .mobile-large\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .mobile-large\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .mobile-large\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .mobile-large\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .mobile-large\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .mobile-large\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .mobile-large\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .mobile-large\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .mobile-large\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .mobile-large\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .mobile-large\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .mobile-large\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .mobile-large\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .mobile-large\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .mobile-large\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .mobile-large\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .mobile-large\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .mobile-large\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .mobile-large\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .mobile-large\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .mobile-large\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .mobile-large\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .mobile-large\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .mobile-large\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .mobile-large\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .mobile-large\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .mobile-large\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .mobile-large\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .mobile-large\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .mobile-large\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .mobile-large\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .mobile-large\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .mobile-large\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .mobile-large\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .mobile-large\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .mobile-large\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .mobile-large\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .mobile-large\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .mobile-large\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .mobile-large\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .mobile-large\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .mobile-large\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .mobile-large\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .mobile-large\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .mobile-large\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .mobile-large\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .mobile-large\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .mobile-large\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .mobile-large\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .mobile-large\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .mobile-large\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .mobile-large\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .mobile-large\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .mobile-large\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .mobile-large\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .mobile-large\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .mobile-large\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .mobile-large\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .mobile-large\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .mobile-large\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .mobile-large\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .mobile-large\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .mobile-large\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .mobile-large\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .mobile-large\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .mobile-large\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .mobile-large\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .mobile-large\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .mobile-large\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .mobile-large\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .mobile-large\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .mobile-large\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .mobile-large\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .mobile-large\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .mobile-large\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .mobile-large\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .mobile-large\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .mobile-large\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .mobile-large\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .mobile-large\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .mobile-large\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .mobile-large\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .mobile-large\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .mobile-large\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .mobile-large\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .mobile-large\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .mobile-large\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .mobile-large\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .mobile-large\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .mobile-large\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .mobile-large\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .mobile-large\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .mobile-large\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .mobile-large\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .mobile-large\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .mobile-large\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .mobile-large\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .mobile-large\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .mobile-large\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .mobile-large\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .mobile-large\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .mobile-large\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .mobile-large\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .mobile-large\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .mobile-large\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .mobile-large\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .mobile-large\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .mobile-large\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .mobile-large\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .mobile-large\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .mobile-large\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .mobile-large\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .mobile-large\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .mobile-large\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .mobile-large\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .mobile-large\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .mobile-large\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .mobile-large\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .mobile-large\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .mobile-large\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .mobile-large\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .mobile-large\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .mobile-large\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .mobile-large\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .mobile-large\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .mobile-large\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .mobile-large\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .mobile-large\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .mobile-large\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .mobile-large\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .mobile-large\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .mobile-large\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .mobile-large\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .mobile-large\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .mobile-large\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .mobile-large\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .mobile-large\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .mobile-large\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .mobile-large\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .mobile-large\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .mobile-large\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .mobile-large\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .mobile-large\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .mobile-large\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .mobile-large\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .mobile-large\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .mobile-large\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .mobile-large\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .mobile-large\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .mobile-large\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .mobile-large\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .mobile-large\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .mobile-large\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .mobile-large\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .mobile-large\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .mobile-large\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .mobile-large\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .mobile-large\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .mobile-large\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .mobile-large\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .mobile-large\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .mobile-large\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .mobile-large\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .mobile-large\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .mobile-large\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .mobile-large\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .mobile-large\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .mobile-large\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .mobile-large\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .mobile-large\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .mobile-large\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .mobile-large\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .mobile-large\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .mobile-large\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .mobile-large\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .mobile-large\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .mobile-large\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .mobile-large\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .mobile-large\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .mobile-large\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .mobile-large\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .mobile-large\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .mobile-large\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .mobile-large\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .mobile-large\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .mobile-large\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .mobile-large\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .mobile-large\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .mobile-large\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .mobile-large\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .mobile-large\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .mobile-large\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .mobile-large\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .mobile-large\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .mobile-large\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .mobile-large\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .mobile-large\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .mobile-large\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .mobile-large\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .mobile-large\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .mobile-large\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .mobile-large\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .mobile-large\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .mobile-large\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .mobile-large\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .mobile-large\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .mobile-large\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .mobile-large\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .mobile-large\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .mobile-large\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .mobile-large\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .mobile-large\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .mobile-large\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .mobile-large\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .mobile-large\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .mobile-large\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .mobile-large\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .mobile-large\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .mobile-large\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .mobile-large\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .mobile-large\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .mobile-large\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .mobile-large\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .mobile-large\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .mobile-large\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .mobile-large\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .mobile-large\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .mobile-large\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .mobile-large\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .mobile-large\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .mobile-large\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .mobile-large\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .mobile-large\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .mobile-large\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .mobile-large\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .mobile-large\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .mobile-large\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .mobile-large\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .mobile-large\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .mobile-large\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .mobile-large\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .mobile-large\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .mobile-large\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .mobile-large\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .mobile-large\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .mobile-large\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .mobile-large\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .mobile-large\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .mobile-large\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .mobile-large\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .mobile-large\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .mobile-large\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .mobile-large\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .mobile-large\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .mobile-large\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .mobile-large\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .mobile-large\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .mobile-large\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .mobile-large\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .mobile-large\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .mobile-large\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .mobile-large\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .mobile-large\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .mobile-large\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .mobile-large\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .mobile-large\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .mobile-large\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .mobile-large\:u-transition-none{
    transition-property: none !important;
  }

  .mobile-large\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .mobile-large\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .mobile-large\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .mobile-large\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-large\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .mobile-large\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .mobile-large\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .mobile-large\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .mobile-large\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .mobile-large\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .mobile-large\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .mobile-large\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .mobile-large\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .mobile-large\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .mobile-large\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .mobile-large\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .mobile-large\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .mobile-large\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .mobile-large\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .mobile-large\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .mobile-large\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .mobile-large\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .mobile-large\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .mobile-large\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .mobile-large\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}

@media (min-width: 600px){
  .tablet-small\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .tablet-small\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .tablet-small\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .tablet-small\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .tablet-small\:u-container{
      max-width: 1120px;
    }
  }

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

  .tablet-small\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-small\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-small\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .tablet-small\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .tablet-small\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-small\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-small\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-small\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-small\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-small\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-small\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-small\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-small\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-small\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-small\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .tablet-small\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .tablet-small\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .tablet-small\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .tablet-small\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .tablet-small\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .tablet-small\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .tablet-small\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .tablet-small\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .tablet-small\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .tablet-small\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .tablet-small\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .tablet-small\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .tablet-small\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .tablet-small\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .tablet-small\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .tablet-small\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .tablet-small\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .tablet-small\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .tablet-small\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .tablet-small\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .tablet-small\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .tablet-small\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .tablet-small\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .tablet-small\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet-small\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet-small\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet-small\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet-small\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet-small\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet-small\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .tablet-small\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .tablet-small\:u-bg-local{
    background-attachment: local !important;
  }

  .tablet-small\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .tablet-small\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .tablet-small\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .tablet-small\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .tablet-small\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .tablet-small\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-transparent{
    background-color: transparent !important;
  }

  .tablet-small\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .tablet-small\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .tablet-small\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-small\:u-bg-none{
    background-image: none !important;
  }

  .tablet-small\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .tablet-small\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-small\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-small\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-small\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-small\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-small\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-small\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-small\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-small\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-small\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-small\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-small\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-small\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-small\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-small\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-small\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-small\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-small\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-small\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-small\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-small\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-small\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-small\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-small\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-small\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-small\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-small\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-small\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-small\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-small\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-small\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-small\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-small\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-small\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-small\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-small\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-small\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .tablet-small\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .tablet-small\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-small\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .tablet-small\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-small\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-small\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-small\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-small\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-small\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet-small\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet-small\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet-small\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet-small\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet-small\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet-small\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet-small\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .tablet-small\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet-small\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet-small\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet-small\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet-small\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet-small\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .tablet-small\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .tablet-small\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet-small\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-small\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-small\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-small\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-small\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-small\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-small\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-small\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-small\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-small\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-small\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-small\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-small\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .tablet-small\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .tablet-small\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-small\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .tablet-small\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-small\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-small\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-small\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-small\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-small\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet-small\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet-small\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet-small\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet-small\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet-small\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet-small\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet-small\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .tablet-small\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet-small\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet-small\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet-small\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet-small\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet-small\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .tablet-small\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .tablet-small\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet-small\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-small\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-small\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-small\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-small\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-small\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-small\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-small\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-small\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-small\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-small\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-small\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-small\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-small\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .tablet-small\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .tablet-small\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-small\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .tablet-small\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-small\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-small\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-small\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-small\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-small\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-small\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-small\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet-small\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-small\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet-small\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet-small\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet-small\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet-small\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet-small\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet-small\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .tablet-small\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet-small\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet-small\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet-small\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet-small\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet-small\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .tablet-small\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .tablet-small\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet-small\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-small\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-small\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-small\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-small\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-small\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-small\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-small\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-small\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-small\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-small\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-small\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-small\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-small\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-small\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-small\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-small\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-small\:u-bg-bottom{
    background-position: bottom !important;
  }

  .tablet-small\:u-bg-center{
    background-position: center !important;
  }

  .tablet-small\:u-bg-left{
    background-position: left !important;
  }

  .tablet-small\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .tablet-small\:u-bg-left-top{
    background-position: left top !important;
  }

  .tablet-small\:u-bg-right{
    background-position: right !important;
  }

  .tablet-small\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .tablet-small\:u-bg-right-top{
    background-position: right top !important;
  }

  .tablet-small\:u-bg-top{
    background-position: top !important;
  }

  .tablet-small\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .tablet-small\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .tablet-small\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .tablet-small\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .tablet-small\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .tablet-small\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .tablet-small\:u-bg-auto{
    background-size: auto !important;
  }

  .tablet-small\:u-bg-cover{
    background-size: cover !important;
  }

  .tablet-small\:u-bg-contain{
    background-size: contain !important;
  }

  .tablet-small\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .tablet-small\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .tablet-small\:u-border-separate{
    border-collapse: separate !important;
  }

  .tablet-small\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-transparent{
    border-color: transparent !important;
  }

  .tablet-small\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .tablet-small\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .tablet-small\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-small\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .tablet-small\:u-rounded-none{
    border-radius: 0 !important;
  }

  .tablet-small\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .tablet-small\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .tablet-small\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .tablet-small\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .tablet-small\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .tablet-small\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .tablet-small\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .tablet-small\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .tablet-small\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-small\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-small\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-small\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .tablet-small\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-small\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-small\:u-border-solid{
    border-style: solid !important;
  }

  .tablet-small\:u-border-dashed{
    border-style: dashed !important;
  }

  .tablet-small\:u-border-dotted{
    border-style: dotted !important;
  }

  .tablet-small\:u-border-double{
    border-style: double !important;
  }

  .tablet-small\:u-border-none{
    border-style: none !important;
  }

  .tablet-small\:u-border-0{
    border-width: 0px !important;
  }

  .tablet-small\:u-border-2{
    border-width: 2px !important;
  }

  .tablet-small\:u-border-4{
    border-width: 4px !important;
  }

  .tablet-small\:u-border-8{
    border-width: 8px !important;
  }

  .tablet-small\:u-border{
    border-width: 1px !important;
  }

  .tablet-small\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .tablet-small\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .tablet-small\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .tablet-small\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .tablet-small\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .tablet-small\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .tablet-small\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .tablet-small\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .tablet-small\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .tablet-small\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .tablet-small\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .tablet-small\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .tablet-small\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .tablet-small\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .tablet-small\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .tablet-small\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .tablet-small\:u-border-t{
    border-top-width: 1px !important;
  }

  .tablet-small\:u-border-r{
    border-right-width: 1px !important;
  }

  .tablet-small\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .tablet-small\:u-border-l{
    border-left-width: 1px !important;
  }

  .tablet-small\:u-box-border{
    box-sizing: border-box !important;
  }

  .tablet-small\:u-box-content{
    box-sizing: content-box !important;
  }

  .tablet-small\:u-cursor-auto{
    cursor: auto !important;
  }

  .tablet-small\:u-cursor-default{
    cursor: default !important;
  }

  .tablet-small\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .tablet-small\:u-cursor-wait{
    cursor: wait !important;
  }

  .tablet-small\:u-cursor-text{
    cursor: text !important;
  }

  .tablet-small\:u-cursor-move{
    cursor: move !important;
  }

  .tablet-small\:u-cursor-help{
    cursor: help !important;
  }

  .tablet-small\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .tablet-small\:u-block{
    display: block !important;
  }

  .tablet-small\:u-inline-block{
    display: inline-block !important;
  }

  .tablet-small\:u-inline{
    display: inline !important;
  }

  .tablet-small\:u-flex{
    display: flex !important;
  }

  .tablet-small\:u-inline-flex{
    display: inline-flex !important;
  }

  .tablet-small\:u-table{
    display: table !important;
  }

  .tablet-small\:u-table-caption{
    display: table-caption !important;
  }

  .tablet-small\:u-table-cell{
    display: table-cell !important;
  }

  .tablet-small\:u-table-column{
    display: table-column !important;
  }

  .tablet-small\:u-table-column-group{
    display: table-column-group !important;
  }

  .tablet-small\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .tablet-small\:u-table-header-group{
    display: table-header-group !important;
  }

  .tablet-small\:u-table-row-group{
    display: table-row-group !important;
  }

  .tablet-small\:u-table-row{
    display: table-row !important;
  }

  .tablet-small\:u-flow-root{
    display: flow-root !important;
  }

  .tablet-small\:u-grid{
    display: grid !important;
  }

  .tablet-small\:u-inline-grid{
    display: inline-grid !important;
  }

  .tablet-small\:u-contents{
    display: contents !important;
  }

  .tablet-small\:u-hidden{
    display: none !important;
  }

  .tablet-small\:u-flex-row{
    flex-direction: row !important;
  }

  .tablet-small\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .tablet-small\:u-flex-col{
    flex-direction: column !important;
  }

  .tablet-small\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .tablet-small\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .tablet-small\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .tablet-small\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .tablet-small\:u-place-items-auto{
    place-items: auto !important;
  }

  .tablet-small\:u-place-items-start{
    place-items: start !important;
  }

  .tablet-small\:u-place-items-end{
    place-items: end !important;
  }

  .tablet-small\:u-place-items-center{
    place-items: center !important;
  }

  .tablet-small\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .tablet-small\:u-place-content-center{
    place-content: center !important;
  }

  .tablet-small\:u-place-content-start{
    place-content: start !important;
  }

  .tablet-small\:u-place-content-end{
    place-content: end !important;
  }

  .tablet-small\:u-place-content-between{
    place-content: space-between !important;
  }

  .tablet-small\:u-place-content-around{
    place-content: space-around !important;
  }

  .tablet-small\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .tablet-small\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .tablet-small\:u-place-self-auto{
    place-self: auto !important;
  }

  .tablet-small\:u-place-self-start{
    place-self: start !important;
  }

  .tablet-small\:u-place-self-end{
    place-self: end !important;
  }

  .tablet-small\:u-place-self-center{
    place-self: center !important;
  }

  .tablet-small\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .tablet-small\:u-items-start{
    align-items: flex-start !important;
  }

  .tablet-small\:u-items-end{
    align-items: flex-end !important;
  }

  .tablet-small\:u-items-center{
    align-items: center !important;
  }

  .tablet-small\:u-items-baseline{
    align-items: baseline !important;
  }

  .tablet-small\:u-items-stretch{
    align-items: stretch !important;
  }

  .tablet-small\:u-content-center{
    align-content: center !important;
  }

  .tablet-small\:u-content-start{
    align-content: flex-start !important;
  }

  .tablet-small\:u-content-end{
    align-content: flex-end !important;
  }

  .tablet-small\:u-content-between{
    align-content: space-between !important;
  }

  .tablet-small\:u-content-around{
    align-content: space-around !important;
  }

  .tablet-small\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .tablet-small\:u-self-auto{
    align-self: auto !important;
  }

  .tablet-small\:u-self-start{
    align-self: flex-start !important;
  }

  .tablet-small\:u-self-end{
    align-self: flex-end !important;
  }

  .tablet-small\:u-self-center{
    align-self: center !important;
  }

  .tablet-small\:u-self-stretch{
    align-self: stretch !important;
  }

  .tablet-small\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .tablet-small\:u-justify-items-start{
    justify-items: start !important;
  }

  .tablet-small\:u-justify-items-end{
    justify-items: end !important;
  }

  .tablet-small\:u-justify-items-center{
    justify-items: center !important;
  }

  .tablet-small\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .tablet-small\:u-justify-start{
    justify-content: flex-start !important;
  }

  .tablet-small\:u-justify-end{
    justify-content: flex-end !important;
  }

  .tablet-small\:u-justify-center{
    justify-content: center !important;
  }

  .tablet-small\:u-justify-between{
    justify-content: space-between !important;
  }

  .tablet-small\:u-justify-around{
    justify-content: space-around !important;
  }

  .tablet-small\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .tablet-small\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .tablet-small\:u-justify-self-start{
    justify-self: start !important;
  }

  .tablet-small\:u-justify-self-end{
    justify-self: end !important;
  }

  .tablet-small\:u-justify-self-center{
    justify-self: center !important;
  }

  .tablet-small\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .tablet-small\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .tablet-small\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .tablet-small\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .tablet-small\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .tablet-small\:u-flex-none{
    flex: none !important;
  }

  .tablet-small\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .tablet-small\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .tablet-small\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .tablet-small\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .tablet-small\:u-order-1{
    order: 1 !important;
  }

  .tablet-small\:u-order-2{
    order: 2 !important;
  }

  .tablet-small\:u-order-3{
    order: 3 !important;
  }

  .tablet-small\:u-order-4{
    order: 4 !important;
  }

  .tablet-small\:u-order-5{
    order: 5 !important;
  }

  .tablet-small\:u-order-6{
    order: 6 !important;
  }

  .tablet-small\:u-order-7{
    order: 7 !important;
  }

  .tablet-small\:u-order-8{
    order: 8 !important;
  }

  .tablet-small\:u-order-9{
    order: 9 !important;
  }

  .tablet-small\:u-order-10{
    order: 10 !important;
  }

  .tablet-small\:u-order-11{
    order: 11 !important;
  }

  .tablet-small\:u-order-12{
    order: 12 !important;
  }

  .tablet-small\:u-order-first{
    order: -9999 !important;
  }

  .tablet-small\:u-order-last{
    order: 9999 !important;
  }

  .tablet-small\:u-order-none{
    order: 0 !important;
  }

  .tablet-small\:u-float-right{
    float: right !important;
  }

  .tablet-small\:u-float-left{
    float: left !important;
  }

  .tablet-small\:u-float-none{
    float: none !important;
  }

  .tablet-small\:u-clear-left{
    clear: left !important;
  }

  .tablet-small\:u-clear-right{
    clear: right !important;
  }

  .tablet-small\:u-clear-both{
    clear: both !important;
  }

  .tablet-small\:u-clear-none{
    clear: none !important;
  }

  .tablet-small\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .tablet-small\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .tablet-small\:u-font-thin{
    font-weight: 100 !important;
  }

  .tablet-small\:u-font-extralight{
    font-weight: 200 !important;
  }

  .tablet-small\:u-font-light{
    font-weight: 300 !important;
  }

  .tablet-small\:u-font-normal{
    font-weight: 400 !important;
  }

  .tablet-small\:u-font-medium{
    font-weight: 500 !important;
  }

  .tablet-small\:u-font-semibold{
    font-weight: 600 !important;
  }

  .tablet-small\:u-font-bold{
    font-weight: 700 !important;
  }

  .tablet-small\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .tablet-small\:u-font-black{
    font-weight: 900 !important;
  }

  .tablet-small\:u-h-0{
    height: 0px !important;
  }

  .tablet-small\:u-h-1{
    height: 0.25rem !important;
  }

  .tablet-small\:u-h-2{
    height: 0.5rem !important;
  }

  .tablet-small\:u-h-3{
    height: 0.75rem !important;
  }

  .tablet-small\:u-h-4{
    height: 1rem !important;
  }

  .tablet-small\:u-h-5{
    height: 1.25rem !important;
  }

  .tablet-small\:u-h-6{
    height: 1.5rem !important;
  }

  .tablet-small\:u-h-7{
    height: 1.75rem !important;
  }

  .tablet-small\:u-h-8{
    height: 2rem !important;
  }

  .tablet-small\:u-h-9{
    height: 2.25rem !important;
  }

  .tablet-small\:u-h-10{
    height: 2.5rem !important;
  }

  .tablet-small\:u-h-11{
    height: 2.75rem !important;
  }

  .tablet-small\:u-h-12{
    height: 3rem !important;
  }

  .tablet-small\:u-h-14{
    height: 3.5rem !important;
  }

  .tablet-small\:u-h-16{
    height: 4rem !important;
  }

  .tablet-small\:u-h-20{
    height: 5rem !important;
  }

  .tablet-small\:u-h-24{
    height: 6rem !important;
  }

  .tablet-small\:u-h-28{
    height: 7rem !important;
  }

  .tablet-small\:u-h-32{
    height: 8rem !important;
  }

  .tablet-small\:u-h-36{
    height: 9rem !important;
  }

  .tablet-small\:u-h-40{
    height: 10rem !important;
  }

  .tablet-small\:u-h-44{
    height: 11rem !important;
  }

  .tablet-small\:u-h-48{
    height: 12rem !important;
  }

  .tablet-small\:u-h-52{
    height: 13rem !important;
  }

  .tablet-small\:u-h-56{
    height: 14rem !important;
  }

  .tablet-small\:u-h-60{
    height: 15rem !important;
  }

  .tablet-small\:u-h-64{
    height: 16rem !important;
  }

  .tablet-small\:u-h-72{
    height: 18rem !important;
  }

  .tablet-small\:u-h-80{
    height: 20rem !important;
  }

  .tablet-small\:u-h-96{
    height: 24rem !important;
  }

  .tablet-small\:u-h-auto{
    height: auto !important;
  }

  .tablet-small\:u-h-px{
    height: 1px !important;
  }

  .tablet-small\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .tablet-small\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .tablet-small\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .tablet-small\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .tablet-small\:u-h-1\/2{
    height: 50% !important;
  }

  .tablet-small\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .tablet-small\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .tablet-small\:u-h-1\/4{
    height: 25% !important;
  }

  .tablet-small\:u-h-2\/4{
    height: 50% !important;
  }

  .tablet-small\:u-h-3\/4{
    height: 75% !important;
  }

  .tablet-small\:u-h-1\/5{
    height: 20% !important;
  }

  .tablet-small\:u-h-2\/5{
    height: 40% !important;
  }

  .tablet-small\:u-h-3\/5{
    height: 60% !important;
  }

  .tablet-small\:u-h-4\/5{
    height: 80% !important;
  }

  .tablet-small\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .tablet-small\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .tablet-small\:u-h-3\/6{
    height: 50% !important;
  }

  .tablet-small\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .tablet-small\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .tablet-small\:u-h-full{
    height: 100% !important;
  }

  .tablet-small\:u-h-screen{
    height: 100vh !important;
  }

  .tablet-small\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .tablet-small\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .tablet-small\:u-text-base{
    font-size: 1rem !important;
  }

  .tablet-small\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .tablet-small\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .tablet-small\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .tablet-small\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .tablet-small\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .tablet-small\:u-text-5xl{
    font-size: 3rem !important;
  }

  .tablet-small\:u-text-6xl{
    font-size: 4rem !important;
  }

  .tablet-small\:u-text-7xl{
    font-size: 5rem !important;
  }

  .tablet-small\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .tablet-small\:u-leading-3{
    line-height: .75rem !important;
  }

  .tablet-small\:u-leading-4{
    line-height: 1rem !important;
  }

  .tablet-small\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .tablet-small\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .tablet-small\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .tablet-small\:u-leading-8{
    line-height: 2rem !important;
  }

  .tablet-small\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .tablet-small\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .tablet-small\:u-leading-none{
    line-height: 1 !important;
  }

  .tablet-small\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .tablet-small\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .tablet-small\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .tablet-small\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .tablet-small\:u-leading-loose{
    line-height: 2 !important;
  }

  .tablet-small\:u-list-inside{
    list-style-position: inside !important;
  }

  .tablet-small\:u-list-outside{
    list-style-position: outside !important;
  }

  .tablet-small\:u-list-none{
    list-style-type: none !important;
  }

  .tablet-small\:u-list-disc{
    list-style-type: disc !important;
  }

  .tablet-small\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .tablet-small\:u-m-0{
    margin: 0px !important;
  }

  .tablet-small\:u-m-1{
    margin: 0.25rem !important;
  }

  .tablet-small\:u-m-2{
    margin: 0.5rem !important;
  }

  .tablet-small\:u-m-3{
    margin: 0.75rem !important;
  }

  .tablet-small\:u-m-4{
    margin: 1rem !important;
  }

  .tablet-small\:u-m-5{
    margin: 1.25rem !important;
  }

  .tablet-small\:u-m-6{
    margin: 1.5rem !important;
  }

  .tablet-small\:u-m-7{
    margin: 1.75rem !important;
  }

  .tablet-small\:u-m-8{
    margin: 2rem !important;
  }

  .tablet-small\:u-m-9{
    margin: 2.25rem !important;
  }

  .tablet-small\:u-m-10{
    margin: 2.5rem !important;
  }

  .tablet-small\:u-m-11{
    margin: 2.75rem !important;
  }

  .tablet-small\:u-m-12{
    margin: 3rem !important;
  }

  .tablet-small\:u-m-14{
    margin: 3.5rem !important;
  }

  .tablet-small\:u-m-16{
    margin: 4rem !important;
  }

  .tablet-small\:u-m-20{
    margin: 5rem !important;
  }

  .tablet-small\:u-m-24{
    margin: 6rem !important;
  }

  .tablet-small\:u-m-28{
    margin: 7rem !important;
  }

  .tablet-small\:u-m-32{
    margin: 8rem !important;
  }

  .tablet-small\:u-m-36{
    margin: 9rem !important;
  }

  .tablet-small\:u-m-40{
    margin: 10rem !important;
  }

  .tablet-small\:u-m-44{
    margin: 11rem !important;
  }

  .tablet-small\:u-m-48{
    margin: 12rem !important;
  }

  .tablet-small\:u-m-52{
    margin: 13rem !important;
  }

  .tablet-small\:u-m-56{
    margin: 14rem !important;
  }

  .tablet-small\:u-m-60{
    margin: 15rem !important;
  }

  .tablet-small\:u-m-64{
    margin: 16rem !important;
  }

  .tablet-small\:u-m-72{
    margin: 18rem !important;
  }

  .tablet-small\:u-m-80{
    margin: 20rem !important;
  }

  .tablet-small\:u-m-96{
    margin: 24rem !important;
  }

  .tablet-small\:u-m-auto{
    margin: auto !important;
  }

  .tablet-small\:u-m-px{
    margin: 1px !important;
  }

  .tablet-small\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .tablet-small\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .tablet-small\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .tablet-small\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .tablet-small\:u--m-0{
    margin: 0px !important;
  }

  .tablet-small\:u--m-1{
    margin: -0.25rem !important;
  }

  .tablet-small\:u--m-2{
    margin: -0.5rem !important;
  }

  .tablet-small\:u--m-3{
    margin: -0.75rem !important;
  }

  .tablet-small\:u--m-4{
    margin: -1rem !important;
  }

  .tablet-small\:u--m-5{
    margin: -1.25rem !important;
  }

  .tablet-small\:u--m-6{
    margin: -1.5rem !important;
  }

  .tablet-small\:u--m-7{
    margin: -1.75rem !important;
  }

  .tablet-small\:u--m-8{
    margin: -2rem !important;
  }

  .tablet-small\:u--m-9{
    margin: -2.25rem !important;
  }

  .tablet-small\:u--m-10{
    margin: -2.5rem !important;
  }

  .tablet-small\:u--m-11{
    margin: -2.75rem !important;
  }

  .tablet-small\:u--m-12{
    margin: -3rem !important;
  }

  .tablet-small\:u--m-14{
    margin: -3.5rem !important;
  }

  .tablet-small\:u--m-16{
    margin: -4rem !important;
  }

  .tablet-small\:u--m-20{
    margin: -5rem !important;
  }

  .tablet-small\:u--m-24{
    margin: -6rem !important;
  }

  .tablet-small\:u--m-28{
    margin: -7rem !important;
  }

  .tablet-small\:u--m-32{
    margin: -8rem !important;
  }

  .tablet-small\:u--m-36{
    margin: -9rem !important;
  }

  .tablet-small\:u--m-40{
    margin: -10rem !important;
  }

  .tablet-small\:u--m-44{
    margin: -11rem !important;
  }

  .tablet-small\:u--m-48{
    margin: -12rem !important;
  }

  .tablet-small\:u--m-52{
    margin: -13rem !important;
  }

  .tablet-small\:u--m-56{
    margin: -14rem !important;
  }

  .tablet-small\:u--m-60{
    margin: -15rem !important;
  }

  .tablet-small\:u--m-64{
    margin: -16rem !important;
  }

  .tablet-small\:u--m-72{
    margin: -18rem !important;
  }

  .tablet-small\:u--m-80{
    margin: -20rem !important;
  }

  .tablet-small\:u--m-96{
    margin: -24rem !important;
  }

  .tablet-small\:u--m-px{
    margin: -1px !important;
  }

  .tablet-small\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .tablet-small\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .tablet-small\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .tablet-small\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .tablet-small\:u-m-full{
    margin: 100% !important;
  }

  .tablet-small\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet-small\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-small\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .tablet-small\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .tablet-small\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tablet-small\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .tablet-small\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .tablet-small\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .tablet-small\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tablet-small\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .tablet-small\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .tablet-small\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .tablet-small\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tablet-small\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .tablet-small\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .tablet-small\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .tablet-small\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .tablet-small\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .tablet-small\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .tablet-small\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .tablet-small\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tablet-small\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .tablet-small\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .tablet-small\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .tablet-small\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .tablet-small\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .tablet-small\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .tablet-small\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .tablet-small\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .tablet-small\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .tablet-small\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .tablet-small\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .tablet-small\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .tablet-small\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .tablet-small\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .tablet-small\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .tablet-small\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .tablet-small\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .tablet-small\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .tablet-small\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .tablet-small\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .tablet-small\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .tablet-small\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .tablet-small\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .tablet-small\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .tablet-small\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .tablet-small\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .tablet-small\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .tablet-small\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .tablet-small\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .tablet-small\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .tablet-small\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .tablet-small\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .tablet-small\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .tablet-small\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .tablet-small\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .tablet-small\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .tablet-small\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .tablet-small\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .tablet-small\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .tablet-small\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .tablet-small\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tablet-small\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .tablet-small\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .tablet-small\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .tablet-small\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .tablet-small\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .tablet-small\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .tablet-small\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .tablet-small\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .tablet-small\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .tablet-small\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .tablet-small\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet-small\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-small\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .tablet-small\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .tablet-small\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .tablet-small\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .tablet-small\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .tablet-small\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .tablet-small\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .tablet-small\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .tablet-small\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .tablet-small\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tablet-small\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .tablet-small\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .tablet-small\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .tablet-small\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .tablet-small\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .tablet-small\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .tablet-small\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .tablet-small\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .tablet-small\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .tablet-small\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .tablet-small\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .tablet-small\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .tablet-small\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .tablet-small\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .tablet-small\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .tablet-small\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .tablet-small\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .tablet-small\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .tablet-small\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .tablet-small\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .tablet-small\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .tablet-small\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .tablet-small\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .tablet-small\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .tablet-small\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .tablet-small\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .tablet-small\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .tablet-small\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .tablet-small\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .tablet-small\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .tablet-small\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .tablet-small\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .tablet-small\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .tablet-small\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .tablet-small\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .tablet-small\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .tablet-small\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .tablet-small\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .tablet-small\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .tablet-small\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .tablet-small\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .tablet-small\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .tablet-small\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .tablet-small\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .tablet-small\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .tablet-small\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .tablet-small\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .tablet-small\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .tablet-small\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .tablet-small\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .tablet-small\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .tablet-small\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .tablet-small\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .tablet-small\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .tablet-small\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .tablet-small\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .tablet-small\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .tablet-small\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .tablet-small\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .tablet-small\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .tablet-small\:u-mt-0{
    margin-top: 0px !important;
  }

  .tablet-small\:u-mr-0{
    margin-right: 0px !important;
  }

  .tablet-small\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-small\:u-ml-0{
    margin-left: 0px !important;
  }

  .tablet-small\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .tablet-small\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .tablet-small\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .tablet-small\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .tablet-small\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .tablet-small\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .tablet-small\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .tablet-small\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .tablet-small\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .tablet-small\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .tablet-small\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .tablet-small\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .tablet-small\:u-mt-4{
    margin-top: 1rem !important;
  }

  .tablet-small\:u-mr-4{
    margin-right: 1rem !important;
  }

  .tablet-small\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .tablet-small\:u-ml-4{
    margin-left: 1rem !important;
  }

  .tablet-small\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .tablet-small\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .tablet-small\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .tablet-small\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .tablet-small\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .tablet-small\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .tablet-small\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .tablet-small\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .tablet-small\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .tablet-small\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .tablet-small\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .tablet-small\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .tablet-small\:u-mt-8{
    margin-top: 2rem !important;
  }

  .tablet-small\:u-mr-8{
    margin-right: 2rem !important;
  }

  .tablet-small\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .tablet-small\:u-ml-8{
    margin-left: 2rem !important;
  }

  .tablet-small\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .tablet-small\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .tablet-small\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .tablet-small\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .tablet-small\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .tablet-small\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .tablet-small\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .tablet-small\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .tablet-small\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .tablet-small\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .tablet-small\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .tablet-small\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .tablet-small\:u-mt-12{
    margin-top: 3rem !important;
  }

  .tablet-small\:u-mr-12{
    margin-right: 3rem !important;
  }

  .tablet-small\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .tablet-small\:u-ml-12{
    margin-left: 3rem !important;
  }

  .tablet-small\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .tablet-small\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .tablet-small\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .tablet-small\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .tablet-small\:u-mt-16{
    margin-top: 4rem !important;
  }

  .tablet-small\:u-mr-16{
    margin-right: 4rem !important;
  }

  .tablet-small\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .tablet-small\:u-ml-16{
    margin-left: 4rem !important;
  }

  .tablet-small\:u-mt-20{
    margin-top: 5rem !important;
  }

  .tablet-small\:u-mr-20{
    margin-right: 5rem !important;
  }

  .tablet-small\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .tablet-small\:u-ml-20{
    margin-left: 5rem !important;
  }

  .tablet-small\:u-mt-24{
    margin-top: 6rem !important;
  }

  .tablet-small\:u-mr-24{
    margin-right: 6rem !important;
  }

  .tablet-small\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .tablet-small\:u-ml-24{
    margin-left: 6rem !important;
  }

  .tablet-small\:u-mt-28{
    margin-top: 7rem !important;
  }

  .tablet-small\:u-mr-28{
    margin-right: 7rem !important;
  }

  .tablet-small\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .tablet-small\:u-ml-28{
    margin-left: 7rem !important;
  }

  .tablet-small\:u-mt-32{
    margin-top: 8rem !important;
  }

  .tablet-small\:u-mr-32{
    margin-right: 8rem !important;
  }

  .tablet-small\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .tablet-small\:u-ml-32{
    margin-left: 8rem !important;
  }

  .tablet-small\:u-mt-36{
    margin-top: 9rem !important;
  }

  .tablet-small\:u-mr-36{
    margin-right: 9rem !important;
  }

  .tablet-small\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .tablet-small\:u-ml-36{
    margin-left: 9rem !important;
  }

  .tablet-small\:u-mt-40{
    margin-top: 10rem !important;
  }

  .tablet-small\:u-mr-40{
    margin-right: 10rem !important;
  }

  .tablet-small\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .tablet-small\:u-ml-40{
    margin-left: 10rem !important;
  }

  .tablet-small\:u-mt-44{
    margin-top: 11rem !important;
  }

  .tablet-small\:u-mr-44{
    margin-right: 11rem !important;
  }

  .tablet-small\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .tablet-small\:u-ml-44{
    margin-left: 11rem !important;
  }

  .tablet-small\:u-mt-48{
    margin-top: 12rem !important;
  }

  .tablet-small\:u-mr-48{
    margin-right: 12rem !important;
  }

  .tablet-small\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .tablet-small\:u-ml-48{
    margin-left: 12rem !important;
  }

  .tablet-small\:u-mt-52{
    margin-top: 13rem !important;
  }

  .tablet-small\:u-mr-52{
    margin-right: 13rem !important;
  }

  .tablet-small\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .tablet-small\:u-ml-52{
    margin-left: 13rem !important;
  }

  .tablet-small\:u-mt-56{
    margin-top: 14rem !important;
  }

  .tablet-small\:u-mr-56{
    margin-right: 14rem !important;
  }

  .tablet-small\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .tablet-small\:u-ml-56{
    margin-left: 14rem !important;
  }

  .tablet-small\:u-mt-60{
    margin-top: 15rem !important;
  }

  .tablet-small\:u-mr-60{
    margin-right: 15rem !important;
  }

  .tablet-small\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .tablet-small\:u-ml-60{
    margin-left: 15rem !important;
  }

  .tablet-small\:u-mt-64{
    margin-top: 16rem !important;
  }

  .tablet-small\:u-mr-64{
    margin-right: 16rem !important;
  }

  .tablet-small\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .tablet-small\:u-ml-64{
    margin-left: 16rem !important;
  }

  .tablet-small\:u-mt-72{
    margin-top: 18rem !important;
  }

  .tablet-small\:u-mr-72{
    margin-right: 18rem !important;
  }

  .tablet-small\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .tablet-small\:u-ml-72{
    margin-left: 18rem !important;
  }

  .tablet-small\:u-mt-80{
    margin-top: 20rem !important;
  }

  .tablet-small\:u-mr-80{
    margin-right: 20rem !important;
  }

  .tablet-small\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .tablet-small\:u-ml-80{
    margin-left: 20rem !important;
  }

  .tablet-small\:u-mt-96{
    margin-top: 24rem !important;
  }

  .tablet-small\:u-mr-96{
    margin-right: 24rem !important;
  }

  .tablet-small\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .tablet-small\:u-ml-96{
    margin-left: 24rem !important;
  }

  .tablet-small\:u-mt-auto{
    margin-top: auto !important;
  }

  .tablet-small\:u-mr-auto{
    margin-right: auto !important;
  }

  .tablet-small\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .tablet-small\:u-ml-auto{
    margin-left: auto !important;
  }

  .tablet-small\:u-mt-px{
    margin-top: 1px !important;
  }

  .tablet-small\:u-mr-px{
    margin-right: 1px !important;
  }

  .tablet-small\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .tablet-small\:u-ml-px{
    margin-left: 1px !important;
  }

  .tablet-small\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .tablet-small\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .tablet-small\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .tablet-small\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .tablet-small\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .tablet-small\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .tablet-small\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .tablet-small\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .tablet-small\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .tablet-small\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .tablet-small\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .tablet-small\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .tablet-small\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .tablet-small\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .tablet-small\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .tablet-small\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .tablet-small\:u--mt-0{
    margin-top: 0px !important;
  }

  .tablet-small\:u--mr-0{
    margin-right: 0px !important;
  }

  .tablet-small\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-small\:u--ml-0{
    margin-left: 0px !important;
  }

  .tablet-small\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .tablet-small\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .tablet-small\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .tablet-small\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .tablet-small\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .tablet-small\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .tablet-small\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .tablet-small\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .tablet-small\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .tablet-small\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .tablet-small\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .tablet-small\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .tablet-small\:u--mt-4{
    margin-top: -1rem !important;
  }

  .tablet-small\:u--mr-4{
    margin-right: -1rem !important;
  }

  .tablet-small\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .tablet-small\:u--ml-4{
    margin-left: -1rem !important;
  }

  .tablet-small\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .tablet-small\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .tablet-small\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .tablet-small\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .tablet-small\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .tablet-small\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .tablet-small\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .tablet-small\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .tablet-small\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .tablet-small\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .tablet-small\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .tablet-small\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .tablet-small\:u--mt-8{
    margin-top: -2rem !important;
  }

  .tablet-small\:u--mr-8{
    margin-right: -2rem !important;
  }

  .tablet-small\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .tablet-small\:u--ml-8{
    margin-left: -2rem !important;
  }

  .tablet-small\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .tablet-small\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .tablet-small\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .tablet-small\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .tablet-small\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .tablet-small\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .tablet-small\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .tablet-small\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .tablet-small\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .tablet-small\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .tablet-small\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .tablet-small\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .tablet-small\:u--mt-12{
    margin-top: -3rem !important;
  }

  .tablet-small\:u--mr-12{
    margin-right: -3rem !important;
  }

  .tablet-small\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .tablet-small\:u--ml-12{
    margin-left: -3rem !important;
  }

  .tablet-small\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .tablet-small\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .tablet-small\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .tablet-small\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .tablet-small\:u--mt-16{
    margin-top: -4rem !important;
  }

  .tablet-small\:u--mr-16{
    margin-right: -4rem !important;
  }

  .tablet-small\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .tablet-small\:u--ml-16{
    margin-left: -4rem !important;
  }

  .tablet-small\:u--mt-20{
    margin-top: -5rem !important;
  }

  .tablet-small\:u--mr-20{
    margin-right: -5rem !important;
  }

  .tablet-small\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .tablet-small\:u--ml-20{
    margin-left: -5rem !important;
  }

  .tablet-small\:u--mt-24{
    margin-top: -6rem !important;
  }

  .tablet-small\:u--mr-24{
    margin-right: -6rem !important;
  }

  .tablet-small\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .tablet-small\:u--ml-24{
    margin-left: -6rem !important;
  }

  .tablet-small\:u--mt-28{
    margin-top: -7rem !important;
  }

  .tablet-small\:u--mr-28{
    margin-right: -7rem !important;
  }

  .tablet-small\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .tablet-small\:u--ml-28{
    margin-left: -7rem !important;
  }

  .tablet-small\:u--mt-32{
    margin-top: -8rem !important;
  }

  .tablet-small\:u--mr-32{
    margin-right: -8rem !important;
  }

  .tablet-small\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .tablet-small\:u--ml-32{
    margin-left: -8rem !important;
  }

  .tablet-small\:u--mt-36{
    margin-top: -9rem !important;
  }

  .tablet-small\:u--mr-36{
    margin-right: -9rem !important;
  }

  .tablet-small\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .tablet-small\:u--ml-36{
    margin-left: -9rem !important;
  }

  .tablet-small\:u--mt-40{
    margin-top: -10rem !important;
  }

  .tablet-small\:u--mr-40{
    margin-right: -10rem !important;
  }

  .tablet-small\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .tablet-small\:u--ml-40{
    margin-left: -10rem !important;
  }

  .tablet-small\:u--mt-44{
    margin-top: -11rem !important;
  }

  .tablet-small\:u--mr-44{
    margin-right: -11rem !important;
  }

  .tablet-small\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .tablet-small\:u--ml-44{
    margin-left: -11rem !important;
  }

  .tablet-small\:u--mt-48{
    margin-top: -12rem !important;
  }

  .tablet-small\:u--mr-48{
    margin-right: -12rem !important;
  }

  .tablet-small\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .tablet-small\:u--ml-48{
    margin-left: -12rem !important;
  }

  .tablet-small\:u--mt-52{
    margin-top: -13rem !important;
  }

  .tablet-small\:u--mr-52{
    margin-right: -13rem !important;
  }

  .tablet-small\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .tablet-small\:u--ml-52{
    margin-left: -13rem !important;
  }

  .tablet-small\:u--mt-56{
    margin-top: -14rem !important;
  }

  .tablet-small\:u--mr-56{
    margin-right: -14rem !important;
  }

  .tablet-small\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .tablet-small\:u--ml-56{
    margin-left: -14rem !important;
  }

  .tablet-small\:u--mt-60{
    margin-top: -15rem !important;
  }

  .tablet-small\:u--mr-60{
    margin-right: -15rem !important;
  }

  .tablet-small\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .tablet-small\:u--ml-60{
    margin-left: -15rem !important;
  }

  .tablet-small\:u--mt-64{
    margin-top: -16rem !important;
  }

  .tablet-small\:u--mr-64{
    margin-right: -16rem !important;
  }

  .tablet-small\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .tablet-small\:u--ml-64{
    margin-left: -16rem !important;
  }

  .tablet-small\:u--mt-72{
    margin-top: -18rem !important;
  }

  .tablet-small\:u--mr-72{
    margin-right: -18rem !important;
  }

  .tablet-small\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .tablet-small\:u--ml-72{
    margin-left: -18rem !important;
  }

  .tablet-small\:u--mt-80{
    margin-top: -20rem !important;
  }

  .tablet-small\:u--mr-80{
    margin-right: -20rem !important;
  }

  .tablet-small\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .tablet-small\:u--ml-80{
    margin-left: -20rem !important;
  }

  .tablet-small\:u--mt-96{
    margin-top: -24rem !important;
  }

  .tablet-small\:u--mr-96{
    margin-right: -24rem !important;
  }

  .tablet-small\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .tablet-small\:u--ml-96{
    margin-left: -24rem !important;
  }

  .tablet-small\:u--mt-px{
    margin-top: -1px !important;
  }

  .tablet-small\:u--mr-px{
    margin-right: -1px !important;
  }

  .tablet-small\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .tablet-small\:u--ml-px{
    margin-left: -1px !important;
  }

  .tablet-small\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .tablet-small\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .tablet-small\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .tablet-small\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .tablet-small\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .tablet-small\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .tablet-small\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .tablet-small\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .tablet-small\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .tablet-small\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .tablet-small\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .tablet-small\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .tablet-small\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .tablet-small\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .tablet-small\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .tablet-small\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .tablet-small\:u-mt-full{
    margin-top: 100% !important;
  }

  .tablet-small\:u-mr-full{
    margin-right: 100% !important;
  }

  .tablet-small\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .tablet-small\:u-ml-full{
    margin-left: 100% !important;
  }

  .tablet-small\:u-max-h-0{
    max-height: 0px !important;
  }

  .tablet-small\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .tablet-small\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .tablet-small\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .tablet-small\:u-max-h-4{
    max-height: 1rem !important;
  }

  .tablet-small\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .tablet-small\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .tablet-small\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .tablet-small\:u-max-h-8{
    max-height: 2rem !important;
  }

  .tablet-small\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .tablet-small\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .tablet-small\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .tablet-small\:u-max-h-12{
    max-height: 3rem !important;
  }

  .tablet-small\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .tablet-small\:u-max-h-16{
    max-height: 4rem !important;
  }

  .tablet-small\:u-max-h-20{
    max-height: 5rem !important;
  }

  .tablet-small\:u-max-h-24{
    max-height: 6rem !important;
  }

  .tablet-small\:u-max-h-28{
    max-height: 7rem !important;
  }

  .tablet-small\:u-max-h-32{
    max-height: 8rem !important;
  }

  .tablet-small\:u-max-h-36{
    max-height: 9rem !important;
  }

  .tablet-small\:u-max-h-40{
    max-height: 10rem !important;
  }

  .tablet-small\:u-max-h-44{
    max-height: 11rem !important;
  }

  .tablet-small\:u-max-h-48{
    max-height: 12rem !important;
  }

  .tablet-small\:u-max-h-52{
    max-height: 13rem !important;
  }

  .tablet-small\:u-max-h-56{
    max-height: 14rem !important;
  }

  .tablet-small\:u-max-h-60{
    max-height: 15rem !important;
  }

  .tablet-small\:u-max-h-64{
    max-height: 16rem !important;
  }

  .tablet-small\:u-max-h-72{
    max-height: 18rem !important;
  }

  .tablet-small\:u-max-h-80{
    max-height: 20rem !important;
  }

  .tablet-small\:u-max-h-96{
    max-height: 24rem !important;
  }

  .tablet-small\:u-max-h-px{
    max-height: 1px !important;
  }

  .tablet-small\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .tablet-small\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .tablet-small\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .tablet-small\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .tablet-small\:u-max-h-full{
    max-height: 100% !important;
  }

  .tablet-small\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .tablet-small\:u-max-w-none{
    max-width: none !important;
  }

  .tablet-small\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .tablet-small\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .tablet-small\:u-max-w-md{
    max-width: 24rem !important;
  }

  .tablet-small\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .tablet-small\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .tablet-small\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .tablet-small\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .tablet-small\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .tablet-small\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .tablet-small\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .tablet-small\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet-small\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .tablet-small\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .tablet-small\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .tablet-small\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .tablet-small\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .tablet-small\:u-min-h-none{
    min-height: none !important;
  }

  .tablet-small\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .tablet-small\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .tablet-small\:u-min-h-md{
    min-height: 24rem !important;
  }

  .tablet-small\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .tablet-small\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .tablet-small\:u-min-w-sm{
    min-width: 320px !important;
  }

  .tablet-small\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .tablet-small\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .tablet-small\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .tablet-small\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .tablet-small\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .tablet-small\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .tablet-small\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .tablet-small\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .tablet-small\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .tablet-small\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .tablet-small\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .tablet-small\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .tablet-small\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .tablet-small\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .tablet-small\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .tablet-small\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .tablet-small\:u-opacity-0{
    opacity: 0 !important;
  }

  .tablet-small\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .tablet-small\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .tablet-small\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .tablet-small\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .tablet-small\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .tablet-small\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .tablet-small\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .tablet-small\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .tablet-small\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .tablet-small\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .tablet-small\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .tablet-small\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .tablet-small\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .tablet-small\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .tablet-small\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .tablet-small\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .tablet-small\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .tablet-small\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .tablet-small\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .tablet-small\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .tablet-small\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .tablet-small\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .tablet-small\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .tablet-small\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .tablet-small\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .tablet-small\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .tablet-small\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .tablet-small\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .tablet-small\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .tablet-small\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .tablet-small\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .tablet-small\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet-small\:u-overflow-auto{
    overflow: auto !important;
  }

  .tablet-small\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .tablet-small\:u-overflow-visible{
    overflow: visible !important;
  }

  .tablet-small\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .tablet-small\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .tablet-small\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .tablet-small\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .tablet-small\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .tablet-small\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .tablet-small\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .tablet-small\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .tablet-small\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .tablet-small\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .tablet-small\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .tablet-small\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .tablet-small\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .tablet-small\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .tablet-small\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .tablet-small\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .tablet-small\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .tablet-small\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .tablet-small\:u-p-0{
    padding: 0px !important;
  }

  .tablet-small\:u-p-1{
    padding: 0.25rem !important;
  }

  .tablet-small\:u-p-2{
    padding: 0.5rem !important;
  }

  .tablet-small\:u-p-3{
    padding: 0.75rem !important;
  }

  .tablet-small\:u-p-4{
    padding: 1rem !important;
  }

  .tablet-small\:u-p-5{
    padding: 1.25rem !important;
  }

  .tablet-small\:u-p-6{
    padding: 1.5rem !important;
  }

  .tablet-small\:u-p-7{
    padding: 1.75rem !important;
  }

  .tablet-small\:u-p-8{
    padding: 2rem !important;
  }

  .tablet-small\:u-p-9{
    padding: 2.25rem !important;
  }

  .tablet-small\:u-p-10{
    padding: 2.5rem !important;
  }

  .tablet-small\:u-p-11{
    padding: 2.75rem !important;
  }

  .tablet-small\:u-p-12{
    padding: 3rem !important;
  }

  .tablet-small\:u-p-14{
    padding: 3.5rem !important;
  }

  .tablet-small\:u-p-16{
    padding: 4rem !important;
  }

  .tablet-small\:u-p-20{
    padding: 5rem !important;
  }

  .tablet-small\:u-p-24{
    padding: 6rem !important;
  }

  .tablet-small\:u-p-28{
    padding: 7rem !important;
  }

  .tablet-small\:u-p-32{
    padding: 8rem !important;
  }

  .tablet-small\:u-p-36{
    padding: 9rem !important;
  }

  .tablet-small\:u-p-40{
    padding: 10rem !important;
  }

  .tablet-small\:u-p-44{
    padding: 11rem !important;
  }

  .tablet-small\:u-p-48{
    padding: 12rem !important;
  }

  .tablet-small\:u-p-52{
    padding: 13rem !important;
  }

  .tablet-small\:u-p-56{
    padding: 14rem !important;
  }

  .tablet-small\:u-p-60{
    padding: 15rem !important;
  }

  .tablet-small\:u-p-64{
    padding: 16rem !important;
  }

  .tablet-small\:u-p-72{
    padding: 18rem !important;
  }

  .tablet-small\:u-p-80{
    padding: 20rem !important;
  }

  .tablet-small\:u-p-96{
    padding: 24rem !important;
  }

  .tablet-small\:u-p-px{
    padding: 1px !important;
  }

  .tablet-small\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .tablet-small\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .tablet-small\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .tablet-small\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .tablet-small\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .tablet-small\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .tablet-small\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .tablet-small\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .tablet-small\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .tablet-small\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .tablet-small\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .tablet-small\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .tablet-small\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tablet-small\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tablet-small\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .tablet-small\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .tablet-small\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tablet-small\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .tablet-small\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .tablet-small\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .tablet-small\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .tablet-small\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .tablet-small\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .tablet-small\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .tablet-small\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .tablet-small\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .tablet-small\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .tablet-small\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .tablet-small\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .tablet-small\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .tablet-small\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .tablet-small\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .tablet-small\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .tablet-small\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .tablet-small\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .tablet-small\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .tablet-small\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .tablet-small\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .tablet-small\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .tablet-small\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .tablet-small\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .tablet-small\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .tablet-small\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .tablet-small\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .tablet-small\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .tablet-small\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .tablet-small\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .tablet-small\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .tablet-small\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .tablet-small\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .tablet-small\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .tablet-small\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .tablet-small\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .tablet-small\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .tablet-small\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .tablet-small\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .tablet-small\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .tablet-small\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .tablet-small\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .tablet-small\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .tablet-small\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .tablet-small\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .tablet-small\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .tablet-small\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .tablet-small\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .tablet-small\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .tablet-small\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .tablet-small\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .tablet-small\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .tablet-small\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .tablet-small\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .tablet-small\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .tablet-small\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .tablet-small\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .tablet-small\:u-pt-0{
    padding-top: 0px !important;
  }

  .tablet-small\:u-pr-0{
    padding-right: 0px !important;
  }

  .tablet-small\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .tablet-small\:u-pl-0{
    padding-left: 0px !important;
  }

  .tablet-small\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .tablet-small\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .tablet-small\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .tablet-small\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .tablet-small\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .tablet-small\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .tablet-small\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .tablet-small\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .tablet-small\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .tablet-small\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .tablet-small\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .tablet-small\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .tablet-small\:u-pt-4{
    padding-top: 1rem !important;
  }

  .tablet-small\:u-pr-4{
    padding-right: 1rem !important;
  }

  .tablet-small\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .tablet-small\:u-pl-4{
    padding-left: 1rem !important;
  }

  .tablet-small\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .tablet-small\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .tablet-small\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .tablet-small\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .tablet-small\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .tablet-small\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .tablet-small\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .tablet-small\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .tablet-small\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .tablet-small\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .tablet-small\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .tablet-small\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .tablet-small\:u-pt-8{
    padding-top: 2rem !important;
  }

  .tablet-small\:u-pr-8{
    padding-right: 2rem !important;
  }

  .tablet-small\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .tablet-small\:u-pl-8{
    padding-left: 2rem !important;
  }

  .tablet-small\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .tablet-small\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .tablet-small\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .tablet-small\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .tablet-small\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .tablet-small\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .tablet-small\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .tablet-small\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .tablet-small\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .tablet-small\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .tablet-small\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .tablet-small\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .tablet-small\:u-pt-12{
    padding-top: 3rem !important;
  }

  .tablet-small\:u-pr-12{
    padding-right: 3rem !important;
  }

  .tablet-small\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .tablet-small\:u-pl-12{
    padding-left: 3rem !important;
  }

  .tablet-small\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .tablet-small\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .tablet-small\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .tablet-small\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .tablet-small\:u-pt-16{
    padding-top: 4rem !important;
  }

  .tablet-small\:u-pr-16{
    padding-right: 4rem !important;
  }

  .tablet-small\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .tablet-small\:u-pl-16{
    padding-left: 4rem !important;
  }

  .tablet-small\:u-pt-20{
    padding-top: 5rem !important;
  }

  .tablet-small\:u-pr-20{
    padding-right: 5rem !important;
  }

  .tablet-small\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .tablet-small\:u-pl-20{
    padding-left: 5rem !important;
  }

  .tablet-small\:u-pt-24{
    padding-top: 6rem !important;
  }

  .tablet-small\:u-pr-24{
    padding-right: 6rem !important;
  }

  .tablet-small\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .tablet-small\:u-pl-24{
    padding-left: 6rem !important;
  }

  .tablet-small\:u-pt-28{
    padding-top: 7rem !important;
  }

  .tablet-small\:u-pr-28{
    padding-right: 7rem !important;
  }

  .tablet-small\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .tablet-small\:u-pl-28{
    padding-left: 7rem !important;
  }

  .tablet-small\:u-pt-32{
    padding-top: 8rem !important;
  }

  .tablet-small\:u-pr-32{
    padding-right: 8rem !important;
  }

  .tablet-small\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .tablet-small\:u-pl-32{
    padding-left: 8rem !important;
  }

  .tablet-small\:u-pt-36{
    padding-top: 9rem !important;
  }

  .tablet-small\:u-pr-36{
    padding-right: 9rem !important;
  }

  .tablet-small\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .tablet-small\:u-pl-36{
    padding-left: 9rem !important;
  }

  .tablet-small\:u-pt-40{
    padding-top: 10rem !important;
  }

  .tablet-small\:u-pr-40{
    padding-right: 10rem !important;
  }

  .tablet-small\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .tablet-small\:u-pl-40{
    padding-left: 10rem !important;
  }

  .tablet-small\:u-pt-44{
    padding-top: 11rem !important;
  }

  .tablet-small\:u-pr-44{
    padding-right: 11rem !important;
  }

  .tablet-small\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .tablet-small\:u-pl-44{
    padding-left: 11rem !important;
  }

  .tablet-small\:u-pt-48{
    padding-top: 12rem !important;
  }

  .tablet-small\:u-pr-48{
    padding-right: 12rem !important;
  }

  .tablet-small\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .tablet-small\:u-pl-48{
    padding-left: 12rem !important;
  }

  .tablet-small\:u-pt-52{
    padding-top: 13rem !important;
  }

  .tablet-small\:u-pr-52{
    padding-right: 13rem !important;
  }

  .tablet-small\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .tablet-small\:u-pl-52{
    padding-left: 13rem !important;
  }

  .tablet-small\:u-pt-56{
    padding-top: 14rem !important;
  }

  .tablet-small\:u-pr-56{
    padding-right: 14rem !important;
  }

  .tablet-small\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .tablet-small\:u-pl-56{
    padding-left: 14rem !important;
  }

  .tablet-small\:u-pt-60{
    padding-top: 15rem !important;
  }

  .tablet-small\:u-pr-60{
    padding-right: 15rem !important;
  }

  .tablet-small\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .tablet-small\:u-pl-60{
    padding-left: 15rem !important;
  }

  .tablet-small\:u-pt-64{
    padding-top: 16rem !important;
  }

  .tablet-small\:u-pr-64{
    padding-right: 16rem !important;
  }

  .tablet-small\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .tablet-small\:u-pl-64{
    padding-left: 16rem !important;
  }

  .tablet-small\:u-pt-72{
    padding-top: 18rem !important;
  }

  .tablet-small\:u-pr-72{
    padding-right: 18rem !important;
  }

  .tablet-small\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .tablet-small\:u-pl-72{
    padding-left: 18rem !important;
  }

  .tablet-small\:u-pt-80{
    padding-top: 20rem !important;
  }

  .tablet-small\:u-pr-80{
    padding-right: 20rem !important;
  }

  .tablet-small\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .tablet-small\:u-pl-80{
    padding-left: 20rem !important;
  }

  .tablet-small\:u-pt-96{
    padding-top: 24rem !important;
  }

  .tablet-small\:u-pr-96{
    padding-right: 24rem !important;
  }

  .tablet-small\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .tablet-small\:u-pl-96{
    padding-left: 24rem !important;
  }

  .tablet-small\:u-pt-px{
    padding-top: 1px !important;
  }

  .tablet-small\:u-pr-px{
    padding-right: 1px !important;
  }

  .tablet-small\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .tablet-small\:u-pl-px{
    padding-left: 1px !important;
  }

  .tablet-small\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .tablet-small\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .tablet-small\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .tablet-small\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .tablet-small\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .tablet-small\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .tablet-small\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .tablet-small\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .tablet-small\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .tablet-small\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .tablet-small\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .tablet-small\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .tablet-small\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .tablet-small\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .tablet-small\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .tablet-small\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .tablet-small\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-small\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .tablet-small\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .tablet-small\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-small\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .tablet-small\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-small\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-small\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-small\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-small\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-small\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-small\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-small\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-small\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-small\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-small\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-small\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-small\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-small\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-small\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-small\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-small\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-small\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-small\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-small\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-small\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-small\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-small\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-small\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-small\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-small\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-small\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-small\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-small\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-small\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-small\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-small\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-small\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-small\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-small\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-small\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-small\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-small\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-small\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-small\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-small\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-small\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-small\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-small\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-small\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-small\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-small\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .tablet-small\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .tablet-small\:u-static{
    position: static !important;
  }

  .tablet-small\:u-fixed{
    position: fixed !important;
  }

  .tablet-small\:u-absolute{
    position: absolute !important;
  }

  .tablet-small\:u-relative{
    position: relative !important;
  }

  .tablet-small\:u-sticky{
    position: sticky !important;
  }

  .tablet-small\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .tablet-small\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .tablet-small\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .tablet-small\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .tablet-small\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .tablet-small\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .tablet-small\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .tablet-small\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .tablet-small\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .tablet-small\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .tablet-small\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .tablet-small\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .tablet-small\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .tablet-small\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .tablet-small\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .tablet-small\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .tablet-small\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .tablet-small\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .tablet-small\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .tablet-small\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .tablet-small\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .tablet-small\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .tablet-small\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .tablet-small\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .tablet-small\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .tablet-small\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .tablet-small\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .tablet-small\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .tablet-small\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .tablet-small\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .tablet-small\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .tablet-small\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .tablet-small\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .tablet-small\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .tablet-small\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .tablet-small\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .tablet-small\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .tablet-small\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .tablet-small\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .tablet-small\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .tablet-small\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .tablet-small\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .tablet-small\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .tablet-small\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .tablet-small\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .tablet-small\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .tablet-small\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .tablet-small\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .tablet-small\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .tablet-small\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .tablet-small\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .tablet-small\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .tablet-small\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .tablet-small\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .tablet-small\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .tablet-small\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .tablet-small\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .tablet-small\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .tablet-small\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .tablet-small\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .tablet-small\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .tablet-small\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .tablet-small\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .tablet-small\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .tablet-small\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .tablet-small\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .tablet-small\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .tablet-small\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .tablet-small\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .tablet-small\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .tablet-small\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .tablet-small\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .tablet-small\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .tablet-small\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .tablet-small\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .tablet-small\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .tablet-small\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .tablet-small\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .tablet-small\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .tablet-small\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .tablet-small\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .tablet-small\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .tablet-small\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .tablet-small\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .tablet-small\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .tablet-small\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-small\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .tablet-small\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .tablet-small\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .tablet-small\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .tablet-small\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .tablet-small\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .tablet-small\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .tablet-small\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .tablet-small\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .tablet-small\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .tablet-small\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .tablet-small\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .tablet-small\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .tablet-small\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .tablet-small\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .tablet-small\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .tablet-small\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .tablet-small\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .tablet-small\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .tablet-small\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .tablet-small\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .tablet-small\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .tablet-small\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .tablet-small\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .tablet-small\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .tablet-small\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .tablet-small\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .tablet-small\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .tablet-small\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .tablet-small\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .tablet-small\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .tablet-small\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .tablet-small\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .tablet-small\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .tablet-small\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .tablet-small\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .tablet-small\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .tablet-small\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .tablet-small\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .tablet-small\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .tablet-small\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .tablet-small\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .tablet-small\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .tablet-small\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .tablet-small\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .tablet-small\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .tablet-small\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .tablet-small\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .tablet-small\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .tablet-small\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .tablet-small\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .tablet-small\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .tablet-small\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .tablet-small\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .tablet-small\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .tablet-small\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .tablet-small\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .tablet-small\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .tablet-small\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .tablet-small\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .tablet-small\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .tablet-small\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .tablet-small\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .tablet-small\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .tablet-small\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .tablet-small\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .tablet-small\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .tablet-small\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .tablet-small\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .tablet-small\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .tablet-small\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .tablet-small\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-small\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .tablet-small\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .tablet-small\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .tablet-small\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .tablet-small\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .tablet-small\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .tablet-small\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .tablet-small\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .tablet-small\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .tablet-small\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .tablet-small\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .tablet-small\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .tablet-small\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .tablet-small\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .tablet-small\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .tablet-small\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .tablet-small\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .tablet-small\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .tablet-small\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .tablet-small\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .tablet-small\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .tablet-small\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .tablet-small\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .tablet-small\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .tablet-small\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .tablet-small\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .tablet-small\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .tablet-small\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .tablet-small\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .tablet-small\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .tablet-small\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .tablet-small\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .tablet-small\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .tablet-small\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .tablet-small\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .tablet-small\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .tablet-small\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .tablet-small\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .tablet-small\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .tablet-small\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .tablet-small\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .tablet-small\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .tablet-small\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .tablet-small\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .tablet-small\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .tablet-small\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .tablet-small\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .tablet-small\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .tablet-small\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .tablet-small\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .tablet-small\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .tablet-small\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .tablet-small\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .tablet-small\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .tablet-small\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .tablet-small\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .tablet-small\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .tablet-small\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .tablet-small\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .tablet-small\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .tablet-small\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .tablet-small\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .tablet-small\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .tablet-small\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .tablet-small\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .tablet-small\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .tablet-small\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .tablet-small\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .tablet-small\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .tablet-small\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-small\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .tablet-small\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .tablet-small\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .tablet-small\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .tablet-small\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .tablet-small\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .tablet-small\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .tablet-small\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-small\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .tablet-small\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .tablet-small\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .tablet-small\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .tablet-small\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .tablet-small\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-small\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .tablet-small\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .tablet-small\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .tablet-small\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .tablet-small\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .tablet-small\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .tablet-small\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .tablet-small\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-small\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .tablet-small\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .tablet-small\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .tablet-small\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .tablet-small\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .tablet-small\:u-top-0{
    top: 0px !important;
  }

  .tablet-small\:u-right-0{
    right: 0px !important;
  }

  .tablet-small\:u-bottom-0{
    bottom: 0px !important;
  }

  .tablet-small\:u-left-0{
    left: 0px !important;
  }

  .tablet-small\:u-top-1{
    top: 0.25rem !important;
  }

  .tablet-small\:u-right-1{
    right: 0.25rem !important;
  }

  .tablet-small\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .tablet-small\:u-left-1{
    left: 0.25rem !important;
  }

  .tablet-small\:u-top-2{
    top: 0.5rem !important;
  }

  .tablet-small\:u-right-2{
    right: 0.5rem !important;
  }

  .tablet-small\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .tablet-small\:u-left-2{
    left: 0.5rem !important;
  }

  .tablet-small\:u-top-3{
    top: 0.75rem !important;
  }

  .tablet-small\:u-right-3{
    right: 0.75rem !important;
  }

  .tablet-small\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .tablet-small\:u-left-3{
    left: 0.75rem !important;
  }

  .tablet-small\:u-top-4{
    top: 1rem !important;
  }

  .tablet-small\:u-right-4{
    right: 1rem !important;
  }

  .tablet-small\:u-bottom-4{
    bottom: 1rem !important;
  }

  .tablet-small\:u-left-4{
    left: 1rem !important;
  }

  .tablet-small\:u-top-5{
    top: 1.25rem !important;
  }

  .tablet-small\:u-right-5{
    right: 1.25rem !important;
  }

  .tablet-small\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .tablet-small\:u-left-5{
    left: 1.25rem !important;
  }

  .tablet-small\:u-top-6{
    top: 1.5rem !important;
  }

  .tablet-small\:u-right-6{
    right: 1.5rem !important;
  }

  .tablet-small\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .tablet-small\:u-left-6{
    left: 1.5rem !important;
  }

  .tablet-small\:u-top-7{
    top: 1.75rem !important;
  }

  .tablet-small\:u-right-7{
    right: 1.75rem !important;
  }

  .tablet-small\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .tablet-small\:u-left-7{
    left: 1.75rem !important;
  }

  .tablet-small\:u-top-8{
    top: 2rem !important;
  }

  .tablet-small\:u-right-8{
    right: 2rem !important;
  }

  .tablet-small\:u-bottom-8{
    bottom: 2rem !important;
  }

  .tablet-small\:u-left-8{
    left: 2rem !important;
  }

  .tablet-small\:u-top-9{
    top: 2.25rem !important;
  }

  .tablet-small\:u-right-9{
    right: 2.25rem !important;
  }

  .tablet-small\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .tablet-small\:u-left-9{
    left: 2.25rem !important;
  }

  .tablet-small\:u-top-10{
    top: 2.5rem !important;
  }

  .tablet-small\:u-right-10{
    right: 2.5rem !important;
  }

  .tablet-small\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .tablet-small\:u-left-10{
    left: 2.5rem !important;
  }

  .tablet-small\:u-top-11{
    top: 2.75rem !important;
  }

  .tablet-small\:u-right-11{
    right: 2.75rem !important;
  }

  .tablet-small\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .tablet-small\:u-left-11{
    left: 2.75rem !important;
  }

  .tablet-small\:u-top-12{
    top: 3rem !important;
  }

  .tablet-small\:u-right-12{
    right: 3rem !important;
  }

  .tablet-small\:u-bottom-12{
    bottom: 3rem !important;
  }

  .tablet-small\:u-left-12{
    left: 3rem !important;
  }

  .tablet-small\:u-top-14{
    top: 3.5rem !important;
  }

  .tablet-small\:u-right-14{
    right: 3.5rem !important;
  }

  .tablet-small\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .tablet-small\:u-left-14{
    left: 3.5rem !important;
  }

  .tablet-small\:u-top-16{
    top: 4rem !important;
  }

  .tablet-small\:u-right-16{
    right: 4rem !important;
  }

  .tablet-small\:u-bottom-16{
    bottom: 4rem !important;
  }

  .tablet-small\:u-left-16{
    left: 4rem !important;
  }

  .tablet-small\:u-top-20{
    top: 5rem !important;
  }

  .tablet-small\:u-right-20{
    right: 5rem !important;
  }

  .tablet-small\:u-bottom-20{
    bottom: 5rem !important;
  }

  .tablet-small\:u-left-20{
    left: 5rem !important;
  }

  .tablet-small\:u-top-24{
    top: 6rem !important;
  }

  .tablet-small\:u-right-24{
    right: 6rem !important;
  }

  .tablet-small\:u-bottom-24{
    bottom: 6rem !important;
  }

  .tablet-small\:u-left-24{
    left: 6rem !important;
  }

  .tablet-small\:u-top-28{
    top: 7rem !important;
  }

  .tablet-small\:u-right-28{
    right: 7rem !important;
  }

  .tablet-small\:u-bottom-28{
    bottom: 7rem !important;
  }

  .tablet-small\:u-left-28{
    left: 7rem !important;
  }

  .tablet-small\:u-top-32{
    top: 8rem !important;
  }

  .tablet-small\:u-right-32{
    right: 8rem !important;
  }

  .tablet-small\:u-bottom-32{
    bottom: 8rem !important;
  }

  .tablet-small\:u-left-32{
    left: 8rem !important;
  }

  .tablet-small\:u-top-36{
    top: 9rem !important;
  }

  .tablet-small\:u-right-36{
    right: 9rem !important;
  }

  .tablet-small\:u-bottom-36{
    bottom: 9rem !important;
  }

  .tablet-small\:u-left-36{
    left: 9rem !important;
  }

  .tablet-small\:u-top-40{
    top: 10rem !important;
  }

  .tablet-small\:u-right-40{
    right: 10rem !important;
  }

  .tablet-small\:u-bottom-40{
    bottom: 10rem !important;
  }

  .tablet-small\:u-left-40{
    left: 10rem !important;
  }

  .tablet-small\:u-top-44{
    top: 11rem !important;
  }

  .tablet-small\:u-right-44{
    right: 11rem !important;
  }

  .tablet-small\:u-bottom-44{
    bottom: 11rem !important;
  }

  .tablet-small\:u-left-44{
    left: 11rem !important;
  }

  .tablet-small\:u-top-48{
    top: 12rem !important;
  }

  .tablet-small\:u-right-48{
    right: 12rem !important;
  }

  .tablet-small\:u-bottom-48{
    bottom: 12rem !important;
  }

  .tablet-small\:u-left-48{
    left: 12rem !important;
  }

  .tablet-small\:u-top-52{
    top: 13rem !important;
  }

  .tablet-small\:u-right-52{
    right: 13rem !important;
  }

  .tablet-small\:u-bottom-52{
    bottom: 13rem !important;
  }

  .tablet-small\:u-left-52{
    left: 13rem !important;
  }

  .tablet-small\:u-top-56{
    top: 14rem !important;
  }

  .tablet-small\:u-right-56{
    right: 14rem !important;
  }

  .tablet-small\:u-bottom-56{
    bottom: 14rem !important;
  }

  .tablet-small\:u-left-56{
    left: 14rem !important;
  }

  .tablet-small\:u-top-60{
    top: 15rem !important;
  }

  .tablet-small\:u-right-60{
    right: 15rem !important;
  }

  .tablet-small\:u-bottom-60{
    bottom: 15rem !important;
  }

  .tablet-small\:u-left-60{
    left: 15rem !important;
  }

  .tablet-small\:u-top-64{
    top: 16rem !important;
  }

  .tablet-small\:u-right-64{
    right: 16rem !important;
  }

  .tablet-small\:u-bottom-64{
    bottom: 16rem !important;
  }

  .tablet-small\:u-left-64{
    left: 16rem !important;
  }

  .tablet-small\:u-top-72{
    top: 18rem !important;
  }

  .tablet-small\:u-right-72{
    right: 18rem !important;
  }

  .tablet-small\:u-bottom-72{
    bottom: 18rem !important;
  }

  .tablet-small\:u-left-72{
    left: 18rem !important;
  }

  .tablet-small\:u-top-80{
    top: 20rem !important;
  }

  .tablet-small\:u-right-80{
    right: 20rem !important;
  }

  .tablet-small\:u-bottom-80{
    bottom: 20rem !important;
  }

  .tablet-small\:u-left-80{
    left: 20rem !important;
  }

  .tablet-small\:u-top-96{
    top: 24rem !important;
  }

  .tablet-small\:u-right-96{
    right: 24rem !important;
  }

  .tablet-small\:u-bottom-96{
    bottom: 24rem !important;
  }

  .tablet-small\:u-left-96{
    left: 24rem !important;
  }

  .tablet-small\:u-top-auto{
    top: auto !important;
  }

  .tablet-small\:u-right-auto{
    right: auto !important;
  }

  .tablet-small\:u-bottom-auto{
    bottom: auto !important;
  }

  .tablet-small\:u-left-auto{
    left: auto !important;
  }

  .tablet-small\:u-top-px{
    top: 1px !important;
  }

  .tablet-small\:u-right-px{
    right: 1px !important;
  }

  .tablet-small\:u-bottom-px{
    bottom: 1px !important;
  }

  .tablet-small\:u-left-px{
    left: 1px !important;
  }

  .tablet-small\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .tablet-small\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .tablet-small\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .tablet-small\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .tablet-small\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .tablet-small\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .tablet-small\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .tablet-small\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .tablet-small\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .tablet-small\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .tablet-small\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .tablet-small\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .tablet-small\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .tablet-small\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .tablet-small\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .tablet-small\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .tablet-small\:u--top-0{
    top: 0px !important;
  }

  .tablet-small\:u--right-0{
    right: 0px !important;
  }

  .tablet-small\:u--bottom-0{
    bottom: 0px !important;
  }

  .tablet-small\:u--left-0{
    left: 0px !important;
  }

  .tablet-small\:u--top-1{
    top: -0.25rem !important;
  }

  .tablet-small\:u--right-1{
    right: -0.25rem !important;
  }

  .tablet-small\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .tablet-small\:u--left-1{
    left: -0.25rem !important;
  }

  .tablet-small\:u--top-2{
    top: -0.5rem !important;
  }

  .tablet-small\:u--right-2{
    right: -0.5rem !important;
  }

  .tablet-small\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .tablet-small\:u--left-2{
    left: -0.5rem !important;
  }

  .tablet-small\:u--top-3{
    top: -0.75rem !important;
  }

  .tablet-small\:u--right-3{
    right: -0.75rem !important;
  }

  .tablet-small\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .tablet-small\:u--left-3{
    left: -0.75rem !important;
  }

  .tablet-small\:u--top-4{
    top: -1rem !important;
  }

  .tablet-small\:u--right-4{
    right: -1rem !important;
  }

  .tablet-small\:u--bottom-4{
    bottom: -1rem !important;
  }

  .tablet-small\:u--left-4{
    left: -1rem !important;
  }

  .tablet-small\:u--top-5{
    top: -1.25rem !important;
  }

  .tablet-small\:u--right-5{
    right: -1.25rem !important;
  }

  .tablet-small\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .tablet-small\:u--left-5{
    left: -1.25rem !important;
  }

  .tablet-small\:u--top-6{
    top: -1.5rem !important;
  }

  .tablet-small\:u--right-6{
    right: -1.5rem !important;
  }

  .tablet-small\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .tablet-small\:u--left-6{
    left: -1.5rem !important;
  }

  .tablet-small\:u--top-7{
    top: -1.75rem !important;
  }

  .tablet-small\:u--right-7{
    right: -1.75rem !important;
  }

  .tablet-small\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .tablet-small\:u--left-7{
    left: -1.75rem !important;
  }

  .tablet-small\:u--top-8{
    top: -2rem !important;
  }

  .tablet-small\:u--right-8{
    right: -2rem !important;
  }

  .tablet-small\:u--bottom-8{
    bottom: -2rem !important;
  }

  .tablet-small\:u--left-8{
    left: -2rem !important;
  }

  .tablet-small\:u--top-9{
    top: -2.25rem !important;
  }

  .tablet-small\:u--right-9{
    right: -2.25rem !important;
  }

  .tablet-small\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .tablet-small\:u--left-9{
    left: -2.25rem !important;
  }

  .tablet-small\:u--top-10{
    top: -2.5rem !important;
  }

  .tablet-small\:u--right-10{
    right: -2.5rem !important;
  }

  .tablet-small\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .tablet-small\:u--left-10{
    left: -2.5rem !important;
  }

  .tablet-small\:u--top-11{
    top: -2.75rem !important;
  }

  .tablet-small\:u--right-11{
    right: -2.75rem !important;
  }

  .tablet-small\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .tablet-small\:u--left-11{
    left: -2.75rem !important;
  }

  .tablet-small\:u--top-12{
    top: -3rem !important;
  }

  .tablet-small\:u--right-12{
    right: -3rem !important;
  }

  .tablet-small\:u--bottom-12{
    bottom: -3rem !important;
  }

  .tablet-small\:u--left-12{
    left: -3rem !important;
  }

  .tablet-small\:u--top-14{
    top: -3.5rem !important;
  }

  .tablet-small\:u--right-14{
    right: -3.5rem !important;
  }

  .tablet-small\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .tablet-small\:u--left-14{
    left: -3.5rem !important;
  }

  .tablet-small\:u--top-16{
    top: -4rem !important;
  }

  .tablet-small\:u--right-16{
    right: -4rem !important;
  }

  .tablet-small\:u--bottom-16{
    bottom: -4rem !important;
  }

  .tablet-small\:u--left-16{
    left: -4rem !important;
  }

  .tablet-small\:u--top-20{
    top: -5rem !important;
  }

  .tablet-small\:u--right-20{
    right: -5rem !important;
  }

  .tablet-small\:u--bottom-20{
    bottom: -5rem !important;
  }

  .tablet-small\:u--left-20{
    left: -5rem !important;
  }

  .tablet-small\:u--top-24{
    top: -6rem !important;
  }

  .tablet-small\:u--right-24{
    right: -6rem !important;
  }

  .tablet-small\:u--bottom-24{
    bottom: -6rem !important;
  }

  .tablet-small\:u--left-24{
    left: -6rem !important;
  }

  .tablet-small\:u--top-28{
    top: -7rem !important;
  }

  .tablet-small\:u--right-28{
    right: -7rem !important;
  }

  .tablet-small\:u--bottom-28{
    bottom: -7rem !important;
  }

  .tablet-small\:u--left-28{
    left: -7rem !important;
  }

  .tablet-small\:u--top-32{
    top: -8rem !important;
  }

  .tablet-small\:u--right-32{
    right: -8rem !important;
  }

  .tablet-small\:u--bottom-32{
    bottom: -8rem !important;
  }

  .tablet-small\:u--left-32{
    left: -8rem !important;
  }

  .tablet-small\:u--top-36{
    top: -9rem !important;
  }

  .tablet-small\:u--right-36{
    right: -9rem !important;
  }

  .tablet-small\:u--bottom-36{
    bottom: -9rem !important;
  }

  .tablet-small\:u--left-36{
    left: -9rem !important;
  }

  .tablet-small\:u--top-40{
    top: -10rem !important;
  }

  .tablet-small\:u--right-40{
    right: -10rem !important;
  }

  .tablet-small\:u--bottom-40{
    bottom: -10rem !important;
  }

  .tablet-small\:u--left-40{
    left: -10rem !important;
  }

  .tablet-small\:u--top-44{
    top: -11rem !important;
  }

  .tablet-small\:u--right-44{
    right: -11rem !important;
  }

  .tablet-small\:u--bottom-44{
    bottom: -11rem !important;
  }

  .tablet-small\:u--left-44{
    left: -11rem !important;
  }

  .tablet-small\:u--top-48{
    top: -12rem !important;
  }

  .tablet-small\:u--right-48{
    right: -12rem !important;
  }

  .tablet-small\:u--bottom-48{
    bottom: -12rem !important;
  }

  .tablet-small\:u--left-48{
    left: -12rem !important;
  }

  .tablet-small\:u--top-52{
    top: -13rem !important;
  }

  .tablet-small\:u--right-52{
    right: -13rem !important;
  }

  .tablet-small\:u--bottom-52{
    bottom: -13rem !important;
  }

  .tablet-small\:u--left-52{
    left: -13rem !important;
  }

  .tablet-small\:u--top-56{
    top: -14rem !important;
  }

  .tablet-small\:u--right-56{
    right: -14rem !important;
  }

  .tablet-small\:u--bottom-56{
    bottom: -14rem !important;
  }

  .tablet-small\:u--left-56{
    left: -14rem !important;
  }

  .tablet-small\:u--top-60{
    top: -15rem !important;
  }

  .tablet-small\:u--right-60{
    right: -15rem !important;
  }

  .tablet-small\:u--bottom-60{
    bottom: -15rem !important;
  }

  .tablet-small\:u--left-60{
    left: -15rem !important;
  }

  .tablet-small\:u--top-64{
    top: -16rem !important;
  }

  .tablet-small\:u--right-64{
    right: -16rem !important;
  }

  .tablet-small\:u--bottom-64{
    bottom: -16rem !important;
  }

  .tablet-small\:u--left-64{
    left: -16rem !important;
  }

  .tablet-small\:u--top-72{
    top: -18rem !important;
  }

  .tablet-small\:u--right-72{
    right: -18rem !important;
  }

  .tablet-small\:u--bottom-72{
    bottom: -18rem !important;
  }

  .tablet-small\:u--left-72{
    left: -18rem !important;
  }

  .tablet-small\:u--top-80{
    top: -20rem !important;
  }

  .tablet-small\:u--right-80{
    right: -20rem !important;
  }

  .tablet-small\:u--bottom-80{
    bottom: -20rem !important;
  }

  .tablet-small\:u--left-80{
    left: -20rem !important;
  }

  .tablet-small\:u--top-96{
    top: -24rem !important;
  }

  .tablet-small\:u--right-96{
    right: -24rem !important;
  }

  .tablet-small\:u--bottom-96{
    bottom: -24rem !important;
  }

  .tablet-small\:u--left-96{
    left: -24rem !important;
  }

  .tablet-small\:u--top-px{
    top: -1px !important;
  }

  .tablet-small\:u--right-px{
    right: -1px !important;
  }

  .tablet-small\:u--bottom-px{
    bottom: -1px !important;
  }

  .tablet-small\:u--left-px{
    left: -1px !important;
  }

  .tablet-small\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .tablet-small\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .tablet-small\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .tablet-small\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .tablet-small\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .tablet-small\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .tablet-small\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .tablet-small\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .tablet-small\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .tablet-small\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .tablet-small\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .tablet-small\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .tablet-small\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .tablet-small\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .tablet-small\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .tablet-small\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .tablet-small\:u-top-1\/2{
    top: 50% !important;
  }

  .tablet-small\:u-right-1\/2{
    right: 50% !important;
  }

  .tablet-small\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .tablet-small\:u-left-1\/2{
    left: 50% !important;
  }

  .tablet-small\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .tablet-small\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .tablet-small\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .tablet-small\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .tablet-small\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .tablet-small\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .tablet-small\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .tablet-small\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .tablet-small\:u-top-1\/4{
    top: 25% !important;
  }

  .tablet-small\:u-right-1\/4{
    right: 25% !important;
  }

  .tablet-small\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .tablet-small\:u-left-1\/4{
    left: 25% !important;
  }

  .tablet-small\:u-top-2\/4{
    top: 50% !important;
  }

  .tablet-small\:u-right-2\/4{
    right: 50% !important;
  }

  .tablet-small\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .tablet-small\:u-left-2\/4{
    left: 50% !important;
  }

  .tablet-small\:u-top-3\/4{
    top: 75% !important;
  }

  .tablet-small\:u-right-3\/4{
    right: 75% !important;
  }

  .tablet-small\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .tablet-small\:u-left-3\/4{
    left: 75% !important;
  }

  .tablet-small\:u-top-full{
    top: 100% !important;
  }

  .tablet-small\:u-right-full{
    right: 100% !important;
  }

  .tablet-small\:u-bottom-full{
    bottom: 100% !important;
  }

  .tablet-small\:u-left-full{
    left: 100% !important;
  }

  .tablet-small\:u--top-1\/2{
    top: -50% !important;
  }

  .tablet-small\:u--right-1\/2{
    right: -50% !important;
  }

  .tablet-small\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .tablet-small\:u--left-1\/2{
    left: -50% !important;
  }

  .tablet-small\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .tablet-small\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .tablet-small\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .tablet-small\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .tablet-small\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .tablet-small\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .tablet-small\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .tablet-small\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .tablet-small\:u--top-1\/4{
    top: -25% !important;
  }

  .tablet-small\:u--right-1\/4{
    right: -25% !important;
  }

  .tablet-small\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .tablet-small\:u--left-1\/4{
    left: -25% !important;
  }

  .tablet-small\:u--top-2\/4{
    top: -50% !important;
  }

  .tablet-small\:u--right-2\/4{
    right: -50% !important;
  }

  .tablet-small\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .tablet-small\:u--left-2\/4{
    left: -50% !important;
  }

  .tablet-small\:u--top-3\/4{
    top: -75% !important;
  }

  .tablet-small\:u--right-3\/4{
    right: -75% !important;
  }

  .tablet-small\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .tablet-small\:u--left-3\/4{
    left: -75% !important;
  }

  .tablet-small\:u--top-full{
    top: -100% !important;
  }

  .tablet-small\:u--right-full{
    right: -100% !important;
  }

  .tablet-small\:u--bottom-full{
    bottom: -100% !important;
  }

  .tablet-small\:u--left-full{
    left: -100% !important;
  }

  .tablet-small\:u-resize-none{
    resize: none !important;
  }

  .tablet-small\:u-resize-y{
    resize: vertical !important;
  }

  .tablet-small\:u-resize-x{
    resize: horizontal !important;
  }

  .tablet-small\:u-resize{
    resize: both !important;
  }

  .tablet-small\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-small\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .tablet-small\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .tablet-small\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-small\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .tablet-small\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-small\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-small\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-small\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-small\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet-small\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet-small\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet-small\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-small\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-small\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet-small\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet-small\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet-small\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet-small\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet-small\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet-small\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet-small\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet-small\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet-small\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet-small\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet-small\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet-small\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet-small\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet-small\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet-small\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet-small\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-small\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-small\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-small\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-small\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet-small\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet-small\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet-small\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet-small\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet-small\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-small\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet-small\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet-small\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet-small\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet-small\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet-small\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet-small\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet-small\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet-small\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet-small\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet-small\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet-small\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .tablet-small\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .tablet-small\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet-small\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-small\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-small\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-small\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-small\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-small\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-small\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-small\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-small\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-small\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-small\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-small\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-small\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-small\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-small\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-small\:u-fill-current{
    fill: currentColor !important;
  }

  .tablet-small\:u-stroke-current{
    stroke: currentColor !important;
  }

  .tablet-small\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .tablet-small\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .tablet-small\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .tablet-small\:u-table-auto{
    table-layout: auto !important;
  }

  .tablet-small\:u-table-fixed{
    table-layout: fixed !important;
  }

  .tablet-small\:u-text-left{
    text-align: left !important;
  }

  .tablet-small\:u-text-center{
    text-align: center !important;
  }

  .tablet-small\:u-text-right{
    text-align: right !important;
  }

  .tablet-small\:u-text-justify{
    text-align: justify !important;
  }

  .tablet-small\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-transparent{
    color: transparent !important;
  }

  .tablet-small\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .tablet-small\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .tablet-small\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-small\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .tablet-small\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-small\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-small\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-small\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-small\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-small\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-small\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-small\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-small\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-small\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-small\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-small\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-small\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-small\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .tablet-small\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .tablet-small\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .tablet-small\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .tablet-small\:u-italic{
    font-style: italic !important;
  }

  .tablet-small\:u-not-italic{
    font-style: normal !important;
  }

  .tablet-small\:u-uppercase{
    text-transform: uppercase !important;
  }

  .tablet-small\:u-lowercase{
    text-transform: lowercase !important;
  }

  .tablet-small\:u-capitalize{
    text-transform: capitalize !important;
  }

  .tablet-small\:u-normal-case{
    text-transform: none !important;
  }

  .tablet-small\:u-underline{
    text-decoration: underline !important;
  }

  .tablet-small\:u-line-through{
    text-decoration: line-through !important;
  }

  .tablet-small\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .tablet-small\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .tablet-small\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .tablet-small\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .tablet-small\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .tablet-small\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .tablet-small\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .tablet-small\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .tablet-small\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .tablet-small\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .tablet-small\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .tablet-small\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .tablet-small\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .tablet-small\:u-ordinal, .tablet-small\:u-slashed-zero, .tablet-small\:u-lining-nums, .tablet-small\:u-oldstyle-nums, .tablet-small\:u-proportional-nums, .tablet-small\:u-tabular-nums, .tablet-small\:u-diagonal-fractions, .tablet-small\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .tablet-small\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .tablet-small\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .tablet-small\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .tablet-small\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .tablet-small\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .tablet-small\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .tablet-small\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .tablet-small\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .tablet-small\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .tablet-small\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .tablet-small\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .tablet-small\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .tablet-small\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .tablet-small\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .tablet-small\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .tablet-small\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .tablet-small\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .tablet-small\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .tablet-small\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .tablet-small\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .tablet-small\:u-align-top{
    vertical-align: top !important;
  }

  .tablet-small\:u-align-middle{
    vertical-align: middle !important;
  }

  .tablet-small\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .tablet-small\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .tablet-small\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .tablet-small\:u-visible{
    visibility: visible !important;
  }

  .tablet-small\:u-invisible{
    visibility: hidden !important;
  }

  .tablet-small\:u-whitespace-normal{
    white-space: normal !important;
  }

  .tablet-small\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .tablet-small\:u-whitespace-pre{
    white-space: pre !important;
  }

  .tablet-small\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .tablet-small\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .tablet-small\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .tablet-small\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .tablet-small\:u-break-all{
    word-break: break-all !important;
  }

  .tablet-small\:u-w-0{
    width: 0px !important;
  }

  .tablet-small\:u-w-1{
    width: 0.25rem !important;
  }

  .tablet-small\:u-w-2{
    width: 0.5rem !important;
  }

  .tablet-small\:u-w-3{
    width: 0.75rem !important;
  }

  .tablet-small\:u-w-4{
    width: 1rem !important;
  }

  .tablet-small\:u-w-5{
    width: 1.25rem !important;
  }

  .tablet-small\:u-w-6{
    width: 1.5rem !important;
  }

  .tablet-small\:u-w-7{
    width: 1.75rem !important;
  }

  .tablet-small\:u-w-8{
    width: 2rem !important;
  }

  .tablet-small\:u-w-9{
    width: 2.25rem !important;
  }

  .tablet-small\:u-w-10{
    width: 2.5rem !important;
  }

  .tablet-small\:u-w-11{
    width: 2.75rem !important;
  }

  .tablet-small\:u-w-12{
    width: 3rem !important;
  }

  .tablet-small\:u-w-14{
    width: 3.5rem !important;
  }

  .tablet-small\:u-w-16{
    width: 4rem !important;
  }

  .tablet-small\:u-w-20{
    width: 5rem !important;
  }

  .tablet-small\:u-w-24{
    width: 6rem !important;
  }

  .tablet-small\:u-w-28{
    width: 7rem !important;
  }

  .tablet-small\:u-w-32{
    width: 8rem !important;
  }

  .tablet-small\:u-w-36{
    width: 9rem !important;
  }

  .tablet-small\:u-w-40{
    width: 10rem !important;
  }

  .tablet-small\:u-w-44{
    width: 11rem !important;
  }

  .tablet-small\:u-w-48{
    width: 12rem !important;
  }

  .tablet-small\:u-w-52{
    width: 13rem !important;
  }

  .tablet-small\:u-w-56{
    width: 14rem !important;
  }

  .tablet-small\:u-w-60{
    width: 15rem !important;
  }

  .tablet-small\:u-w-64{
    width: 16rem !important;
  }

  .tablet-small\:u-w-72{
    width: 18rem !important;
  }

  .tablet-small\:u-w-80{
    width: 20rem !important;
  }

  .tablet-small\:u-w-96{
    width: 24rem !important;
  }

  .tablet-small\:u-w-auto{
    width: auto !important;
  }

  .tablet-small\:u-w-px{
    width: 1px !important;
  }

  .tablet-small\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .tablet-small\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .tablet-small\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .tablet-small\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .tablet-small\:u-w-1\/2{
    width: 50% !important;
  }

  .tablet-small\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .tablet-small\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .tablet-small\:u-w-1\/4{
    width: 25% !important;
  }

  .tablet-small\:u-w-2\/4{
    width: 50% !important;
  }

  .tablet-small\:u-w-3\/4{
    width: 75% !important;
  }

  .tablet-small\:u-w-1\/5{
    width: 20% !important;
  }

  .tablet-small\:u-w-2\/5{
    width: 40% !important;
  }

  .tablet-small\:u-w-3\/5{
    width: 60% !important;
  }

  .tablet-small\:u-w-4\/5{
    width: 80% !important;
  }

  .tablet-small\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .tablet-small\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .tablet-small\:u-w-3\/6{
    width: 50% !important;
  }

  .tablet-small\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .tablet-small\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .tablet-small\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .tablet-small\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .tablet-small\:u-w-3\/12{
    width: 25% !important;
  }

  .tablet-small\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .tablet-small\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .tablet-small\:u-w-6\/12{
    width: 50% !important;
  }

  .tablet-small\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .tablet-small\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .tablet-small\:u-w-9\/12{
    width: 75% !important;
  }

  .tablet-small\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .tablet-small\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .tablet-small\:u-w-full{
    width: 100% !important;
  }

  .tablet-small\:u-w-screen{
    width: 100vw !important;
  }

  .tablet-small\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet-small\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet-small\:u-z-0{
    z-index: 0 !important;
  }

  .tablet-small\:u-z-10{
    z-index: 10 !important;
  }

  .tablet-small\:u-z-20{
    z-index: 20 !important;
  }

  .tablet-small\:u-z-30{
    z-index: 30 !important;
  }

  .tablet-small\:u-z-40{
    z-index: 40 !important;
  }

  .tablet-small\:u-z-50{
    z-index: 50 !important;
  }

  .tablet-small\:u-z-auto{
    z-index: auto !important;
  }

  .tablet-small\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .tablet-small\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .tablet-small\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .tablet-small\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .tablet-small\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .tablet-small\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .tablet-small\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .tablet-small\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .tablet-small\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .tablet-small\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .tablet-small\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .tablet-small\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .tablet-small\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .tablet-small\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .tablet-small\:u-gap-0{
    gap: 0px !important;
  }

  .tablet-small\:u-gap-1{
    gap: 0.25rem !important;
  }

  .tablet-small\:u-gap-2{
    gap: 0.5rem !important;
  }

  .tablet-small\:u-gap-3{
    gap: 0.75rem !important;
  }

  .tablet-small\:u-gap-4{
    gap: 1rem !important;
  }

  .tablet-small\:u-gap-5{
    gap: 1.25rem !important;
  }

  .tablet-small\:u-gap-6{
    gap: 1.5rem !important;
  }

  .tablet-small\:u-gap-7{
    gap: 1.75rem !important;
  }

  .tablet-small\:u-gap-8{
    gap: 2rem !important;
  }

  .tablet-small\:u-gap-9{
    gap: 2.25rem !important;
  }

  .tablet-small\:u-gap-10{
    gap: 2.5rem !important;
  }

  .tablet-small\:u-gap-11{
    gap: 2.75rem !important;
  }

  .tablet-small\:u-gap-12{
    gap: 3rem !important;
  }

  .tablet-small\:u-gap-14{
    gap: 3.5rem !important;
  }

  .tablet-small\:u-gap-16{
    gap: 4rem !important;
  }

  .tablet-small\:u-gap-20{
    gap: 5rem !important;
  }

  .tablet-small\:u-gap-24{
    gap: 6rem !important;
  }

  .tablet-small\:u-gap-28{
    gap: 7rem !important;
  }

  .tablet-small\:u-gap-32{
    gap: 8rem !important;
  }

  .tablet-small\:u-gap-36{
    gap: 9rem !important;
  }

  .tablet-small\:u-gap-40{
    gap: 10rem !important;
  }

  .tablet-small\:u-gap-44{
    gap: 11rem !important;
  }

  .tablet-small\:u-gap-48{
    gap: 12rem !important;
  }

  .tablet-small\:u-gap-52{
    gap: 13rem !important;
  }

  .tablet-small\:u-gap-56{
    gap: 14rem !important;
  }

  .tablet-small\:u-gap-60{
    gap: 15rem !important;
  }

  .tablet-small\:u-gap-64{
    gap: 16rem !important;
  }

  .tablet-small\:u-gap-72{
    gap: 18rem !important;
  }

  .tablet-small\:u-gap-80{
    gap: 20rem !important;
  }

  .tablet-small\:u-gap-96{
    gap: 24rem !important;
  }

  .tablet-small\:u-gap-px{
    gap: 1px !important;
  }

  .tablet-small\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .tablet-small\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .tablet-small\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .tablet-small\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .tablet-small\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .tablet-small\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .tablet-small\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .tablet-small\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .tablet-small\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .tablet-small\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .tablet-small\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .tablet-small\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .tablet-small\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .tablet-small\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .tablet-small\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .tablet-small\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .tablet-small\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .tablet-small\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .tablet-small\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .tablet-small\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .tablet-small\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .tablet-small\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .tablet-small\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .tablet-small\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .tablet-small\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .tablet-small\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .tablet-small\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .tablet-small\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .tablet-small\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .tablet-small\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .tablet-small\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .tablet-small\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .tablet-small\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .tablet-small\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .tablet-small\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .tablet-small\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .tablet-small\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .tablet-small\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .tablet-small\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .tablet-small\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .tablet-small\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .tablet-small\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .tablet-small\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .tablet-small\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .tablet-small\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .tablet-small\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .tablet-small\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .tablet-small\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .tablet-small\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .tablet-small\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .tablet-small\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .tablet-small\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .tablet-small\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .tablet-small\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .tablet-small\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .tablet-small\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .tablet-small\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .tablet-small\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .tablet-small\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .tablet-small\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .tablet-small\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .tablet-small\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .tablet-small\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .tablet-small\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .tablet-small\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .tablet-small\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .tablet-small\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .tablet-small\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .tablet-small\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .tablet-small\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .tablet-small\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .tablet-small\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .tablet-small\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .tablet-small\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .tablet-small\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .tablet-small\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .tablet-small\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .tablet-small\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .tablet-small\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .tablet-small\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .tablet-small\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .tablet-small\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .tablet-small\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .tablet-small\:u-col-auto{
    grid-column: auto !important;
  }

  .tablet-small\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .tablet-small\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .tablet-small\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .tablet-small\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .tablet-small\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .tablet-small\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .tablet-small\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .tablet-small\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .tablet-small\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .tablet-small\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .tablet-small\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .tablet-small\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .tablet-small\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .tablet-small\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .tablet-small\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .tablet-small\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .tablet-small\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .tablet-small\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .tablet-small\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .tablet-small\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .tablet-small\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .tablet-small\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .tablet-small\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .tablet-small\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .tablet-small\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .tablet-small\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .tablet-small\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .tablet-small\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .tablet-small\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .tablet-small\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .tablet-small\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .tablet-small\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .tablet-small\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .tablet-small\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .tablet-small\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .tablet-small\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .tablet-small\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .tablet-small\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .tablet-small\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .tablet-small\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .tablet-small\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .tablet-small\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .tablet-small\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .tablet-small\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .tablet-small\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .tablet-small\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .tablet-small\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .tablet-small\:u-row-auto{
    grid-row: auto !important;
  }

  .tablet-small\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .tablet-small\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .tablet-small\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .tablet-small\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .tablet-small\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .tablet-small\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .tablet-small\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .tablet-small\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .tablet-small\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .tablet-small\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .tablet-small\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .tablet-small\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .tablet-small\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .tablet-small\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .tablet-small\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .tablet-small\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .tablet-small\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .tablet-small\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .tablet-small\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .tablet-small\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .tablet-small\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .tablet-small\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .tablet-small\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .tablet-small\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .tablet-small\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .tablet-small\:u-transform-none{
    transform: none !important;
  }

  .tablet-small\:u-origin-center{
    transform-origin: center !important;
  }

  .tablet-small\:u-origin-top{
    transform-origin: top !important;
  }

  .tablet-small\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .tablet-small\:u-origin-right{
    transform-origin: right !important;
  }

  .tablet-small\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .tablet-small\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .tablet-small\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .tablet-small\:u-origin-left{
    transform-origin: left !important;
  }

  .tablet-small\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .tablet-small\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet-small\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet-small\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet-small\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet-small\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet-small\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet-small\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet-small\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet-small\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet-small\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet-small\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .tablet-small\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .tablet-small\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .tablet-small\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .tablet-small\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .tablet-small\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .tablet-small\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .tablet-small\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .tablet-small\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .tablet-small\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .tablet-small\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .tablet-small\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .tablet-small\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .tablet-small\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .tablet-small\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .tablet-small\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .tablet-small\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .tablet-small\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .tablet-small\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .tablet-small\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .tablet-small\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet-small\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet-small\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet-small\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet-small\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet-small\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet-small\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet-small\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet-small\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet-small\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet-small\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .tablet-small\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .tablet-small\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .tablet-small\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .tablet-small\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .tablet-small\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .tablet-small\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .tablet-small\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .tablet-small\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .tablet-small\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .tablet-small\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .tablet-small\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .tablet-small\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .tablet-small\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .tablet-small\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .tablet-small\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .tablet-small\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .tablet-small\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .tablet-small\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .tablet-small\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .tablet-small\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet-small\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet-small\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet-small\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet-small\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet-small\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet-small\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet-small\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet-small\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet-small\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet-small\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .tablet-small\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .tablet-small\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .tablet-small\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .tablet-small\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .tablet-small\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .tablet-small\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .tablet-small\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .tablet-small\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .tablet-small\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .tablet-small\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .tablet-small\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .tablet-small\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .tablet-small\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .tablet-small\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .tablet-small\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .tablet-small\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .tablet-small\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .tablet-small\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .tablet-small\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .tablet-small\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .tablet-small\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .tablet-small\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .tablet-small\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .tablet-small\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .tablet-small\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .tablet-small\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .tablet-small\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .tablet-small\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .tablet-small\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .tablet-small\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .tablet-small\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .tablet-small\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .tablet-small\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .tablet-small\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .tablet-small\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .tablet-small\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .tablet-small\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .tablet-small\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .tablet-small\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .tablet-small\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .tablet-small\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .tablet-small\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .tablet-small\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .tablet-small\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .tablet-small\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .tablet-small\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .tablet-small\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .tablet-small\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .tablet-small\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .tablet-small\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .tablet-small\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .tablet-small\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .tablet-small\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .tablet-small\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .tablet-small\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .tablet-small\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .tablet-small\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .tablet-small\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .tablet-small\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .tablet-small\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .tablet-small\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .tablet-small\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .tablet-small\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .tablet-small\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .tablet-small\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .tablet-small\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .tablet-small\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .tablet-small\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .tablet-small\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .tablet-small\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .tablet-small\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .tablet-small\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet-small\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet-small\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet-small\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .tablet-small\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet-small\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet-small\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet-small\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .tablet-small\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet-small\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet-small\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet-small\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .tablet-small\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet-small\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .tablet-small\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .tablet-small\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .tablet-small\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .tablet-small\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .tablet-small\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .tablet-small\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .tablet-small\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .tablet-small\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .tablet-small\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .tablet-small\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .tablet-small\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .tablet-small\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .tablet-small\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .tablet-small\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .tablet-small\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .tablet-small\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .tablet-small\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet-small\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet-small\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet-small\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet-small\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .tablet-small\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet-small\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet-small\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet-small\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .tablet-small\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet-small\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet-small\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet-small\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .tablet-small\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet-small\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet-small\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet-small\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .tablet-small\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet-small\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .tablet-small\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .tablet-small\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .tablet-small\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .tablet-small\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .tablet-small\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .tablet-small\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .tablet-small\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .tablet-small\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .tablet-small\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .tablet-small\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .tablet-small\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .tablet-small\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .tablet-small\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .tablet-small\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .tablet-small\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .tablet-small\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .tablet-small\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet-small\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet-small\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet-small\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet-small\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .tablet-small\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet-small\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet-small\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .tablet-small\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .tablet-small\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .tablet-small\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .tablet-small\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .tablet-small\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet-small\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet-small\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .tablet-small\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .tablet-small\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .tablet-small\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .tablet-small\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .tablet-small\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet-small\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet-small\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet-small\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .tablet-small\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet-small\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet-small\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet-small\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .tablet-small\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet-small\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet-small\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet-small\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .tablet-small\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet-small\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .tablet-small\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .tablet-small\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .tablet-small\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .tablet-small\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .tablet-small\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .tablet-small\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .tablet-small\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .tablet-small\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .tablet-small\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .tablet-small\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .tablet-small\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .tablet-small\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .tablet-small\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .tablet-small\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .tablet-small\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .tablet-small\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .tablet-small\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet-small\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet-small\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet-small\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet-small\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .tablet-small\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet-small\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet-small\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet-small\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .tablet-small\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet-small\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet-small\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet-small\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .tablet-small\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet-small\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet-small\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet-small\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .tablet-small\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet-small\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .tablet-small\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .tablet-small\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .tablet-small\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .tablet-small\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .tablet-small\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .tablet-small\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .tablet-small\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .tablet-small\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .tablet-small\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .tablet-small\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .tablet-small\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .tablet-small\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .tablet-small\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .tablet-small\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .tablet-small\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .tablet-small\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .tablet-small\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet-small\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet-small\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet-small\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet-small\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .tablet-small\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet-small\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet-small\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .tablet-small\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .tablet-small\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .tablet-small\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .tablet-small\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .tablet-small\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet-small\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet-small\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .tablet-small\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .tablet-small\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .tablet-small\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .tablet-small\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .tablet-small\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet-small\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet-small\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet-small\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .tablet-small\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet-small\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet-small\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet-small\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .tablet-small\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet-small\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet-small\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet-small\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .tablet-small\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet-small\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .tablet-small\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .tablet-small\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .tablet-small\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .tablet-small\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .tablet-small\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .tablet-small\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .tablet-small\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .tablet-small\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .tablet-small\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .tablet-small\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .tablet-small\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .tablet-small\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .tablet-small\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .tablet-small\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .tablet-small\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .tablet-small\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .tablet-small\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet-small\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet-small\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet-small\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet-small\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .tablet-small\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet-small\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet-small\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet-small\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .tablet-small\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet-small\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet-small\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet-small\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .tablet-small\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet-small\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet-small\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet-small\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .tablet-small\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet-small\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .tablet-small\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .tablet-small\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .tablet-small\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .tablet-small\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .tablet-small\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .tablet-small\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .tablet-small\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .tablet-small\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .tablet-small\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .tablet-small\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .tablet-small\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .tablet-small\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .tablet-small\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .tablet-small\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .tablet-small\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .tablet-small\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .tablet-small\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet-small\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet-small\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet-small\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet-small\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .tablet-small\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet-small\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet-small\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .tablet-small\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .tablet-small\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .tablet-small\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .tablet-small\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .tablet-small\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet-small\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet-small\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .tablet-small\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .tablet-small\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .tablet-small\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .tablet-small\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .tablet-small\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet-small\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet-small\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet-small\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .tablet-small\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet-small\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet-small\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet-small\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .tablet-small\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet-small\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet-small\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet-small\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .tablet-small\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet-small\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .tablet-small\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .tablet-small\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .tablet-small\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .tablet-small\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .tablet-small\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .tablet-small\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .tablet-small\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .tablet-small\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .tablet-small\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .tablet-small\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .tablet-small\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .tablet-small\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .tablet-small\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .tablet-small\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .tablet-small\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .tablet-small\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .tablet-small\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet-small\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet-small\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet-small\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet-small\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .tablet-small\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet-small\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet-small\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet-small\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .tablet-small\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet-small\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet-small\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet-small\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .tablet-small\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet-small\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet-small\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet-small\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .tablet-small\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet-small\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .tablet-small\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .tablet-small\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .tablet-small\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .tablet-small\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .tablet-small\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .tablet-small\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .tablet-small\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .tablet-small\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .tablet-small\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .tablet-small\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .tablet-small\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .tablet-small\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .tablet-small\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .tablet-small\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .tablet-small\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .tablet-small\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .tablet-small\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet-small\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet-small\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet-small\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet-small\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .tablet-small\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet-small\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet-small\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .tablet-small\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .tablet-small\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .tablet-small\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .tablet-small\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .tablet-small\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet-small\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet-small\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .tablet-small\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .tablet-small\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .tablet-small\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .tablet-small\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .tablet-small\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet-small\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet-small\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet-small\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .tablet-small\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet-small\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet-small\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet-small\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .tablet-small\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet-small\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet-small\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet-small\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .tablet-small\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet-small\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .tablet-small\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .tablet-small\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .tablet-small\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .tablet-small\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .tablet-small\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .tablet-small\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .tablet-small\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .tablet-small\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .tablet-small\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .tablet-small\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .tablet-small\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .tablet-small\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .tablet-small\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .tablet-small\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .tablet-small\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .tablet-small\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .tablet-small\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet-small\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet-small\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet-small\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet-small\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .tablet-small\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet-small\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet-small\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet-small\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .tablet-small\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet-small\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet-small\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet-small\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .tablet-small\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet-small\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet-small\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet-small\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .tablet-small\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet-small\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .tablet-small\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .tablet-small\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .tablet-small\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .tablet-small\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .tablet-small\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .tablet-small\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .tablet-small\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .tablet-small\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .tablet-small\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .tablet-small\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .tablet-small\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .tablet-small\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .tablet-small\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .tablet-small\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .tablet-small\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .tablet-small\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .tablet-small\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet-small\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet-small\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet-small\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet-small\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .tablet-small\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet-small\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet-small\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .tablet-small\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .tablet-small\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .tablet-small\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .tablet-small\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .tablet-small\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet-small\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet-small\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .tablet-small\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .tablet-small\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .tablet-small\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .tablet-small\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .tablet-small\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet-small\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet-small\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet-small\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .tablet-small\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet-small\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet-small\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet-small\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .tablet-small\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet-small\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet-small\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet-small\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .tablet-small\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet-small\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .tablet-small\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .tablet-small\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .tablet-small\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .tablet-small\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .tablet-small\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .tablet-small\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .tablet-small\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .tablet-small\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .tablet-small\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .tablet-small\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .tablet-small\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .tablet-small\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .tablet-small\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .tablet-small\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .tablet-small\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .tablet-small\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .tablet-small\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet-small\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet-small\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet-small\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet-small\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .tablet-small\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet-small\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet-small\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet-small\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .tablet-small\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet-small\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet-small\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet-small\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .tablet-small\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet-small\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet-small\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet-small\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .tablet-small\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet-small\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .tablet-small\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .tablet-small\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .tablet-small\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .tablet-small\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .tablet-small\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .tablet-small\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .tablet-small\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .tablet-small\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .tablet-small\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .tablet-small\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .tablet-small\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .tablet-small\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .tablet-small\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .tablet-small\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .tablet-small\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .tablet-small\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .tablet-small\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet-small\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet-small\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet-small\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet-small\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .tablet-small\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet-small\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet-small\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .tablet-small\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .tablet-small\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .tablet-small\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .tablet-small\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .tablet-small\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet-small\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet-small\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .tablet-small\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .tablet-small\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .tablet-small\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .tablet-small\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .tablet-small\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .tablet-small\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .tablet-small\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .tablet-small\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .tablet-small\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .tablet-small\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .tablet-small\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .tablet-small\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .tablet-small\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .tablet-small\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .tablet-small\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .tablet-small\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .tablet-small\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .tablet-small\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .tablet-small\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .tablet-small\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .tablet-small\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .tablet-small\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .tablet-small\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .tablet-small\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .tablet-small\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .tablet-small\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .tablet-small\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .tablet-small\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .tablet-small\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .tablet-small\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .tablet-small\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .tablet-small\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .tablet-small\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .tablet-small\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .tablet-small\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .tablet-small\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .tablet-small\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .tablet-small\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .tablet-small\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .tablet-small\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .tablet-small\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .tablet-small\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .tablet-small\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .tablet-small\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .tablet-small\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .tablet-small\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .tablet-small\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .tablet-small\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .tablet-small\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .tablet-small\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .tablet-small\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .tablet-small\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .tablet-small\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .tablet-small\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .tablet-small\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .tablet-small\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .tablet-small\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .tablet-small\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .tablet-small\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .tablet-small\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .tablet-small\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .tablet-small\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .tablet-small\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .tablet-small\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .tablet-small\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .tablet-small\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .tablet-small\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .tablet-small\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .tablet-small\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .tablet-small\:u-transition-none{
    transition-property: none !important;
  }

  .tablet-small\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .tablet-small\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .tablet-small\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .tablet-small\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .tablet-small\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .tablet-small\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .tablet-small\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .tablet-small\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .tablet-small\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .tablet-small\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .tablet-small\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .tablet-small\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .tablet-small\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .tablet-small\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .tablet-small\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .tablet-small\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .tablet-small\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .tablet-small\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .tablet-small\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .tablet-small\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .tablet-small\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tablet-small\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .tablet-small\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet-small\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet-small\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}

@media (min-width: 768px){
  .tablet\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .tablet\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .tablet\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .tablet\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .tablet\:u-container{
      max-width: 1120px;
    }
  }

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

  .tablet\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .tablet\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .tablet\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .tablet\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .tablet\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .tablet\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .tablet\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .tablet\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .tablet\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .tablet\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .tablet\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .tablet\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .tablet\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .tablet\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .tablet\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .tablet\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .tablet\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .tablet\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .tablet\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .tablet\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .tablet\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .tablet\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .tablet\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .tablet\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .tablet\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .tablet\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .tablet\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .tablet\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .tablet\:u-bg-local{
    background-attachment: local !important;
  }

  .tablet\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .tablet\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .tablet\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .tablet\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .tablet\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .tablet\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-transparent{
    background-color: transparent !important;
  }

  .tablet\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .tablet\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .tablet\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .tablet\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet\:u-bg-none{
    background-image: none !important;
  }

  .tablet\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .tablet\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .tablet\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .tablet\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .tablet\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .tablet\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .tablet\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .tablet\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .tablet\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .tablet\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .tablet\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .tablet\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .tablet\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .tablet\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .tablet\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .tablet\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .tablet\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .tablet\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .tablet\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .tablet\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .tablet\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .tablet\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .tablet\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .tablet\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .tablet\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .tablet\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .tablet\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .tablet\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .tablet\:u-bg-bottom{
    background-position: bottom !important;
  }

  .tablet\:u-bg-center{
    background-position: center !important;
  }

  .tablet\:u-bg-left{
    background-position: left !important;
  }

  .tablet\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .tablet\:u-bg-left-top{
    background-position: left top !important;
  }

  .tablet\:u-bg-right{
    background-position: right !important;
  }

  .tablet\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .tablet\:u-bg-right-top{
    background-position: right top !important;
  }

  .tablet\:u-bg-top{
    background-position: top !important;
  }

  .tablet\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .tablet\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .tablet\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .tablet\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .tablet\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .tablet\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .tablet\:u-bg-auto{
    background-size: auto !important;
  }

  .tablet\:u-bg-cover{
    background-size: cover !important;
  }

  .tablet\:u-bg-contain{
    background-size: contain !important;
  }

  .tablet\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .tablet\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .tablet\:u-border-separate{
    border-collapse: separate !important;
  }

  .tablet\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-transparent{
    border-color: transparent !important;
  }

  .tablet\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .tablet\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .tablet\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .tablet\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .tablet\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .tablet\:u-rounded-none{
    border-radius: 0 !important;
  }

  .tablet\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .tablet\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .tablet\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .tablet\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .tablet\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .tablet\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .tablet\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .tablet\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .tablet\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .tablet\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .tablet\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .tablet\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .tablet\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .tablet\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .tablet\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .tablet\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .tablet\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .tablet\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .tablet\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .tablet\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .tablet\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .tablet\:u-border-solid{
    border-style: solid !important;
  }

  .tablet\:u-border-dashed{
    border-style: dashed !important;
  }

  .tablet\:u-border-dotted{
    border-style: dotted !important;
  }

  .tablet\:u-border-double{
    border-style: double !important;
  }

  .tablet\:u-border-none{
    border-style: none !important;
  }

  .tablet\:u-border-0{
    border-width: 0px !important;
  }

  .tablet\:u-border-2{
    border-width: 2px !important;
  }

  .tablet\:u-border-4{
    border-width: 4px !important;
  }

  .tablet\:u-border-8{
    border-width: 8px !important;
  }

  .tablet\:u-border{
    border-width: 1px !important;
  }

  .tablet\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .tablet\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .tablet\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .tablet\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .tablet\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .tablet\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .tablet\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .tablet\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .tablet\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .tablet\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .tablet\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .tablet\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .tablet\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .tablet\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .tablet\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .tablet\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .tablet\:u-border-t{
    border-top-width: 1px !important;
  }

  .tablet\:u-border-r{
    border-right-width: 1px !important;
  }

  .tablet\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .tablet\:u-border-l{
    border-left-width: 1px !important;
  }

  .tablet\:u-box-border{
    box-sizing: border-box !important;
  }

  .tablet\:u-box-content{
    box-sizing: content-box !important;
  }

  .tablet\:u-cursor-auto{
    cursor: auto !important;
  }

  .tablet\:u-cursor-default{
    cursor: default !important;
  }

  .tablet\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .tablet\:u-cursor-wait{
    cursor: wait !important;
  }

  .tablet\:u-cursor-text{
    cursor: text !important;
  }

  .tablet\:u-cursor-move{
    cursor: move !important;
  }

  .tablet\:u-cursor-help{
    cursor: help !important;
  }

  .tablet\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .tablet\:u-block{
    display: block !important;
  }

  .tablet\:u-inline-block{
    display: inline-block !important;
  }

  .tablet\:u-inline{
    display: inline !important;
  }

  .tablet\:u-flex{
    display: flex !important;
  }

  .tablet\:u-inline-flex{
    display: inline-flex !important;
  }

  .tablet\:u-table{
    display: table !important;
  }

  .tablet\:u-table-caption{
    display: table-caption !important;
  }

  .tablet\:u-table-cell{
    display: table-cell !important;
  }

  .tablet\:u-table-column{
    display: table-column !important;
  }

  .tablet\:u-table-column-group{
    display: table-column-group !important;
  }

  .tablet\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .tablet\:u-table-header-group{
    display: table-header-group !important;
  }

  .tablet\:u-table-row-group{
    display: table-row-group !important;
  }

  .tablet\:u-table-row{
    display: table-row !important;
  }

  .tablet\:u-flow-root{
    display: flow-root !important;
  }

  .tablet\:u-grid{
    display: grid !important;
  }

  .tablet\:u-inline-grid{
    display: inline-grid !important;
  }

  .tablet\:u-contents{
    display: contents !important;
  }

  .tablet\:u-hidden{
    display: none !important;
  }

  .tablet\:u-flex-row{
    flex-direction: row !important;
  }

  .tablet\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .tablet\:u-flex-col{
    flex-direction: column !important;
  }

  .tablet\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .tablet\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .tablet\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .tablet\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .tablet\:u-place-items-auto{
    place-items: auto !important;
  }

  .tablet\:u-place-items-start{
    place-items: start !important;
  }

  .tablet\:u-place-items-end{
    place-items: end !important;
  }

  .tablet\:u-place-items-center{
    place-items: center !important;
  }

  .tablet\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .tablet\:u-place-content-center{
    place-content: center !important;
  }

  .tablet\:u-place-content-start{
    place-content: start !important;
  }

  .tablet\:u-place-content-end{
    place-content: end !important;
  }

  .tablet\:u-place-content-between{
    place-content: space-between !important;
  }

  .tablet\:u-place-content-around{
    place-content: space-around !important;
  }

  .tablet\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .tablet\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .tablet\:u-place-self-auto{
    place-self: auto !important;
  }

  .tablet\:u-place-self-start{
    place-self: start !important;
  }

  .tablet\:u-place-self-end{
    place-self: end !important;
  }

  .tablet\:u-place-self-center{
    place-self: center !important;
  }

  .tablet\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .tablet\:u-items-start{
    align-items: flex-start !important;
  }

  .tablet\:u-items-end{
    align-items: flex-end !important;
  }

  .tablet\:u-items-center{
    align-items: center !important;
  }

  .tablet\:u-items-baseline{
    align-items: baseline !important;
  }

  .tablet\:u-items-stretch{
    align-items: stretch !important;
  }

  .tablet\:u-content-center{
    align-content: center !important;
  }

  .tablet\:u-content-start{
    align-content: flex-start !important;
  }

  .tablet\:u-content-end{
    align-content: flex-end !important;
  }

  .tablet\:u-content-between{
    align-content: space-between !important;
  }

  .tablet\:u-content-around{
    align-content: space-around !important;
  }

  .tablet\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .tablet\:u-self-auto{
    align-self: auto !important;
  }

  .tablet\:u-self-start{
    align-self: flex-start !important;
  }

  .tablet\:u-self-end{
    align-self: flex-end !important;
  }

  .tablet\:u-self-center{
    align-self: center !important;
  }

  .tablet\:u-self-stretch{
    align-self: stretch !important;
  }

  .tablet\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .tablet\:u-justify-items-start{
    justify-items: start !important;
  }

  .tablet\:u-justify-items-end{
    justify-items: end !important;
  }

  .tablet\:u-justify-items-center{
    justify-items: center !important;
  }

  .tablet\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .tablet\:u-justify-start{
    justify-content: flex-start !important;
  }

  .tablet\:u-justify-end{
    justify-content: flex-end !important;
  }

  .tablet\:u-justify-center{
    justify-content: center !important;
  }

  .tablet\:u-justify-between{
    justify-content: space-between !important;
  }

  .tablet\:u-justify-around{
    justify-content: space-around !important;
  }

  .tablet\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .tablet\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .tablet\:u-justify-self-start{
    justify-self: start !important;
  }

  .tablet\:u-justify-self-end{
    justify-self: end !important;
  }

  .tablet\:u-justify-self-center{
    justify-self: center !important;
  }

  .tablet\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .tablet\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .tablet\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .tablet\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .tablet\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .tablet\:u-flex-none{
    flex: none !important;
  }

  .tablet\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .tablet\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .tablet\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .tablet\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .tablet\:u-order-1{
    order: 1 !important;
  }

  .tablet\:u-order-2{
    order: 2 !important;
  }

  .tablet\:u-order-3{
    order: 3 !important;
  }

  .tablet\:u-order-4{
    order: 4 !important;
  }

  .tablet\:u-order-5{
    order: 5 !important;
  }

  .tablet\:u-order-6{
    order: 6 !important;
  }

  .tablet\:u-order-7{
    order: 7 !important;
  }

  .tablet\:u-order-8{
    order: 8 !important;
  }

  .tablet\:u-order-9{
    order: 9 !important;
  }

  .tablet\:u-order-10{
    order: 10 !important;
  }

  .tablet\:u-order-11{
    order: 11 !important;
  }

  .tablet\:u-order-12{
    order: 12 !important;
  }

  .tablet\:u-order-first{
    order: -9999 !important;
  }

  .tablet\:u-order-last{
    order: 9999 !important;
  }

  .tablet\:u-order-none{
    order: 0 !important;
  }

  .tablet\:u-float-right{
    float: right !important;
  }

  .tablet\:u-float-left{
    float: left !important;
  }

  .tablet\:u-float-none{
    float: none !important;
  }

  .tablet\:u-clear-left{
    clear: left !important;
  }

  .tablet\:u-clear-right{
    clear: right !important;
  }

  .tablet\:u-clear-both{
    clear: both !important;
  }

  .tablet\:u-clear-none{
    clear: none !important;
  }

  .tablet\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .tablet\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .tablet\:u-font-thin{
    font-weight: 100 !important;
  }

  .tablet\:u-font-extralight{
    font-weight: 200 !important;
  }

  .tablet\:u-font-light{
    font-weight: 300 !important;
  }

  .tablet\:u-font-normal{
    font-weight: 400 !important;
  }

  .tablet\:u-font-medium{
    font-weight: 500 !important;
  }

  .tablet\:u-font-semibold{
    font-weight: 600 !important;
  }

  .tablet\:u-font-bold{
    font-weight: 700 !important;
  }

  .tablet\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .tablet\:u-font-black{
    font-weight: 900 !important;
  }

  .tablet\:u-h-0{
    height: 0px !important;
  }

  .tablet\:u-h-1{
    height: 0.25rem !important;
  }

  .tablet\:u-h-2{
    height: 0.5rem !important;
  }

  .tablet\:u-h-3{
    height: 0.75rem !important;
  }

  .tablet\:u-h-4{
    height: 1rem !important;
  }

  .tablet\:u-h-5{
    height: 1.25rem !important;
  }

  .tablet\:u-h-6{
    height: 1.5rem !important;
  }

  .tablet\:u-h-7{
    height: 1.75rem !important;
  }

  .tablet\:u-h-8{
    height: 2rem !important;
  }

  .tablet\:u-h-9{
    height: 2.25rem !important;
  }

  .tablet\:u-h-10{
    height: 2.5rem !important;
  }

  .tablet\:u-h-11{
    height: 2.75rem !important;
  }

  .tablet\:u-h-12{
    height: 3rem !important;
  }

  .tablet\:u-h-14{
    height: 3.5rem !important;
  }

  .tablet\:u-h-16{
    height: 4rem !important;
  }

  .tablet\:u-h-20{
    height: 5rem !important;
  }

  .tablet\:u-h-24{
    height: 6rem !important;
  }

  .tablet\:u-h-28{
    height: 7rem !important;
  }

  .tablet\:u-h-32{
    height: 8rem !important;
  }

  .tablet\:u-h-36{
    height: 9rem !important;
  }

  .tablet\:u-h-40{
    height: 10rem !important;
  }

  .tablet\:u-h-44{
    height: 11rem !important;
  }

  .tablet\:u-h-48{
    height: 12rem !important;
  }

  .tablet\:u-h-52{
    height: 13rem !important;
  }

  .tablet\:u-h-56{
    height: 14rem !important;
  }

  .tablet\:u-h-60{
    height: 15rem !important;
  }

  .tablet\:u-h-64{
    height: 16rem !important;
  }

  .tablet\:u-h-72{
    height: 18rem !important;
  }

  .tablet\:u-h-80{
    height: 20rem !important;
  }

  .tablet\:u-h-96{
    height: 24rem !important;
  }

  .tablet\:u-h-auto{
    height: auto !important;
  }

  .tablet\:u-h-px{
    height: 1px !important;
  }

  .tablet\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .tablet\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .tablet\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .tablet\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .tablet\:u-h-1\/2{
    height: 50% !important;
  }

  .tablet\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .tablet\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .tablet\:u-h-1\/4{
    height: 25% !important;
  }

  .tablet\:u-h-2\/4{
    height: 50% !important;
  }

  .tablet\:u-h-3\/4{
    height: 75% !important;
  }

  .tablet\:u-h-1\/5{
    height: 20% !important;
  }

  .tablet\:u-h-2\/5{
    height: 40% !important;
  }

  .tablet\:u-h-3\/5{
    height: 60% !important;
  }

  .tablet\:u-h-4\/5{
    height: 80% !important;
  }

  .tablet\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .tablet\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .tablet\:u-h-3\/6{
    height: 50% !important;
  }

  .tablet\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .tablet\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .tablet\:u-h-full{
    height: 100% !important;
  }

  .tablet\:u-h-screen{
    height: 100vh !important;
  }

  .tablet\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .tablet\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .tablet\:u-text-base{
    font-size: 1rem !important;
  }

  .tablet\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .tablet\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .tablet\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .tablet\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .tablet\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .tablet\:u-text-5xl{
    font-size: 3rem !important;
  }

  .tablet\:u-text-6xl{
    font-size: 4rem !important;
  }

  .tablet\:u-text-7xl{
    font-size: 5rem !important;
  }

  .tablet\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .tablet\:u-leading-3{
    line-height: .75rem !important;
  }

  .tablet\:u-leading-4{
    line-height: 1rem !important;
  }

  .tablet\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .tablet\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .tablet\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .tablet\:u-leading-8{
    line-height: 2rem !important;
  }

  .tablet\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .tablet\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .tablet\:u-leading-none{
    line-height: 1 !important;
  }

  .tablet\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .tablet\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .tablet\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .tablet\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .tablet\:u-leading-loose{
    line-height: 2 !important;
  }

  .tablet\:u-list-inside{
    list-style-position: inside !important;
  }

  .tablet\:u-list-outside{
    list-style-position: outside !important;
  }

  .tablet\:u-list-none{
    list-style-type: none !important;
  }

  .tablet\:u-list-disc{
    list-style-type: disc !important;
  }

  .tablet\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .tablet\:u-m-0{
    margin: 0px !important;
  }

  .tablet\:u-m-1{
    margin: 0.25rem !important;
  }

  .tablet\:u-m-2{
    margin: 0.5rem !important;
  }

  .tablet\:u-m-3{
    margin: 0.75rem !important;
  }

  .tablet\:u-m-4{
    margin: 1rem !important;
  }

  .tablet\:u-m-5{
    margin: 1.25rem !important;
  }

  .tablet\:u-m-6{
    margin: 1.5rem !important;
  }

  .tablet\:u-m-7{
    margin: 1.75rem !important;
  }

  .tablet\:u-m-8{
    margin: 2rem !important;
  }

  .tablet\:u-m-9{
    margin: 2.25rem !important;
  }

  .tablet\:u-m-10{
    margin: 2.5rem !important;
  }

  .tablet\:u-m-11{
    margin: 2.75rem !important;
  }

  .tablet\:u-m-12{
    margin: 3rem !important;
  }

  .tablet\:u-m-14{
    margin: 3.5rem !important;
  }

  .tablet\:u-m-16{
    margin: 4rem !important;
  }

  .tablet\:u-m-20{
    margin: 5rem !important;
  }

  .tablet\:u-m-24{
    margin: 6rem !important;
  }

  .tablet\:u-m-28{
    margin: 7rem !important;
  }

  .tablet\:u-m-32{
    margin: 8rem !important;
  }

  .tablet\:u-m-36{
    margin: 9rem !important;
  }

  .tablet\:u-m-40{
    margin: 10rem !important;
  }

  .tablet\:u-m-44{
    margin: 11rem !important;
  }

  .tablet\:u-m-48{
    margin: 12rem !important;
  }

  .tablet\:u-m-52{
    margin: 13rem !important;
  }

  .tablet\:u-m-56{
    margin: 14rem !important;
  }

  .tablet\:u-m-60{
    margin: 15rem !important;
  }

  .tablet\:u-m-64{
    margin: 16rem !important;
  }

  .tablet\:u-m-72{
    margin: 18rem !important;
  }

  .tablet\:u-m-80{
    margin: 20rem !important;
  }

  .tablet\:u-m-96{
    margin: 24rem !important;
  }

  .tablet\:u-m-auto{
    margin: auto !important;
  }

  .tablet\:u-m-px{
    margin: 1px !important;
  }

  .tablet\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .tablet\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .tablet\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .tablet\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .tablet\:u--m-0{
    margin: 0px !important;
  }

  .tablet\:u--m-1{
    margin: -0.25rem !important;
  }

  .tablet\:u--m-2{
    margin: -0.5rem !important;
  }

  .tablet\:u--m-3{
    margin: -0.75rem !important;
  }

  .tablet\:u--m-4{
    margin: -1rem !important;
  }

  .tablet\:u--m-5{
    margin: -1.25rem !important;
  }

  .tablet\:u--m-6{
    margin: -1.5rem !important;
  }

  .tablet\:u--m-7{
    margin: -1.75rem !important;
  }

  .tablet\:u--m-8{
    margin: -2rem !important;
  }

  .tablet\:u--m-9{
    margin: -2.25rem !important;
  }

  .tablet\:u--m-10{
    margin: -2.5rem !important;
  }

  .tablet\:u--m-11{
    margin: -2.75rem !important;
  }

  .tablet\:u--m-12{
    margin: -3rem !important;
  }

  .tablet\:u--m-14{
    margin: -3.5rem !important;
  }

  .tablet\:u--m-16{
    margin: -4rem !important;
  }

  .tablet\:u--m-20{
    margin: -5rem !important;
  }

  .tablet\:u--m-24{
    margin: -6rem !important;
  }

  .tablet\:u--m-28{
    margin: -7rem !important;
  }

  .tablet\:u--m-32{
    margin: -8rem !important;
  }

  .tablet\:u--m-36{
    margin: -9rem !important;
  }

  .tablet\:u--m-40{
    margin: -10rem !important;
  }

  .tablet\:u--m-44{
    margin: -11rem !important;
  }

  .tablet\:u--m-48{
    margin: -12rem !important;
  }

  .tablet\:u--m-52{
    margin: -13rem !important;
  }

  .tablet\:u--m-56{
    margin: -14rem !important;
  }

  .tablet\:u--m-60{
    margin: -15rem !important;
  }

  .tablet\:u--m-64{
    margin: -16rem !important;
  }

  .tablet\:u--m-72{
    margin: -18rem !important;
  }

  .tablet\:u--m-80{
    margin: -20rem !important;
  }

  .tablet\:u--m-96{
    margin: -24rem !important;
  }

  .tablet\:u--m-px{
    margin: -1px !important;
  }

  .tablet\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .tablet\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .tablet\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .tablet\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .tablet\:u-m-full{
    margin: 100% !important;
  }

  .tablet\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .tablet\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .tablet\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tablet\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .tablet\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .tablet\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .tablet\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tablet\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .tablet\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .tablet\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .tablet\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tablet\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .tablet\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .tablet\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .tablet\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .tablet\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .tablet\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .tablet\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .tablet\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tablet\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .tablet\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .tablet\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .tablet\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .tablet\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .tablet\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .tablet\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .tablet\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .tablet\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .tablet\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .tablet\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .tablet\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .tablet\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .tablet\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .tablet\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .tablet\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .tablet\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .tablet\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .tablet\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .tablet\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .tablet\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .tablet\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .tablet\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .tablet\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .tablet\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .tablet\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .tablet\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .tablet\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .tablet\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .tablet\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .tablet\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .tablet\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .tablet\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .tablet\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .tablet\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .tablet\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .tablet\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .tablet\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .tablet\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .tablet\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .tablet\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tablet\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .tablet\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .tablet\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .tablet\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .tablet\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .tablet\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .tablet\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .tablet\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .tablet\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .tablet\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .tablet\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .tablet\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .tablet\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .tablet\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .tablet\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .tablet\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .tablet\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .tablet\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .tablet\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .tablet\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tablet\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .tablet\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .tablet\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .tablet\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .tablet\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .tablet\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .tablet\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .tablet\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .tablet\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .tablet\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .tablet\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .tablet\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .tablet\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .tablet\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .tablet\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .tablet\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .tablet\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .tablet\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .tablet\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .tablet\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .tablet\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .tablet\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .tablet\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .tablet\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .tablet\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .tablet\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .tablet\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .tablet\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .tablet\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .tablet\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .tablet\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .tablet\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .tablet\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .tablet\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .tablet\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .tablet\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .tablet\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .tablet\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .tablet\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .tablet\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .tablet\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .tablet\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .tablet\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .tablet\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .tablet\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .tablet\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .tablet\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .tablet\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .tablet\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .tablet\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .tablet\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .tablet\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .tablet\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .tablet\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .tablet\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .tablet\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .tablet\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .tablet\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .tablet\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .tablet\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .tablet\:u-mt-0{
    margin-top: 0px !important;
  }

  .tablet\:u-mr-0{
    margin-right: 0px !important;
  }

  .tablet\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .tablet\:u-ml-0{
    margin-left: 0px !important;
  }

  .tablet\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .tablet\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .tablet\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .tablet\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .tablet\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .tablet\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .tablet\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .tablet\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .tablet\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .tablet\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .tablet\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .tablet\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .tablet\:u-mt-4{
    margin-top: 1rem !important;
  }

  .tablet\:u-mr-4{
    margin-right: 1rem !important;
  }

  .tablet\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .tablet\:u-ml-4{
    margin-left: 1rem !important;
  }

  .tablet\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .tablet\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .tablet\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .tablet\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .tablet\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .tablet\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .tablet\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .tablet\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .tablet\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .tablet\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .tablet\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .tablet\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .tablet\:u-mt-8{
    margin-top: 2rem !important;
  }

  .tablet\:u-mr-8{
    margin-right: 2rem !important;
  }

  .tablet\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .tablet\:u-ml-8{
    margin-left: 2rem !important;
  }

  .tablet\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .tablet\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .tablet\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .tablet\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .tablet\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .tablet\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .tablet\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .tablet\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .tablet\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .tablet\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .tablet\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .tablet\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .tablet\:u-mt-12{
    margin-top: 3rem !important;
  }

  .tablet\:u-mr-12{
    margin-right: 3rem !important;
  }

  .tablet\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .tablet\:u-ml-12{
    margin-left: 3rem !important;
  }

  .tablet\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .tablet\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .tablet\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .tablet\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .tablet\:u-mt-16{
    margin-top: 4rem !important;
  }

  .tablet\:u-mr-16{
    margin-right: 4rem !important;
  }

  .tablet\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .tablet\:u-ml-16{
    margin-left: 4rem !important;
  }

  .tablet\:u-mt-20{
    margin-top: 5rem !important;
  }

  .tablet\:u-mr-20{
    margin-right: 5rem !important;
  }

  .tablet\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .tablet\:u-ml-20{
    margin-left: 5rem !important;
  }

  .tablet\:u-mt-24{
    margin-top: 6rem !important;
  }

  .tablet\:u-mr-24{
    margin-right: 6rem !important;
  }

  .tablet\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .tablet\:u-ml-24{
    margin-left: 6rem !important;
  }

  .tablet\:u-mt-28{
    margin-top: 7rem !important;
  }

  .tablet\:u-mr-28{
    margin-right: 7rem !important;
  }

  .tablet\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .tablet\:u-ml-28{
    margin-left: 7rem !important;
  }

  .tablet\:u-mt-32{
    margin-top: 8rem !important;
  }

  .tablet\:u-mr-32{
    margin-right: 8rem !important;
  }

  .tablet\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .tablet\:u-ml-32{
    margin-left: 8rem !important;
  }

  .tablet\:u-mt-36{
    margin-top: 9rem !important;
  }

  .tablet\:u-mr-36{
    margin-right: 9rem !important;
  }

  .tablet\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .tablet\:u-ml-36{
    margin-left: 9rem !important;
  }

  .tablet\:u-mt-40{
    margin-top: 10rem !important;
  }

  .tablet\:u-mr-40{
    margin-right: 10rem !important;
  }

  .tablet\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .tablet\:u-ml-40{
    margin-left: 10rem !important;
  }

  .tablet\:u-mt-44{
    margin-top: 11rem !important;
  }

  .tablet\:u-mr-44{
    margin-right: 11rem !important;
  }

  .tablet\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .tablet\:u-ml-44{
    margin-left: 11rem !important;
  }

  .tablet\:u-mt-48{
    margin-top: 12rem !important;
  }

  .tablet\:u-mr-48{
    margin-right: 12rem !important;
  }

  .tablet\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .tablet\:u-ml-48{
    margin-left: 12rem !important;
  }

  .tablet\:u-mt-52{
    margin-top: 13rem !important;
  }

  .tablet\:u-mr-52{
    margin-right: 13rem !important;
  }

  .tablet\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .tablet\:u-ml-52{
    margin-left: 13rem !important;
  }

  .tablet\:u-mt-56{
    margin-top: 14rem !important;
  }

  .tablet\:u-mr-56{
    margin-right: 14rem !important;
  }

  .tablet\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .tablet\:u-ml-56{
    margin-left: 14rem !important;
  }

  .tablet\:u-mt-60{
    margin-top: 15rem !important;
  }

  .tablet\:u-mr-60{
    margin-right: 15rem !important;
  }

  .tablet\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .tablet\:u-ml-60{
    margin-left: 15rem !important;
  }

  .tablet\:u-mt-64{
    margin-top: 16rem !important;
  }

  .tablet\:u-mr-64{
    margin-right: 16rem !important;
  }

  .tablet\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .tablet\:u-ml-64{
    margin-left: 16rem !important;
  }

  .tablet\:u-mt-72{
    margin-top: 18rem !important;
  }

  .tablet\:u-mr-72{
    margin-right: 18rem !important;
  }

  .tablet\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .tablet\:u-ml-72{
    margin-left: 18rem !important;
  }

  .tablet\:u-mt-80{
    margin-top: 20rem !important;
  }

  .tablet\:u-mr-80{
    margin-right: 20rem !important;
  }

  .tablet\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .tablet\:u-ml-80{
    margin-left: 20rem !important;
  }

  .tablet\:u-mt-96{
    margin-top: 24rem !important;
  }

  .tablet\:u-mr-96{
    margin-right: 24rem !important;
  }

  .tablet\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .tablet\:u-ml-96{
    margin-left: 24rem !important;
  }

  .tablet\:u-mt-auto{
    margin-top: auto !important;
  }

  .tablet\:u-mr-auto{
    margin-right: auto !important;
  }

  .tablet\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .tablet\:u-ml-auto{
    margin-left: auto !important;
  }

  .tablet\:u-mt-px{
    margin-top: 1px !important;
  }

  .tablet\:u-mr-px{
    margin-right: 1px !important;
  }

  .tablet\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .tablet\:u-ml-px{
    margin-left: 1px !important;
  }

  .tablet\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .tablet\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .tablet\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .tablet\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .tablet\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .tablet\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .tablet\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .tablet\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .tablet\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .tablet\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .tablet\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .tablet\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .tablet\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .tablet\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .tablet\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .tablet\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .tablet\:u--mt-0{
    margin-top: 0px !important;
  }

  .tablet\:u--mr-0{
    margin-right: 0px !important;
  }

  .tablet\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .tablet\:u--ml-0{
    margin-left: 0px !important;
  }

  .tablet\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .tablet\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .tablet\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .tablet\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .tablet\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .tablet\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .tablet\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .tablet\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .tablet\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .tablet\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .tablet\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .tablet\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .tablet\:u--mt-4{
    margin-top: -1rem !important;
  }

  .tablet\:u--mr-4{
    margin-right: -1rem !important;
  }

  .tablet\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .tablet\:u--ml-4{
    margin-left: -1rem !important;
  }

  .tablet\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .tablet\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .tablet\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .tablet\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .tablet\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .tablet\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .tablet\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .tablet\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .tablet\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .tablet\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .tablet\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .tablet\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .tablet\:u--mt-8{
    margin-top: -2rem !important;
  }

  .tablet\:u--mr-8{
    margin-right: -2rem !important;
  }

  .tablet\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .tablet\:u--ml-8{
    margin-left: -2rem !important;
  }

  .tablet\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .tablet\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .tablet\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .tablet\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .tablet\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .tablet\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .tablet\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .tablet\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .tablet\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .tablet\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .tablet\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .tablet\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .tablet\:u--mt-12{
    margin-top: -3rem !important;
  }

  .tablet\:u--mr-12{
    margin-right: -3rem !important;
  }

  .tablet\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .tablet\:u--ml-12{
    margin-left: -3rem !important;
  }

  .tablet\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .tablet\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .tablet\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .tablet\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .tablet\:u--mt-16{
    margin-top: -4rem !important;
  }

  .tablet\:u--mr-16{
    margin-right: -4rem !important;
  }

  .tablet\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .tablet\:u--ml-16{
    margin-left: -4rem !important;
  }

  .tablet\:u--mt-20{
    margin-top: -5rem !important;
  }

  .tablet\:u--mr-20{
    margin-right: -5rem !important;
  }

  .tablet\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .tablet\:u--ml-20{
    margin-left: -5rem !important;
  }

  .tablet\:u--mt-24{
    margin-top: -6rem !important;
  }

  .tablet\:u--mr-24{
    margin-right: -6rem !important;
  }

  .tablet\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .tablet\:u--ml-24{
    margin-left: -6rem !important;
  }

  .tablet\:u--mt-28{
    margin-top: -7rem !important;
  }

  .tablet\:u--mr-28{
    margin-right: -7rem !important;
  }

  .tablet\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .tablet\:u--ml-28{
    margin-left: -7rem !important;
  }

  .tablet\:u--mt-32{
    margin-top: -8rem !important;
  }

  .tablet\:u--mr-32{
    margin-right: -8rem !important;
  }

  .tablet\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .tablet\:u--ml-32{
    margin-left: -8rem !important;
  }

  .tablet\:u--mt-36{
    margin-top: -9rem !important;
  }

  .tablet\:u--mr-36{
    margin-right: -9rem !important;
  }

  .tablet\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .tablet\:u--ml-36{
    margin-left: -9rem !important;
  }

  .tablet\:u--mt-40{
    margin-top: -10rem !important;
  }

  .tablet\:u--mr-40{
    margin-right: -10rem !important;
  }

  .tablet\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .tablet\:u--ml-40{
    margin-left: -10rem !important;
  }

  .tablet\:u--mt-44{
    margin-top: -11rem !important;
  }

  .tablet\:u--mr-44{
    margin-right: -11rem !important;
  }

  .tablet\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .tablet\:u--ml-44{
    margin-left: -11rem !important;
  }

  .tablet\:u--mt-48{
    margin-top: -12rem !important;
  }

  .tablet\:u--mr-48{
    margin-right: -12rem !important;
  }

  .tablet\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .tablet\:u--ml-48{
    margin-left: -12rem !important;
  }

  .tablet\:u--mt-52{
    margin-top: -13rem !important;
  }

  .tablet\:u--mr-52{
    margin-right: -13rem !important;
  }

  .tablet\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .tablet\:u--ml-52{
    margin-left: -13rem !important;
  }

  .tablet\:u--mt-56{
    margin-top: -14rem !important;
  }

  .tablet\:u--mr-56{
    margin-right: -14rem !important;
  }

  .tablet\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .tablet\:u--ml-56{
    margin-left: -14rem !important;
  }

  .tablet\:u--mt-60{
    margin-top: -15rem !important;
  }

  .tablet\:u--mr-60{
    margin-right: -15rem !important;
  }

  .tablet\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .tablet\:u--ml-60{
    margin-left: -15rem !important;
  }

  .tablet\:u--mt-64{
    margin-top: -16rem !important;
  }

  .tablet\:u--mr-64{
    margin-right: -16rem !important;
  }

  .tablet\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .tablet\:u--ml-64{
    margin-left: -16rem !important;
  }

  .tablet\:u--mt-72{
    margin-top: -18rem !important;
  }

  .tablet\:u--mr-72{
    margin-right: -18rem !important;
  }

  .tablet\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .tablet\:u--ml-72{
    margin-left: -18rem !important;
  }

  .tablet\:u--mt-80{
    margin-top: -20rem !important;
  }

  .tablet\:u--mr-80{
    margin-right: -20rem !important;
  }

  .tablet\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .tablet\:u--ml-80{
    margin-left: -20rem !important;
  }

  .tablet\:u--mt-96{
    margin-top: -24rem !important;
  }

  .tablet\:u--mr-96{
    margin-right: -24rem !important;
  }

  .tablet\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .tablet\:u--ml-96{
    margin-left: -24rem !important;
  }

  .tablet\:u--mt-px{
    margin-top: -1px !important;
  }

  .tablet\:u--mr-px{
    margin-right: -1px !important;
  }

  .tablet\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .tablet\:u--ml-px{
    margin-left: -1px !important;
  }

  .tablet\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .tablet\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .tablet\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .tablet\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .tablet\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .tablet\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .tablet\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .tablet\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .tablet\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .tablet\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .tablet\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .tablet\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .tablet\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .tablet\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .tablet\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .tablet\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .tablet\:u-mt-full{
    margin-top: 100% !important;
  }

  .tablet\:u-mr-full{
    margin-right: 100% !important;
  }

  .tablet\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .tablet\:u-ml-full{
    margin-left: 100% !important;
  }

  .tablet\:u-max-h-0{
    max-height: 0px !important;
  }

  .tablet\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .tablet\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .tablet\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .tablet\:u-max-h-4{
    max-height: 1rem !important;
  }

  .tablet\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .tablet\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .tablet\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .tablet\:u-max-h-8{
    max-height: 2rem !important;
  }

  .tablet\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .tablet\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .tablet\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .tablet\:u-max-h-12{
    max-height: 3rem !important;
  }

  .tablet\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .tablet\:u-max-h-16{
    max-height: 4rem !important;
  }

  .tablet\:u-max-h-20{
    max-height: 5rem !important;
  }

  .tablet\:u-max-h-24{
    max-height: 6rem !important;
  }

  .tablet\:u-max-h-28{
    max-height: 7rem !important;
  }

  .tablet\:u-max-h-32{
    max-height: 8rem !important;
  }

  .tablet\:u-max-h-36{
    max-height: 9rem !important;
  }

  .tablet\:u-max-h-40{
    max-height: 10rem !important;
  }

  .tablet\:u-max-h-44{
    max-height: 11rem !important;
  }

  .tablet\:u-max-h-48{
    max-height: 12rem !important;
  }

  .tablet\:u-max-h-52{
    max-height: 13rem !important;
  }

  .tablet\:u-max-h-56{
    max-height: 14rem !important;
  }

  .tablet\:u-max-h-60{
    max-height: 15rem !important;
  }

  .tablet\:u-max-h-64{
    max-height: 16rem !important;
  }

  .tablet\:u-max-h-72{
    max-height: 18rem !important;
  }

  .tablet\:u-max-h-80{
    max-height: 20rem !important;
  }

  .tablet\:u-max-h-96{
    max-height: 24rem !important;
  }

  .tablet\:u-max-h-px{
    max-height: 1px !important;
  }

  .tablet\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .tablet\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .tablet\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .tablet\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .tablet\:u-max-h-full{
    max-height: 100% !important;
  }

  .tablet\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .tablet\:u-max-w-none{
    max-width: none !important;
  }

  .tablet\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .tablet\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .tablet\:u-max-w-md{
    max-width: 24rem !important;
  }

  .tablet\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .tablet\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .tablet\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .tablet\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .tablet\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .tablet\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .tablet\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .tablet\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .tablet\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .tablet\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .tablet\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .tablet\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .tablet\:u-min-h-none{
    min-height: none !important;
  }

  .tablet\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .tablet\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .tablet\:u-min-h-md{
    min-height: 24rem !important;
  }

  .tablet\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .tablet\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .tablet\:u-min-w-sm{
    min-width: 320px !important;
  }

  .tablet\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .tablet\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .tablet\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .tablet\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .tablet\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .tablet\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .tablet\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .tablet\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .tablet\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .tablet\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .tablet\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .tablet\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .tablet\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .tablet\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .tablet\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .tablet\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .tablet\:u-opacity-0{
    opacity: 0 !important;
  }

  .tablet\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .tablet\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .tablet\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .tablet\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .tablet\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .tablet\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .tablet\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .tablet\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .tablet\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .tablet\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .tablet\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .tablet\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .tablet\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .tablet\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .tablet\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .tablet\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .tablet\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .tablet\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .tablet\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .tablet\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .tablet\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .tablet\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .tablet\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .tablet\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .tablet\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .tablet\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .tablet\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .tablet\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .tablet\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .tablet\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .tablet\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .tablet\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .tablet\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .tablet\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .tablet\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .tablet\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .tablet\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .tablet\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .tablet\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .tablet\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .tablet\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .tablet\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .tablet\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .tablet\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .tablet\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .tablet\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .tablet\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet\:u-overflow-auto{
    overflow: auto !important;
  }

  .tablet\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .tablet\:u-overflow-visible{
    overflow: visible !important;
  }

  .tablet\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .tablet\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .tablet\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .tablet\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .tablet\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .tablet\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .tablet\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .tablet\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .tablet\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .tablet\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .tablet\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .tablet\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .tablet\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .tablet\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .tablet\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .tablet\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .tablet\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .tablet\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .tablet\:u-p-0{
    padding: 0px !important;
  }

  .tablet\:u-p-1{
    padding: 0.25rem !important;
  }

  .tablet\:u-p-2{
    padding: 0.5rem !important;
  }

  .tablet\:u-p-3{
    padding: 0.75rem !important;
  }

  .tablet\:u-p-4{
    padding: 1rem !important;
  }

  .tablet\:u-p-5{
    padding: 1.25rem !important;
  }

  .tablet\:u-p-6{
    padding: 1.5rem !important;
  }

  .tablet\:u-p-7{
    padding: 1.75rem !important;
  }

  .tablet\:u-p-8{
    padding: 2rem !important;
  }

  .tablet\:u-p-9{
    padding: 2.25rem !important;
  }

  .tablet\:u-p-10{
    padding: 2.5rem !important;
  }

  .tablet\:u-p-11{
    padding: 2.75rem !important;
  }

  .tablet\:u-p-12{
    padding: 3rem !important;
  }

  .tablet\:u-p-14{
    padding: 3.5rem !important;
  }

  .tablet\:u-p-16{
    padding: 4rem !important;
  }

  .tablet\:u-p-20{
    padding: 5rem !important;
  }

  .tablet\:u-p-24{
    padding: 6rem !important;
  }

  .tablet\:u-p-28{
    padding: 7rem !important;
  }

  .tablet\:u-p-32{
    padding: 8rem !important;
  }

  .tablet\:u-p-36{
    padding: 9rem !important;
  }

  .tablet\:u-p-40{
    padding: 10rem !important;
  }

  .tablet\:u-p-44{
    padding: 11rem !important;
  }

  .tablet\:u-p-48{
    padding: 12rem !important;
  }

  .tablet\:u-p-52{
    padding: 13rem !important;
  }

  .tablet\:u-p-56{
    padding: 14rem !important;
  }

  .tablet\:u-p-60{
    padding: 15rem !important;
  }

  .tablet\:u-p-64{
    padding: 16rem !important;
  }

  .tablet\:u-p-72{
    padding: 18rem !important;
  }

  .tablet\:u-p-80{
    padding: 20rem !important;
  }

  .tablet\:u-p-96{
    padding: 24rem !important;
  }

  .tablet\:u-p-px{
    padding: 1px !important;
  }

  .tablet\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .tablet\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .tablet\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .tablet\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .tablet\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .tablet\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .tablet\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .tablet\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .tablet\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .tablet\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .tablet\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .tablet\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .tablet\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tablet\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tablet\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .tablet\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .tablet\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tablet\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .tablet\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .tablet\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .tablet\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .tablet\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .tablet\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .tablet\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .tablet\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .tablet\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .tablet\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .tablet\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .tablet\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .tablet\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .tablet\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .tablet\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .tablet\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .tablet\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .tablet\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .tablet\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .tablet\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .tablet\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .tablet\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .tablet\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .tablet\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .tablet\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .tablet\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .tablet\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .tablet\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .tablet\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .tablet\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .tablet\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .tablet\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .tablet\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .tablet\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .tablet\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .tablet\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .tablet\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .tablet\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .tablet\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .tablet\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .tablet\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .tablet\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .tablet\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .tablet\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .tablet\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .tablet\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .tablet\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .tablet\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .tablet\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .tablet\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .tablet\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .tablet\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .tablet\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .tablet\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .tablet\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .tablet\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .tablet\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .tablet\:u-pt-0{
    padding-top: 0px !important;
  }

  .tablet\:u-pr-0{
    padding-right: 0px !important;
  }

  .tablet\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .tablet\:u-pl-0{
    padding-left: 0px !important;
  }

  .tablet\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .tablet\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .tablet\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .tablet\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .tablet\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .tablet\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .tablet\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .tablet\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .tablet\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .tablet\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .tablet\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .tablet\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .tablet\:u-pt-4{
    padding-top: 1rem !important;
  }

  .tablet\:u-pr-4{
    padding-right: 1rem !important;
  }

  .tablet\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .tablet\:u-pl-4{
    padding-left: 1rem !important;
  }

  .tablet\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .tablet\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .tablet\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .tablet\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .tablet\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .tablet\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .tablet\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .tablet\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .tablet\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .tablet\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .tablet\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .tablet\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .tablet\:u-pt-8{
    padding-top: 2rem !important;
  }

  .tablet\:u-pr-8{
    padding-right: 2rem !important;
  }

  .tablet\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .tablet\:u-pl-8{
    padding-left: 2rem !important;
  }

  .tablet\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .tablet\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .tablet\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .tablet\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .tablet\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .tablet\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .tablet\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .tablet\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .tablet\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .tablet\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .tablet\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .tablet\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .tablet\:u-pt-12{
    padding-top: 3rem !important;
  }

  .tablet\:u-pr-12{
    padding-right: 3rem !important;
  }

  .tablet\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .tablet\:u-pl-12{
    padding-left: 3rem !important;
  }

  .tablet\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .tablet\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .tablet\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .tablet\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .tablet\:u-pt-16{
    padding-top: 4rem !important;
  }

  .tablet\:u-pr-16{
    padding-right: 4rem !important;
  }

  .tablet\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .tablet\:u-pl-16{
    padding-left: 4rem !important;
  }

  .tablet\:u-pt-20{
    padding-top: 5rem !important;
  }

  .tablet\:u-pr-20{
    padding-right: 5rem !important;
  }

  .tablet\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .tablet\:u-pl-20{
    padding-left: 5rem !important;
  }

  .tablet\:u-pt-24{
    padding-top: 6rem !important;
  }

  .tablet\:u-pr-24{
    padding-right: 6rem !important;
  }

  .tablet\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .tablet\:u-pl-24{
    padding-left: 6rem !important;
  }

  .tablet\:u-pt-28{
    padding-top: 7rem !important;
  }

  .tablet\:u-pr-28{
    padding-right: 7rem !important;
  }

  .tablet\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .tablet\:u-pl-28{
    padding-left: 7rem !important;
  }

  .tablet\:u-pt-32{
    padding-top: 8rem !important;
  }

  .tablet\:u-pr-32{
    padding-right: 8rem !important;
  }

  .tablet\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .tablet\:u-pl-32{
    padding-left: 8rem !important;
  }

  .tablet\:u-pt-36{
    padding-top: 9rem !important;
  }

  .tablet\:u-pr-36{
    padding-right: 9rem !important;
  }

  .tablet\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .tablet\:u-pl-36{
    padding-left: 9rem !important;
  }

  .tablet\:u-pt-40{
    padding-top: 10rem !important;
  }

  .tablet\:u-pr-40{
    padding-right: 10rem !important;
  }

  .tablet\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .tablet\:u-pl-40{
    padding-left: 10rem !important;
  }

  .tablet\:u-pt-44{
    padding-top: 11rem !important;
  }

  .tablet\:u-pr-44{
    padding-right: 11rem !important;
  }

  .tablet\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .tablet\:u-pl-44{
    padding-left: 11rem !important;
  }

  .tablet\:u-pt-48{
    padding-top: 12rem !important;
  }

  .tablet\:u-pr-48{
    padding-right: 12rem !important;
  }

  .tablet\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .tablet\:u-pl-48{
    padding-left: 12rem !important;
  }

  .tablet\:u-pt-52{
    padding-top: 13rem !important;
  }

  .tablet\:u-pr-52{
    padding-right: 13rem !important;
  }

  .tablet\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .tablet\:u-pl-52{
    padding-left: 13rem !important;
  }

  .tablet\:u-pt-56{
    padding-top: 14rem !important;
  }

  .tablet\:u-pr-56{
    padding-right: 14rem !important;
  }

  .tablet\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .tablet\:u-pl-56{
    padding-left: 14rem !important;
  }

  .tablet\:u-pt-60{
    padding-top: 15rem !important;
  }

  .tablet\:u-pr-60{
    padding-right: 15rem !important;
  }

  .tablet\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .tablet\:u-pl-60{
    padding-left: 15rem !important;
  }

  .tablet\:u-pt-64{
    padding-top: 16rem !important;
  }

  .tablet\:u-pr-64{
    padding-right: 16rem !important;
  }

  .tablet\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .tablet\:u-pl-64{
    padding-left: 16rem !important;
  }

  .tablet\:u-pt-72{
    padding-top: 18rem !important;
  }

  .tablet\:u-pr-72{
    padding-right: 18rem !important;
  }

  .tablet\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .tablet\:u-pl-72{
    padding-left: 18rem !important;
  }

  .tablet\:u-pt-80{
    padding-top: 20rem !important;
  }

  .tablet\:u-pr-80{
    padding-right: 20rem !important;
  }

  .tablet\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .tablet\:u-pl-80{
    padding-left: 20rem !important;
  }

  .tablet\:u-pt-96{
    padding-top: 24rem !important;
  }

  .tablet\:u-pr-96{
    padding-right: 24rem !important;
  }

  .tablet\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .tablet\:u-pl-96{
    padding-left: 24rem !important;
  }

  .tablet\:u-pt-px{
    padding-top: 1px !important;
  }

  .tablet\:u-pr-px{
    padding-right: 1px !important;
  }

  .tablet\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .tablet\:u-pl-px{
    padding-left: 1px !important;
  }

  .tablet\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .tablet\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .tablet\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .tablet\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .tablet\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .tablet\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .tablet\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .tablet\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .tablet\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .tablet\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .tablet\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .tablet\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .tablet\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .tablet\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .tablet\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .tablet\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .tablet\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .tablet\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .tablet\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .tablet\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .tablet\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .tablet\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .tablet\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .tablet\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .tablet\:u-static{
    position: static !important;
  }

  .tablet\:u-fixed{
    position: fixed !important;
  }

  .tablet\:u-absolute{
    position: absolute !important;
  }

  .tablet\:u-relative{
    position: relative !important;
  }

  .tablet\:u-sticky{
    position: sticky !important;
  }

  .tablet\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .tablet\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .tablet\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .tablet\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .tablet\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .tablet\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .tablet\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .tablet\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .tablet\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .tablet\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .tablet\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .tablet\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .tablet\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .tablet\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .tablet\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .tablet\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .tablet\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .tablet\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .tablet\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .tablet\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .tablet\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .tablet\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .tablet\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .tablet\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .tablet\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .tablet\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .tablet\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .tablet\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .tablet\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .tablet\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .tablet\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .tablet\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .tablet\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .tablet\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .tablet\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .tablet\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .tablet\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .tablet\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .tablet\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .tablet\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .tablet\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .tablet\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .tablet\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .tablet\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .tablet\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .tablet\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .tablet\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .tablet\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .tablet\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .tablet\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .tablet\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .tablet\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .tablet\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .tablet\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .tablet\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .tablet\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .tablet\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .tablet\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .tablet\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .tablet\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .tablet\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .tablet\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .tablet\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .tablet\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .tablet\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .tablet\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .tablet\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .tablet\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .tablet\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .tablet\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .tablet\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .tablet\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .tablet\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .tablet\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .tablet\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .tablet\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .tablet\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .tablet\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .tablet\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .tablet\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .tablet\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .tablet\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .tablet\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .tablet\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .tablet\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .tablet\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .tablet\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .tablet\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .tablet\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .tablet\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .tablet\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .tablet\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .tablet\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .tablet\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .tablet\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .tablet\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .tablet\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .tablet\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .tablet\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .tablet\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .tablet\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .tablet\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .tablet\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .tablet\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .tablet\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .tablet\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .tablet\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .tablet\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .tablet\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .tablet\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .tablet\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .tablet\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .tablet\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .tablet\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .tablet\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .tablet\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .tablet\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .tablet\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .tablet\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .tablet\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .tablet\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .tablet\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .tablet\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .tablet\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .tablet\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .tablet\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .tablet\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .tablet\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .tablet\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .tablet\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .tablet\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .tablet\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .tablet\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .tablet\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .tablet\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .tablet\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .tablet\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .tablet\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .tablet\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .tablet\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .tablet\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .tablet\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .tablet\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .tablet\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .tablet\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .tablet\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .tablet\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .tablet\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .tablet\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .tablet\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .tablet\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .tablet\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .tablet\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .tablet\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .tablet\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .tablet\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .tablet\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .tablet\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .tablet\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .tablet\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .tablet\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .tablet\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .tablet\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .tablet\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .tablet\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .tablet\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .tablet\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .tablet\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .tablet\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .tablet\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .tablet\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .tablet\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .tablet\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .tablet\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .tablet\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .tablet\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .tablet\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .tablet\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .tablet\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .tablet\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .tablet\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .tablet\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .tablet\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .tablet\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .tablet\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .tablet\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .tablet\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .tablet\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .tablet\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .tablet\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .tablet\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .tablet\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .tablet\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .tablet\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .tablet\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .tablet\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .tablet\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .tablet\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .tablet\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .tablet\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .tablet\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .tablet\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .tablet\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .tablet\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .tablet\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .tablet\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .tablet\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .tablet\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .tablet\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .tablet\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .tablet\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .tablet\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .tablet\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .tablet\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .tablet\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .tablet\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .tablet\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .tablet\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .tablet\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .tablet\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .tablet\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .tablet\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .tablet\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .tablet\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .tablet\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .tablet\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .tablet\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .tablet\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .tablet\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .tablet\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .tablet\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .tablet\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .tablet\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .tablet\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .tablet\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .tablet\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .tablet\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .tablet\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .tablet\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .tablet\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .tablet\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .tablet\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .tablet\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .tablet\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .tablet\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .tablet\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .tablet\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .tablet\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .tablet\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .tablet\:u-top-0{
    top: 0px !important;
  }

  .tablet\:u-right-0{
    right: 0px !important;
  }

  .tablet\:u-bottom-0{
    bottom: 0px !important;
  }

  .tablet\:u-left-0{
    left: 0px !important;
  }

  .tablet\:u-top-1{
    top: 0.25rem !important;
  }

  .tablet\:u-right-1{
    right: 0.25rem !important;
  }

  .tablet\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .tablet\:u-left-1{
    left: 0.25rem !important;
  }

  .tablet\:u-top-2{
    top: 0.5rem !important;
  }

  .tablet\:u-right-2{
    right: 0.5rem !important;
  }

  .tablet\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .tablet\:u-left-2{
    left: 0.5rem !important;
  }

  .tablet\:u-top-3{
    top: 0.75rem !important;
  }

  .tablet\:u-right-3{
    right: 0.75rem !important;
  }

  .tablet\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .tablet\:u-left-3{
    left: 0.75rem !important;
  }

  .tablet\:u-top-4{
    top: 1rem !important;
  }

  .tablet\:u-right-4{
    right: 1rem !important;
  }

  .tablet\:u-bottom-4{
    bottom: 1rem !important;
  }

  .tablet\:u-left-4{
    left: 1rem !important;
  }

  .tablet\:u-top-5{
    top: 1.25rem !important;
  }

  .tablet\:u-right-5{
    right: 1.25rem !important;
  }

  .tablet\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .tablet\:u-left-5{
    left: 1.25rem !important;
  }

  .tablet\:u-top-6{
    top: 1.5rem !important;
  }

  .tablet\:u-right-6{
    right: 1.5rem !important;
  }

  .tablet\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .tablet\:u-left-6{
    left: 1.5rem !important;
  }

  .tablet\:u-top-7{
    top: 1.75rem !important;
  }

  .tablet\:u-right-7{
    right: 1.75rem !important;
  }

  .tablet\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .tablet\:u-left-7{
    left: 1.75rem !important;
  }

  .tablet\:u-top-8{
    top: 2rem !important;
  }

  .tablet\:u-right-8{
    right: 2rem !important;
  }

  .tablet\:u-bottom-8{
    bottom: 2rem !important;
  }

  .tablet\:u-left-8{
    left: 2rem !important;
  }

  .tablet\:u-top-9{
    top: 2.25rem !important;
  }

  .tablet\:u-right-9{
    right: 2.25rem !important;
  }

  .tablet\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .tablet\:u-left-9{
    left: 2.25rem !important;
  }

  .tablet\:u-top-10{
    top: 2.5rem !important;
  }

  .tablet\:u-right-10{
    right: 2.5rem !important;
  }

  .tablet\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .tablet\:u-left-10{
    left: 2.5rem !important;
  }

  .tablet\:u-top-11{
    top: 2.75rem !important;
  }

  .tablet\:u-right-11{
    right: 2.75rem !important;
  }

  .tablet\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .tablet\:u-left-11{
    left: 2.75rem !important;
  }

  .tablet\:u-top-12{
    top: 3rem !important;
  }

  .tablet\:u-right-12{
    right: 3rem !important;
  }

  .tablet\:u-bottom-12{
    bottom: 3rem !important;
  }

  .tablet\:u-left-12{
    left: 3rem !important;
  }

  .tablet\:u-top-14{
    top: 3.5rem !important;
  }

  .tablet\:u-right-14{
    right: 3.5rem !important;
  }

  .tablet\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .tablet\:u-left-14{
    left: 3.5rem !important;
  }

  .tablet\:u-top-16{
    top: 4rem !important;
  }

  .tablet\:u-right-16{
    right: 4rem !important;
  }

  .tablet\:u-bottom-16{
    bottom: 4rem !important;
  }

  .tablet\:u-left-16{
    left: 4rem !important;
  }

  .tablet\:u-top-20{
    top: 5rem !important;
  }

  .tablet\:u-right-20{
    right: 5rem !important;
  }

  .tablet\:u-bottom-20{
    bottom: 5rem !important;
  }

  .tablet\:u-left-20{
    left: 5rem !important;
  }

  .tablet\:u-top-24{
    top: 6rem !important;
  }

  .tablet\:u-right-24{
    right: 6rem !important;
  }

  .tablet\:u-bottom-24{
    bottom: 6rem !important;
  }

  .tablet\:u-left-24{
    left: 6rem !important;
  }

  .tablet\:u-top-28{
    top: 7rem !important;
  }

  .tablet\:u-right-28{
    right: 7rem !important;
  }

  .tablet\:u-bottom-28{
    bottom: 7rem !important;
  }

  .tablet\:u-left-28{
    left: 7rem !important;
  }

  .tablet\:u-top-32{
    top: 8rem !important;
  }

  .tablet\:u-right-32{
    right: 8rem !important;
  }

  .tablet\:u-bottom-32{
    bottom: 8rem !important;
  }

  .tablet\:u-left-32{
    left: 8rem !important;
  }

  .tablet\:u-top-36{
    top: 9rem !important;
  }

  .tablet\:u-right-36{
    right: 9rem !important;
  }

  .tablet\:u-bottom-36{
    bottom: 9rem !important;
  }

  .tablet\:u-left-36{
    left: 9rem !important;
  }

  .tablet\:u-top-40{
    top: 10rem !important;
  }

  .tablet\:u-right-40{
    right: 10rem !important;
  }

  .tablet\:u-bottom-40{
    bottom: 10rem !important;
  }

  .tablet\:u-left-40{
    left: 10rem !important;
  }

  .tablet\:u-top-44{
    top: 11rem !important;
  }

  .tablet\:u-right-44{
    right: 11rem !important;
  }

  .tablet\:u-bottom-44{
    bottom: 11rem !important;
  }

  .tablet\:u-left-44{
    left: 11rem !important;
  }

  .tablet\:u-top-48{
    top: 12rem !important;
  }

  .tablet\:u-right-48{
    right: 12rem !important;
  }

  .tablet\:u-bottom-48{
    bottom: 12rem !important;
  }

  .tablet\:u-left-48{
    left: 12rem !important;
  }

  .tablet\:u-top-52{
    top: 13rem !important;
  }

  .tablet\:u-right-52{
    right: 13rem !important;
  }

  .tablet\:u-bottom-52{
    bottom: 13rem !important;
  }

  .tablet\:u-left-52{
    left: 13rem !important;
  }

  .tablet\:u-top-56{
    top: 14rem !important;
  }

  .tablet\:u-right-56{
    right: 14rem !important;
  }

  .tablet\:u-bottom-56{
    bottom: 14rem !important;
  }

  .tablet\:u-left-56{
    left: 14rem !important;
  }

  .tablet\:u-top-60{
    top: 15rem !important;
  }

  .tablet\:u-right-60{
    right: 15rem !important;
  }

  .tablet\:u-bottom-60{
    bottom: 15rem !important;
  }

  .tablet\:u-left-60{
    left: 15rem !important;
  }

  .tablet\:u-top-64{
    top: 16rem !important;
  }

  .tablet\:u-right-64{
    right: 16rem !important;
  }

  .tablet\:u-bottom-64{
    bottom: 16rem !important;
  }

  .tablet\:u-left-64{
    left: 16rem !important;
  }

  .tablet\:u-top-72{
    top: 18rem !important;
  }

  .tablet\:u-right-72{
    right: 18rem !important;
  }

  .tablet\:u-bottom-72{
    bottom: 18rem !important;
  }

  .tablet\:u-left-72{
    left: 18rem !important;
  }

  .tablet\:u-top-80{
    top: 20rem !important;
  }

  .tablet\:u-right-80{
    right: 20rem !important;
  }

  .tablet\:u-bottom-80{
    bottom: 20rem !important;
  }

  .tablet\:u-left-80{
    left: 20rem !important;
  }

  .tablet\:u-top-96{
    top: 24rem !important;
  }

  .tablet\:u-right-96{
    right: 24rem !important;
  }

  .tablet\:u-bottom-96{
    bottom: 24rem !important;
  }

  .tablet\:u-left-96{
    left: 24rem !important;
  }

  .tablet\:u-top-auto{
    top: auto !important;
  }

  .tablet\:u-right-auto{
    right: auto !important;
  }

  .tablet\:u-bottom-auto{
    bottom: auto !important;
  }

  .tablet\:u-left-auto{
    left: auto !important;
  }

  .tablet\:u-top-px{
    top: 1px !important;
  }

  .tablet\:u-right-px{
    right: 1px !important;
  }

  .tablet\:u-bottom-px{
    bottom: 1px !important;
  }

  .tablet\:u-left-px{
    left: 1px !important;
  }

  .tablet\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .tablet\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .tablet\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .tablet\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .tablet\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .tablet\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .tablet\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .tablet\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .tablet\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .tablet\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .tablet\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .tablet\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .tablet\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .tablet\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .tablet\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .tablet\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .tablet\:u--top-0{
    top: 0px !important;
  }

  .tablet\:u--right-0{
    right: 0px !important;
  }

  .tablet\:u--bottom-0{
    bottom: 0px !important;
  }

  .tablet\:u--left-0{
    left: 0px !important;
  }

  .tablet\:u--top-1{
    top: -0.25rem !important;
  }

  .tablet\:u--right-1{
    right: -0.25rem !important;
  }

  .tablet\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .tablet\:u--left-1{
    left: -0.25rem !important;
  }

  .tablet\:u--top-2{
    top: -0.5rem !important;
  }

  .tablet\:u--right-2{
    right: -0.5rem !important;
  }

  .tablet\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .tablet\:u--left-2{
    left: -0.5rem !important;
  }

  .tablet\:u--top-3{
    top: -0.75rem !important;
  }

  .tablet\:u--right-3{
    right: -0.75rem !important;
  }

  .tablet\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .tablet\:u--left-3{
    left: -0.75rem !important;
  }

  .tablet\:u--top-4{
    top: -1rem !important;
  }

  .tablet\:u--right-4{
    right: -1rem !important;
  }

  .tablet\:u--bottom-4{
    bottom: -1rem !important;
  }

  .tablet\:u--left-4{
    left: -1rem !important;
  }

  .tablet\:u--top-5{
    top: -1.25rem !important;
  }

  .tablet\:u--right-5{
    right: -1.25rem !important;
  }

  .tablet\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .tablet\:u--left-5{
    left: -1.25rem !important;
  }

  .tablet\:u--top-6{
    top: -1.5rem !important;
  }

  .tablet\:u--right-6{
    right: -1.5rem !important;
  }

  .tablet\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .tablet\:u--left-6{
    left: -1.5rem !important;
  }

  .tablet\:u--top-7{
    top: -1.75rem !important;
  }

  .tablet\:u--right-7{
    right: -1.75rem !important;
  }

  .tablet\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .tablet\:u--left-7{
    left: -1.75rem !important;
  }

  .tablet\:u--top-8{
    top: -2rem !important;
  }

  .tablet\:u--right-8{
    right: -2rem !important;
  }

  .tablet\:u--bottom-8{
    bottom: -2rem !important;
  }

  .tablet\:u--left-8{
    left: -2rem !important;
  }

  .tablet\:u--top-9{
    top: -2.25rem !important;
  }

  .tablet\:u--right-9{
    right: -2.25rem !important;
  }

  .tablet\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .tablet\:u--left-9{
    left: -2.25rem !important;
  }

  .tablet\:u--top-10{
    top: -2.5rem !important;
  }

  .tablet\:u--right-10{
    right: -2.5rem !important;
  }

  .tablet\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .tablet\:u--left-10{
    left: -2.5rem !important;
  }

  .tablet\:u--top-11{
    top: -2.75rem !important;
  }

  .tablet\:u--right-11{
    right: -2.75rem !important;
  }

  .tablet\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .tablet\:u--left-11{
    left: -2.75rem !important;
  }

  .tablet\:u--top-12{
    top: -3rem !important;
  }

  .tablet\:u--right-12{
    right: -3rem !important;
  }

  .tablet\:u--bottom-12{
    bottom: -3rem !important;
  }

  .tablet\:u--left-12{
    left: -3rem !important;
  }

  .tablet\:u--top-14{
    top: -3.5rem !important;
  }

  .tablet\:u--right-14{
    right: -3.5rem !important;
  }

  .tablet\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .tablet\:u--left-14{
    left: -3.5rem !important;
  }

  .tablet\:u--top-16{
    top: -4rem !important;
  }

  .tablet\:u--right-16{
    right: -4rem !important;
  }

  .tablet\:u--bottom-16{
    bottom: -4rem !important;
  }

  .tablet\:u--left-16{
    left: -4rem !important;
  }

  .tablet\:u--top-20{
    top: -5rem !important;
  }

  .tablet\:u--right-20{
    right: -5rem !important;
  }

  .tablet\:u--bottom-20{
    bottom: -5rem !important;
  }

  .tablet\:u--left-20{
    left: -5rem !important;
  }

  .tablet\:u--top-24{
    top: -6rem !important;
  }

  .tablet\:u--right-24{
    right: -6rem !important;
  }

  .tablet\:u--bottom-24{
    bottom: -6rem !important;
  }

  .tablet\:u--left-24{
    left: -6rem !important;
  }

  .tablet\:u--top-28{
    top: -7rem !important;
  }

  .tablet\:u--right-28{
    right: -7rem !important;
  }

  .tablet\:u--bottom-28{
    bottom: -7rem !important;
  }

  .tablet\:u--left-28{
    left: -7rem !important;
  }

  .tablet\:u--top-32{
    top: -8rem !important;
  }

  .tablet\:u--right-32{
    right: -8rem !important;
  }

  .tablet\:u--bottom-32{
    bottom: -8rem !important;
  }

  .tablet\:u--left-32{
    left: -8rem !important;
  }

  .tablet\:u--top-36{
    top: -9rem !important;
  }

  .tablet\:u--right-36{
    right: -9rem !important;
  }

  .tablet\:u--bottom-36{
    bottom: -9rem !important;
  }

  .tablet\:u--left-36{
    left: -9rem !important;
  }

  .tablet\:u--top-40{
    top: -10rem !important;
  }

  .tablet\:u--right-40{
    right: -10rem !important;
  }

  .tablet\:u--bottom-40{
    bottom: -10rem !important;
  }

  .tablet\:u--left-40{
    left: -10rem !important;
  }

  .tablet\:u--top-44{
    top: -11rem !important;
  }

  .tablet\:u--right-44{
    right: -11rem !important;
  }

  .tablet\:u--bottom-44{
    bottom: -11rem !important;
  }

  .tablet\:u--left-44{
    left: -11rem !important;
  }

  .tablet\:u--top-48{
    top: -12rem !important;
  }

  .tablet\:u--right-48{
    right: -12rem !important;
  }

  .tablet\:u--bottom-48{
    bottom: -12rem !important;
  }

  .tablet\:u--left-48{
    left: -12rem !important;
  }

  .tablet\:u--top-52{
    top: -13rem !important;
  }

  .tablet\:u--right-52{
    right: -13rem !important;
  }

  .tablet\:u--bottom-52{
    bottom: -13rem !important;
  }

  .tablet\:u--left-52{
    left: -13rem !important;
  }

  .tablet\:u--top-56{
    top: -14rem !important;
  }

  .tablet\:u--right-56{
    right: -14rem !important;
  }

  .tablet\:u--bottom-56{
    bottom: -14rem !important;
  }

  .tablet\:u--left-56{
    left: -14rem !important;
  }

  .tablet\:u--top-60{
    top: -15rem !important;
  }

  .tablet\:u--right-60{
    right: -15rem !important;
  }

  .tablet\:u--bottom-60{
    bottom: -15rem !important;
  }

  .tablet\:u--left-60{
    left: -15rem !important;
  }

  .tablet\:u--top-64{
    top: -16rem !important;
  }

  .tablet\:u--right-64{
    right: -16rem !important;
  }

  .tablet\:u--bottom-64{
    bottom: -16rem !important;
  }

  .tablet\:u--left-64{
    left: -16rem !important;
  }

  .tablet\:u--top-72{
    top: -18rem !important;
  }

  .tablet\:u--right-72{
    right: -18rem !important;
  }

  .tablet\:u--bottom-72{
    bottom: -18rem !important;
  }

  .tablet\:u--left-72{
    left: -18rem !important;
  }

  .tablet\:u--top-80{
    top: -20rem !important;
  }

  .tablet\:u--right-80{
    right: -20rem !important;
  }

  .tablet\:u--bottom-80{
    bottom: -20rem !important;
  }

  .tablet\:u--left-80{
    left: -20rem !important;
  }

  .tablet\:u--top-96{
    top: -24rem !important;
  }

  .tablet\:u--right-96{
    right: -24rem !important;
  }

  .tablet\:u--bottom-96{
    bottom: -24rem !important;
  }

  .tablet\:u--left-96{
    left: -24rem !important;
  }

  .tablet\:u--top-px{
    top: -1px !important;
  }

  .tablet\:u--right-px{
    right: -1px !important;
  }

  .tablet\:u--bottom-px{
    bottom: -1px !important;
  }

  .tablet\:u--left-px{
    left: -1px !important;
  }

  .tablet\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .tablet\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .tablet\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .tablet\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .tablet\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .tablet\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .tablet\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .tablet\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .tablet\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .tablet\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .tablet\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .tablet\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .tablet\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .tablet\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .tablet\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .tablet\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .tablet\:u-top-1\/2{
    top: 50% !important;
  }

  .tablet\:u-right-1\/2{
    right: 50% !important;
  }

  .tablet\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .tablet\:u-left-1\/2{
    left: 50% !important;
  }

  .tablet\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .tablet\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .tablet\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .tablet\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .tablet\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .tablet\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .tablet\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .tablet\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .tablet\:u-top-1\/4{
    top: 25% !important;
  }

  .tablet\:u-right-1\/4{
    right: 25% !important;
  }

  .tablet\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .tablet\:u-left-1\/4{
    left: 25% !important;
  }

  .tablet\:u-top-2\/4{
    top: 50% !important;
  }

  .tablet\:u-right-2\/4{
    right: 50% !important;
  }

  .tablet\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .tablet\:u-left-2\/4{
    left: 50% !important;
  }

  .tablet\:u-top-3\/4{
    top: 75% !important;
  }

  .tablet\:u-right-3\/4{
    right: 75% !important;
  }

  .tablet\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .tablet\:u-left-3\/4{
    left: 75% !important;
  }

  .tablet\:u-top-full{
    top: 100% !important;
  }

  .tablet\:u-right-full{
    right: 100% !important;
  }

  .tablet\:u-bottom-full{
    bottom: 100% !important;
  }

  .tablet\:u-left-full{
    left: 100% !important;
  }

  .tablet\:u--top-1\/2{
    top: -50% !important;
  }

  .tablet\:u--right-1\/2{
    right: -50% !important;
  }

  .tablet\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .tablet\:u--left-1\/2{
    left: -50% !important;
  }

  .tablet\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .tablet\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .tablet\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .tablet\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .tablet\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .tablet\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .tablet\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .tablet\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .tablet\:u--top-1\/4{
    top: -25% !important;
  }

  .tablet\:u--right-1\/4{
    right: -25% !important;
  }

  .tablet\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .tablet\:u--left-1\/4{
    left: -25% !important;
  }

  .tablet\:u--top-2\/4{
    top: -50% !important;
  }

  .tablet\:u--right-2\/4{
    right: -50% !important;
  }

  .tablet\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .tablet\:u--left-2\/4{
    left: -50% !important;
  }

  .tablet\:u--top-3\/4{
    top: -75% !important;
  }

  .tablet\:u--right-3\/4{
    right: -75% !important;
  }

  .tablet\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .tablet\:u--left-3\/4{
    left: -75% !important;
  }

  .tablet\:u--top-full{
    top: -100% !important;
  }

  .tablet\:u--right-full{
    right: -100% !important;
  }

  .tablet\:u--bottom-full{
    bottom: -100% !important;
  }

  .tablet\:u--left-full{
    left: -100% !important;
  }

  .tablet\:u-resize-none{
    resize: none !important;
  }

  .tablet\:u-resize-y{
    resize: vertical !important;
  }

  .tablet\:u-resize-x{
    resize: horizontal !important;
  }

  .tablet\:u-resize{
    resize: both !important;
  }

  .tablet\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .tablet\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .tablet\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .tablet\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .tablet\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .tablet\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .tablet\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .tablet\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .tablet\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .tablet\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .tablet\:u-fill-current{
    fill: currentColor !important;
  }

  .tablet\:u-stroke-current{
    stroke: currentColor !important;
  }

  .tablet\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .tablet\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .tablet\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .tablet\:u-table-auto{
    table-layout: auto !important;
  }

  .tablet\:u-table-fixed{
    table-layout: fixed !important;
  }

  .tablet\:u-text-left{
    text-align: left !important;
  }

  .tablet\:u-text-center{
    text-align: center !important;
  }

  .tablet\:u-text-right{
    text-align: right !important;
  }

  .tablet\:u-text-justify{
    text-align: justify !important;
  }

  .tablet\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-transparent{
    color: transparent !important;
  }

  .tablet\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .tablet\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .tablet\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .tablet\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .tablet\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .tablet\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .tablet\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .tablet\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .tablet\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .tablet\:u-italic{
    font-style: italic !important;
  }

  .tablet\:u-not-italic{
    font-style: normal !important;
  }

  .tablet\:u-uppercase{
    text-transform: uppercase !important;
  }

  .tablet\:u-lowercase{
    text-transform: lowercase !important;
  }

  .tablet\:u-capitalize{
    text-transform: capitalize !important;
  }

  .tablet\:u-normal-case{
    text-transform: none !important;
  }

  .tablet\:u-underline{
    text-decoration: underline !important;
  }

  .tablet\:u-line-through{
    text-decoration: line-through !important;
  }

  .tablet\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .tablet\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .tablet\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .tablet\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .tablet\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .tablet\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .tablet\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .tablet\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .tablet\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .tablet\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .tablet\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .tablet\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .tablet\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .tablet\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .tablet\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .tablet\:u-ordinal, .tablet\:u-slashed-zero, .tablet\:u-lining-nums, .tablet\:u-oldstyle-nums, .tablet\:u-proportional-nums, .tablet\:u-tabular-nums, .tablet\:u-diagonal-fractions, .tablet\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .tablet\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .tablet\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .tablet\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .tablet\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .tablet\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .tablet\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .tablet\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .tablet\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .tablet\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .tablet\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .tablet\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .tablet\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .tablet\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .tablet\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .tablet\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .tablet\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .tablet\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .tablet\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .tablet\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .tablet\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .tablet\:u-align-top{
    vertical-align: top !important;
  }

  .tablet\:u-align-middle{
    vertical-align: middle !important;
  }

  .tablet\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .tablet\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .tablet\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .tablet\:u-visible{
    visibility: visible !important;
  }

  .tablet\:u-invisible{
    visibility: hidden !important;
  }

  .tablet\:u-whitespace-normal{
    white-space: normal !important;
  }

  .tablet\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .tablet\:u-whitespace-pre{
    white-space: pre !important;
  }

  .tablet\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .tablet\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .tablet\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .tablet\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .tablet\:u-break-all{
    word-break: break-all !important;
  }

  .tablet\:u-w-0{
    width: 0px !important;
  }

  .tablet\:u-w-1{
    width: 0.25rem !important;
  }

  .tablet\:u-w-2{
    width: 0.5rem !important;
  }

  .tablet\:u-w-3{
    width: 0.75rem !important;
  }

  .tablet\:u-w-4{
    width: 1rem !important;
  }

  .tablet\:u-w-5{
    width: 1.25rem !important;
  }

  .tablet\:u-w-6{
    width: 1.5rem !important;
  }

  .tablet\:u-w-7{
    width: 1.75rem !important;
  }

  .tablet\:u-w-8{
    width: 2rem !important;
  }

  .tablet\:u-w-9{
    width: 2.25rem !important;
  }

  .tablet\:u-w-10{
    width: 2.5rem !important;
  }

  .tablet\:u-w-11{
    width: 2.75rem !important;
  }

  .tablet\:u-w-12{
    width: 3rem !important;
  }

  .tablet\:u-w-14{
    width: 3.5rem !important;
  }

  .tablet\:u-w-16{
    width: 4rem !important;
  }

  .tablet\:u-w-20{
    width: 5rem !important;
  }

  .tablet\:u-w-24{
    width: 6rem !important;
  }

  .tablet\:u-w-28{
    width: 7rem !important;
  }

  .tablet\:u-w-32{
    width: 8rem !important;
  }

  .tablet\:u-w-36{
    width: 9rem !important;
  }

  .tablet\:u-w-40{
    width: 10rem !important;
  }

  .tablet\:u-w-44{
    width: 11rem !important;
  }

  .tablet\:u-w-48{
    width: 12rem !important;
  }

  .tablet\:u-w-52{
    width: 13rem !important;
  }

  .tablet\:u-w-56{
    width: 14rem !important;
  }

  .tablet\:u-w-60{
    width: 15rem !important;
  }

  .tablet\:u-w-64{
    width: 16rem !important;
  }

  .tablet\:u-w-72{
    width: 18rem !important;
  }

  .tablet\:u-w-80{
    width: 20rem !important;
  }

  .tablet\:u-w-96{
    width: 24rem !important;
  }

  .tablet\:u-w-auto{
    width: auto !important;
  }

  .tablet\:u-w-px{
    width: 1px !important;
  }

  .tablet\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .tablet\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .tablet\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .tablet\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .tablet\:u-w-1\/2{
    width: 50% !important;
  }

  .tablet\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .tablet\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .tablet\:u-w-1\/4{
    width: 25% !important;
  }

  .tablet\:u-w-2\/4{
    width: 50% !important;
  }

  .tablet\:u-w-3\/4{
    width: 75% !important;
  }

  .tablet\:u-w-1\/5{
    width: 20% !important;
  }

  .tablet\:u-w-2\/5{
    width: 40% !important;
  }

  .tablet\:u-w-3\/5{
    width: 60% !important;
  }

  .tablet\:u-w-4\/5{
    width: 80% !important;
  }

  .tablet\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .tablet\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .tablet\:u-w-3\/6{
    width: 50% !important;
  }

  .tablet\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .tablet\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .tablet\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .tablet\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .tablet\:u-w-3\/12{
    width: 25% !important;
  }

  .tablet\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .tablet\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .tablet\:u-w-6\/12{
    width: 50% !important;
  }

  .tablet\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .tablet\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .tablet\:u-w-9\/12{
    width: 75% !important;
  }

  .tablet\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .tablet\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .tablet\:u-w-full{
    width: 100% !important;
  }

  .tablet\:u-w-screen{
    width: 100vw !important;
  }

  .tablet\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet\:u-z-0{
    z-index: 0 !important;
  }

  .tablet\:u-z-10{
    z-index: 10 !important;
  }

  .tablet\:u-z-20{
    z-index: 20 !important;
  }

  .tablet\:u-z-30{
    z-index: 30 !important;
  }

  .tablet\:u-z-40{
    z-index: 40 !important;
  }

  .tablet\:u-z-50{
    z-index: 50 !important;
  }

  .tablet\:u-z-auto{
    z-index: auto !important;
  }

  .tablet\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .tablet\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .tablet\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .tablet\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .tablet\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .tablet\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .tablet\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .tablet\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .tablet\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .tablet\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .tablet\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .tablet\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .tablet\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .tablet\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .tablet\:u-gap-0{
    gap: 0px !important;
  }

  .tablet\:u-gap-1{
    gap: 0.25rem !important;
  }

  .tablet\:u-gap-2{
    gap: 0.5rem !important;
  }

  .tablet\:u-gap-3{
    gap: 0.75rem !important;
  }

  .tablet\:u-gap-4{
    gap: 1rem !important;
  }

  .tablet\:u-gap-5{
    gap: 1.25rem !important;
  }

  .tablet\:u-gap-6{
    gap: 1.5rem !important;
  }

  .tablet\:u-gap-7{
    gap: 1.75rem !important;
  }

  .tablet\:u-gap-8{
    gap: 2rem !important;
  }

  .tablet\:u-gap-9{
    gap: 2.25rem !important;
  }

  .tablet\:u-gap-10{
    gap: 2.5rem !important;
  }

  .tablet\:u-gap-11{
    gap: 2.75rem !important;
  }

  .tablet\:u-gap-12{
    gap: 3rem !important;
  }

  .tablet\:u-gap-14{
    gap: 3.5rem !important;
  }

  .tablet\:u-gap-16{
    gap: 4rem !important;
  }

  .tablet\:u-gap-20{
    gap: 5rem !important;
  }

  .tablet\:u-gap-24{
    gap: 6rem !important;
  }

  .tablet\:u-gap-28{
    gap: 7rem !important;
  }

  .tablet\:u-gap-32{
    gap: 8rem !important;
  }

  .tablet\:u-gap-36{
    gap: 9rem !important;
  }

  .tablet\:u-gap-40{
    gap: 10rem !important;
  }

  .tablet\:u-gap-44{
    gap: 11rem !important;
  }

  .tablet\:u-gap-48{
    gap: 12rem !important;
  }

  .tablet\:u-gap-52{
    gap: 13rem !important;
  }

  .tablet\:u-gap-56{
    gap: 14rem !important;
  }

  .tablet\:u-gap-60{
    gap: 15rem !important;
  }

  .tablet\:u-gap-64{
    gap: 16rem !important;
  }

  .tablet\:u-gap-72{
    gap: 18rem !important;
  }

  .tablet\:u-gap-80{
    gap: 20rem !important;
  }

  .tablet\:u-gap-96{
    gap: 24rem !important;
  }

  .tablet\:u-gap-px{
    gap: 1px !important;
  }

  .tablet\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .tablet\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .tablet\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .tablet\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .tablet\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .tablet\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .tablet\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .tablet\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .tablet\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .tablet\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .tablet\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .tablet\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .tablet\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .tablet\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .tablet\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .tablet\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .tablet\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .tablet\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .tablet\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .tablet\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .tablet\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .tablet\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .tablet\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .tablet\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .tablet\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .tablet\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .tablet\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .tablet\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .tablet\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .tablet\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .tablet\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .tablet\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .tablet\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .tablet\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .tablet\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .tablet\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .tablet\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .tablet\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .tablet\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .tablet\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .tablet\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .tablet\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .tablet\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .tablet\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .tablet\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .tablet\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .tablet\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .tablet\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .tablet\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .tablet\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .tablet\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .tablet\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .tablet\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .tablet\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .tablet\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .tablet\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .tablet\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .tablet\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .tablet\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .tablet\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .tablet\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .tablet\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .tablet\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .tablet\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .tablet\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .tablet\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .tablet\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .tablet\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .tablet\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .tablet\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .tablet\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .tablet\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .tablet\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .tablet\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .tablet\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .tablet\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .tablet\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .tablet\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .tablet\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .tablet\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .tablet\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .tablet\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .tablet\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .tablet\:u-col-auto{
    grid-column: auto !important;
  }

  .tablet\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .tablet\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .tablet\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .tablet\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .tablet\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .tablet\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .tablet\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .tablet\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .tablet\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .tablet\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .tablet\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .tablet\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .tablet\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .tablet\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .tablet\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .tablet\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .tablet\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .tablet\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .tablet\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .tablet\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .tablet\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .tablet\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .tablet\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .tablet\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .tablet\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .tablet\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .tablet\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .tablet\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .tablet\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .tablet\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .tablet\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .tablet\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .tablet\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .tablet\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .tablet\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .tablet\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .tablet\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .tablet\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .tablet\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .tablet\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .tablet\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .tablet\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .tablet\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .tablet\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .tablet\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .tablet\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .tablet\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .tablet\:u-row-auto{
    grid-row: auto !important;
  }

  .tablet\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .tablet\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .tablet\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .tablet\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .tablet\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .tablet\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .tablet\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .tablet\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .tablet\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .tablet\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .tablet\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .tablet\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .tablet\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .tablet\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .tablet\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .tablet\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .tablet\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .tablet\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .tablet\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .tablet\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .tablet\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .tablet\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .tablet\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .tablet\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .tablet\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .tablet\:u-transform-none{
    transform: none !important;
  }

  .tablet\:u-origin-center{
    transform-origin: center !important;
  }

  .tablet\:u-origin-top{
    transform-origin: top !important;
  }

  .tablet\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .tablet\:u-origin-right{
    transform-origin: right !important;
  }

  .tablet\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .tablet\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .tablet\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .tablet\:u-origin-left{
    transform-origin: left !important;
  }

  .tablet\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .tablet\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .tablet\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .tablet\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .tablet\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .tablet\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .tablet\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .tablet\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .tablet\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .tablet\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .tablet\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .tablet\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .tablet\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .tablet\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .tablet\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .tablet\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .tablet\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .tablet\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .tablet\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .tablet\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .tablet\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .tablet\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .tablet\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .tablet\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .tablet\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .tablet\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .tablet\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .tablet\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .tablet\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .tablet\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .tablet\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .tablet\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .tablet\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .tablet\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .tablet\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .tablet\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .tablet\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .tablet\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .tablet\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .tablet\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .tablet\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .tablet\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .tablet\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .tablet\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .tablet\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .tablet\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .tablet\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .tablet\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .tablet\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .tablet\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .tablet\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .tablet\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .tablet\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .tablet\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .tablet\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .tablet\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .tablet\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .tablet\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .tablet\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .tablet\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .tablet\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .tablet\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .tablet\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .tablet\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .tablet\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .tablet\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .tablet\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .tablet\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .tablet\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .tablet\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .tablet\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .tablet\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .tablet\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .tablet\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .tablet\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .tablet\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .tablet\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .tablet\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .tablet\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .tablet\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .tablet\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .tablet\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .tablet\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .tablet\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .tablet\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .tablet\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .tablet\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .tablet\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .tablet\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .tablet\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .tablet\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .tablet\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .tablet\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .tablet\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .tablet\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .tablet\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .tablet\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .tablet\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .tablet\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .tablet\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .tablet\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .tablet\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .tablet\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .tablet\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .tablet\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .tablet\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .tablet\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .tablet\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .tablet\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .tablet\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .tablet\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .tablet\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .tablet\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .tablet\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .tablet\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .tablet\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .tablet\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .tablet\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .tablet\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .tablet\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .tablet\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .tablet\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .tablet\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .tablet\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .tablet\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .tablet\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .tablet\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .tablet\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .tablet\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .tablet\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .tablet\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .tablet\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .tablet\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .tablet\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .tablet\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .tablet\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .tablet\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .tablet\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .tablet\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .tablet\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .tablet\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .tablet\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .tablet\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .tablet\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .tablet\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .tablet\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .tablet\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .tablet\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .tablet\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .tablet\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .tablet\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .tablet\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .tablet\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .tablet\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .tablet\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .tablet\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .tablet\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .tablet\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .tablet\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .tablet\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .tablet\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .tablet\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .tablet\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .tablet\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .tablet\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .tablet\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .tablet\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .tablet\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .tablet\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .tablet\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .tablet\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .tablet\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .tablet\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .tablet\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .tablet\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .tablet\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .tablet\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .tablet\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .tablet\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .tablet\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .tablet\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .tablet\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .tablet\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .tablet\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .tablet\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .tablet\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .tablet\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .tablet\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .tablet\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .tablet\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .tablet\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .tablet\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .tablet\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .tablet\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .tablet\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .tablet\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .tablet\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .tablet\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .tablet\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .tablet\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .tablet\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .tablet\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .tablet\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .tablet\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .tablet\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .tablet\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .tablet\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .tablet\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .tablet\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .tablet\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .tablet\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .tablet\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .tablet\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .tablet\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .tablet\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .tablet\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .tablet\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .tablet\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .tablet\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .tablet\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .tablet\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .tablet\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .tablet\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .tablet\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .tablet\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .tablet\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .tablet\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .tablet\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .tablet\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .tablet\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .tablet\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .tablet\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .tablet\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .tablet\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .tablet\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .tablet\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .tablet\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .tablet\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .tablet\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .tablet\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .tablet\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .tablet\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .tablet\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .tablet\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .tablet\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .tablet\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .tablet\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .tablet\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .tablet\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .tablet\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .tablet\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .tablet\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .tablet\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .tablet\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .tablet\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .tablet\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .tablet\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .tablet\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .tablet\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .tablet\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .tablet\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .tablet\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .tablet\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .tablet\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .tablet\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .tablet\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .tablet\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .tablet\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .tablet\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .tablet\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .tablet\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .tablet\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .tablet\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .tablet\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .tablet\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .tablet\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .tablet\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .tablet\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .tablet\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .tablet\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .tablet\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .tablet\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .tablet\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .tablet\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .tablet\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .tablet\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .tablet\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .tablet\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .tablet\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .tablet\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .tablet\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .tablet\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .tablet\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .tablet\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .tablet\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .tablet\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .tablet\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .tablet\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .tablet\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .tablet\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .tablet\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .tablet\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .tablet\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .tablet\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .tablet\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .tablet\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .tablet\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .tablet\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .tablet\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .tablet\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .tablet\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .tablet\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .tablet\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .tablet\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .tablet\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .tablet\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .tablet\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .tablet\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .tablet\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .tablet\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .tablet\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .tablet\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .tablet\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .tablet\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .tablet\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .tablet\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .tablet\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .tablet\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .tablet\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .tablet\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .tablet\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .tablet\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .tablet\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .tablet\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .tablet\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .tablet\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .tablet\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .tablet\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .tablet\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .tablet\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .tablet\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .tablet\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .tablet\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .tablet\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .tablet\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .tablet\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .tablet\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .tablet\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .tablet\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .tablet\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .tablet\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .tablet\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .tablet\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .tablet\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .tablet\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .tablet\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .tablet\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .tablet\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .tablet\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .tablet\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .tablet\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .tablet\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .tablet\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .tablet\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .tablet\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .tablet\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .tablet\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .tablet\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .tablet\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .tablet\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .tablet\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .tablet\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .tablet\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .tablet\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .tablet\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .tablet\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .tablet\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .tablet\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .tablet\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .tablet\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .tablet\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .tablet\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .tablet\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .tablet\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .tablet\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .tablet\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .tablet\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .tablet\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .tablet\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .tablet\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .tablet\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .tablet\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .tablet\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .tablet\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .tablet\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .tablet\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .tablet\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .tablet\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .tablet\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .tablet\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .tablet\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .tablet\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .tablet\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .tablet\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .tablet\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .tablet\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .tablet\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .tablet\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .tablet\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .tablet\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .tablet\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .tablet\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .tablet\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .tablet\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .tablet\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .tablet\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .tablet\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .tablet\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .tablet\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .tablet\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .tablet\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .tablet\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .tablet\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .tablet\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .tablet\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .tablet\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .tablet\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .tablet\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .tablet\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .tablet\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .tablet\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .tablet\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .tablet\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .tablet\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .tablet\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .tablet\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .tablet\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .tablet\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .tablet\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .tablet\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .tablet\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .tablet\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .tablet\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .tablet\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .tablet\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .tablet\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .tablet\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .tablet\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .tablet\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .tablet\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .tablet\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .tablet\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .tablet\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .tablet\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .tablet\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .tablet\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .tablet\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .tablet\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .tablet\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .tablet\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .tablet\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .tablet\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .tablet\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .tablet\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .tablet\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .tablet\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .tablet\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .tablet\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .tablet\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .tablet\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .tablet\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .tablet\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .tablet\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .tablet\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .tablet\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .tablet\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .tablet\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .tablet\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .tablet\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .tablet\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .tablet\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .tablet\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .tablet\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .tablet\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .tablet\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .tablet\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .tablet\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .tablet\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .tablet\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .tablet\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .tablet\:u-transition-none{
    transition-property: none !important;
  }

  .tablet\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .tablet\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .tablet\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .tablet\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .tablet\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .tablet\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .tablet\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .tablet\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .tablet\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .tablet\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .tablet\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .tablet\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .tablet\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .tablet\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .tablet\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .tablet\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .tablet\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .tablet\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .tablet\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .tablet\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .tablet\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tablet\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .tablet\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}

@media (min-width: 900px){
  .tablet-large\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .tablet-large\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .tablet-large\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .tablet-large\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .tablet-large\:u-container{
      max-width: 1120px;
    }
  }

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

  .tablet-large\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .tablet-large\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .tablet-large\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .tablet-large\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .tablet-large\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-large\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-large\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-large\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-large\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-large\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-large\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-large\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-large\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .tablet-large\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .tablet-large\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .tablet-large\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .tablet-large\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .tablet-large\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .tablet-large\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .tablet-large\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .tablet-large\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .tablet-large\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .tablet-large\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .tablet-large\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .tablet-large\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .tablet-large\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .tablet-large\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .tablet-large\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .tablet-large\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .tablet-large\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .tablet-large\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .tablet-large\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .tablet-large\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .tablet-large\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .tablet-large\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .tablet-large\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .tablet-large\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .tablet-large\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .tablet-large\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet-large\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet-large\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet-large\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet-large\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .tablet-large\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .tablet-large\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .tablet-large\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .tablet-large\:u-bg-local{
    background-attachment: local !important;
  }

  .tablet-large\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .tablet-large\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .tablet-large\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .tablet-large\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .tablet-large\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .tablet-large\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-transparent{
    background-color: transparent !important;
  }

  .tablet-large\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .tablet-large\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .tablet-large\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .tablet-large\:u-bg-none{
    background-image: none !important;
  }

  .tablet-large\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .tablet-large\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-large\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-large\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-large\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-large\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-large\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-large\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-large\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-large\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-large\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-large\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-large\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-large\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-large\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-large\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-large\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-large\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-large\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-large\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-large\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-large\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-large\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-large\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-large\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-large\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-large\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-large\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-large\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-large\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-large\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-large\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-large\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-large\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-large\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-large\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-large\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-large\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .tablet-large\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .tablet-large\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-large\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .tablet-large\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-large\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-large\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-large\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-large\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-large\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet-large\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet-large\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet-large\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet-large\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet-large\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet-large\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet-large\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .tablet-large\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet-large\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet-large\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet-large\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet-large\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet-large\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .tablet-large\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .tablet-large\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet-large\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-large\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-large\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-large\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-large\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-large\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-large\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-large\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-large\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-large\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-large\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-large\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-large\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .tablet-large\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .tablet-large\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-large\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .tablet-large\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-large\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-large\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-large\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-large\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-large\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet-large\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet-large\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet-large\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet-large\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet-large\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet-large\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet-large\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .tablet-large\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet-large\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet-large\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet-large\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet-large\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet-large\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .tablet-large\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .tablet-large\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet-large\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-large\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-large\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-large\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-large\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-large\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-large\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .tablet-large\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .tablet-large\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .tablet-large\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .tablet-large\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .tablet-large\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .tablet-large\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .tablet-large\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .tablet-large\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .tablet-large\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .tablet-large\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .tablet-large\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .tablet-large\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .tablet-large\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .tablet-large\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .tablet-large\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .tablet-large\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .tablet-large\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .tablet-large\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .tablet-large\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .tablet-large\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .tablet-large\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .tablet-large\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .tablet-large\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .tablet-large\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .tablet-large\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .tablet-large\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .tablet-large\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .tablet-large\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .tablet-large\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .tablet-large\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .tablet-large\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .tablet-large\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .tablet-large\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .tablet-large\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .tablet-large\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .tablet-large\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-large\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-large\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-large\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-large\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-large\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-large\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-large\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-large\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-large\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-large\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-large\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-large\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-large\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-large\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-large\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .tablet-large\:u-bg-bottom{
    background-position: bottom !important;
  }

  .tablet-large\:u-bg-center{
    background-position: center !important;
  }

  .tablet-large\:u-bg-left{
    background-position: left !important;
  }

  .tablet-large\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .tablet-large\:u-bg-left-top{
    background-position: left top !important;
  }

  .tablet-large\:u-bg-right{
    background-position: right !important;
  }

  .tablet-large\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .tablet-large\:u-bg-right-top{
    background-position: right top !important;
  }

  .tablet-large\:u-bg-top{
    background-position: top !important;
  }

  .tablet-large\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .tablet-large\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .tablet-large\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .tablet-large\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .tablet-large\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .tablet-large\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .tablet-large\:u-bg-auto{
    background-size: auto !important;
  }

  .tablet-large\:u-bg-cover{
    background-size: cover !important;
  }

  .tablet-large\:u-bg-contain{
    background-size: contain !important;
  }

  .tablet-large\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .tablet-large\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .tablet-large\:u-border-separate{
    border-collapse: separate !important;
  }

  .tablet-large\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-transparent{
    border-color: transparent !important;
  }

  .tablet-large\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .tablet-large\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .tablet-large\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .tablet-large\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .tablet-large\:u-rounded-none{
    border-radius: 0 !important;
  }

  .tablet-large\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .tablet-large\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .tablet-large\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .tablet-large\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .tablet-large\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .tablet-large\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .tablet-large\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .tablet-large\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .tablet-large\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .tablet-large\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .tablet-large\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .tablet-large\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .tablet-large\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .tablet-large\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .tablet-large\:u-border-solid{
    border-style: solid !important;
  }

  .tablet-large\:u-border-dashed{
    border-style: dashed !important;
  }

  .tablet-large\:u-border-dotted{
    border-style: dotted !important;
  }

  .tablet-large\:u-border-double{
    border-style: double !important;
  }

  .tablet-large\:u-border-none{
    border-style: none !important;
  }

  .tablet-large\:u-border-0{
    border-width: 0px !important;
  }

  .tablet-large\:u-border-2{
    border-width: 2px !important;
  }

  .tablet-large\:u-border-4{
    border-width: 4px !important;
  }

  .tablet-large\:u-border-8{
    border-width: 8px !important;
  }

  .tablet-large\:u-border{
    border-width: 1px !important;
  }

  .tablet-large\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .tablet-large\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .tablet-large\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .tablet-large\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .tablet-large\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .tablet-large\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .tablet-large\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .tablet-large\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .tablet-large\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .tablet-large\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .tablet-large\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .tablet-large\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .tablet-large\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .tablet-large\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .tablet-large\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .tablet-large\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .tablet-large\:u-border-t{
    border-top-width: 1px !important;
  }

  .tablet-large\:u-border-r{
    border-right-width: 1px !important;
  }

  .tablet-large\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .tablet-large\:u-border-l{
    border-left-width: 1px !important;
  }

  .tablet-large\:u-box-border{
    box-sizing: border-box !important;
  }

  .tablet-large\:u-box-content{
    box-sizing: content-box !important;
  }

  .tablet-large\:u-cursor-auto{
    cursor: auto !important;
  }

  .tablet-large\:u-cursor-default{
    cursor: default !important;
  }

  .tablet-large\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .tablet-large\:u-cursor-wait{
    cursor: wait !important;
  }

  .tablet-large\:u-cursor-text{
    cursor: text !important;
  }

  .tablet-large\:u-cursor-move{
    cursor: move !important;
  }

  .tablet-large\:u-cursor-help{
    cursor: help !important;
  }

  .tablet-large\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .tablet-large\:u-block{
    display: block !important;
  }

  .tablet-large\:u-inline-block{
    display: inline-block !important;
  }

  .tablet-large\:u-inline{
    display: inline !important;
  }

  .tablet-large\:u-flex{
    display: flex !important;
  }

  .tablet-large\:u-inline-flex{
    display: inline-flex !important;
  }

  .tablet-large\:u-table{
    display: table !important;
  }

  .tablet-large\:u-table-caption{
    display: table-caption !important;
  }

  .tablet-large\:u-table-cell{
    display: table-cell !important;
  }

  .tablet-large\:u-table-column{
    display: table-column !important;
  }

  .tablet-large\:u-table-column-group{
    display: table-column-group !important;
  }

  .tablet-large\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .tablet-large\:u-table-header-group{
    display: table-header-group !important;
  }

  .tablet-large\:u-table-row-group{
    display: table-row-group !important;
  }

  .tablet-large\:u-table-row{
    display: table-row !important;
  }

  .tablet-large\:u-flow-root{
    display: flow-root !important;
  }

  .tablet-large\:u-grid{
    display: grid !important;
  }

  .tablet-large\:u-inline-grid{
    display: inline-grid !important;
  }

  .tablet-large\:u-contents{
    display: contents !important;
  }

  .tablet-large\:u-hidden{
    display: none !important;
  }

  .tablet-large\:u-flex-row{
    flex-direction: row !important;
  }

  .tablet-large\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .tablet-large\:u-flex-col{
    flex-direction: column !important;
  }

  .tablet-large\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .tablet-large\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .tablet-large\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .tablet-large\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .tablet-large\:u-place-items-auto{
    place-items: auto !important;
  }

  .tablet-large\:u-place-items-start{
    place-items: start !important;
  }

  .tablet-large\:u-place-items-end{
    place-items: end !important;
  }

  .tablet-large\:u-place-items-center{
    place-items: center !important;
  }

  .tablet-large\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .tablet-large\:u-place-content-center{
    place-content: center !important;
  }

  .tablet-large\:u-place-content-start{
    place-content: start !important;
  }

  .tablet-large\:u-place-content-end{
    place-content: end !important;
  }

  .tablet-large\:u-place-content-between{
    place-content: space-between !important;
  }

  .tablet-large\:u-place-content-around{
    place-content: space-around !important;
  }

  .tablet-large\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .tablet-large\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .tablet-large\:u-place-self-auto{
    place-self: auto !important;
  }

  .tablet-large\:u-place-self-start{
    place-self: start !important;
  }

  .tablet-large\:u-place-self-end{
    place-self: end !important;
  }

  .tablet-large\:u-place-self-center{
    place-self: center !important;
  }

  .tablet-large\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .tablet-large\:u-items-start{
    align-items: flex-start !important;
  }

  .tablet-large\:u-items-end{
    align-items: flex-end !important;
  }

  .tablet-large\:u-items-center{
    align-items: center !important;
  }

  .tablet-large\:u-items-baseline{
    align-items: baseline !important;
  }

  .tablet-large\:u-items-stretch{
    align-items: stretch !important;
  }

  .tablet-large\:u-content-center{
    align-content: center !important;
  }

  .tablet-large\:u-content-start{
    align-content: flex-start !important;
  }

  .tablet-large\:u-content-end{
    align-content: flex-end !important;
  }

  .tablet-large\:u-content-between{
    align-content: space-between !important;
  }

  .tablet-large\:u-content-around{
    align-content: space-around !important;
  }

  .tablet-large\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .tablet-large\:u-self-auto{
    align-self: auto !important;
  }

  .tablet-large\:u-self-start{
    align-self: flex-start !important;
  }

  .tablet-large\:u-self-end{
    align-self: flex-end !important;
  }

  .tablet-large\:u-self-center{
    align-self: center !important;
  }

  .tablet-large\:u-self-stretch{
    align-self: stretch !important;
  }

  .tablet-large\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .tablet-large\:u-justify-items-start{
    justify-items: start !important;
  }

  .tablet-large\:u-justify-items-end{
    justify-items: end !important;
  }

  .tablet-large\:u-justify-items-center{
    justify-items: center !important;
  }

  .tablet-large\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .tablet-large\:u-justify-start{
    justify-content: flex-start !important;
  }

  .tablet-large\:u-justify-end{
    justify-content: flex-end !important;
  }

  .tablet-large\:u-justify-center{
    justify-content: center !important;
  }

  .tablet-large\:u-justify-between{
    justify-content: space-between !important;
  }

  .tablet-large\:u-justify-around{
    justify-content: space-around !important;
  }

  .tablet-large\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .tablet-large\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .tablet-large\:u-justify-self-start{
    justify-self: start !important;
  }

  .tablet-large\:u-justify-self-end{
    justify-self: end !important;
  }

  .tablet-large\:u-justify-self-center{
    justify-self: center !important;
  }

  .tablet-large\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .tablet-large\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .tablet-large\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .tablet-large\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .tablet-large\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .tablet-large\:u-flex-none{
    flex: none !important;
  }

  .tablet-large\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .tablet-large\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .tablet-large\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .tablet-large\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .tablet-large\:u-order-1{
    order: 1 !important;
  }

  .tablet-large\:u-order-2{
    order: 2 !important;
  }

  .tablet-large\:u-order-3{
    order: 3 !important;
  }

  .tablet-large\:u-order-4{
    order: 4 !important;
  }

  .tablet-large\:u-order-5{
    order: 5 !important;
  }

  .tablet-large\:u-order-6{
    order: 6 !important;
  }

  .tablet-large\:u-order-7{
    order: 7 !important;
  }

  .tablet-large\:u-order-8{
    order: 8 !important;
  }

  .tablet-large\:u-order-9{
    order: 9 !important;
  }

  .tablet-large\:u-order-10{
    order: 10 !important;
  }

  .tablet-large\:u-order-11{
    order: 11 !important;
  }

  .tablet-large\:u-order-12{
    order: 12 !important;
  }

  .tablet-large\:u-order-first{
    order: -9999 !important;
  }

  .tablet-large\:u-order-last{
    order: 9999 !important;
  }

  .tablet-large\:u-order-none{
    order: 0 !important;
  }

  .tablet-large\:u-float-right{
    float: right !important;
  }

  .tablet-large\:u-float-left{
    float: left !important;
  }

  .tablet-large\:u-float-none{
    float: none !important;
  }

  .tablet-large\:u-clear-left{
    clear: left !important;
  }

  .tablet-large\:u-clear-right{
    clear: right !important;
  }

  .tablet-large\:u-clear-both{
    clear: both !important;
  }

  .tablet-large\:u-clear-none{
    clear: none !important;
  }

  .tablet-large\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .tablet-large\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .tablet-large\:u-font-thin{
    font-weight: 100 !important;
  }

  .tablet-large\:u-font-extralight{
    font-weight: 200 !important;
  }

  .tablet-large\:u-font-light{
    font-weight: 300 !important;
  }

  .tablet-large\:u-font-normal{
    font-weight: 400 !important;
  }

  .tablet-large\:u-font-medium{
    font-weight: 500 !important;
  }

  .tablet-large\:u-font-semibold{
    font-weight: 600 !important;
  }

  .tablet-large\:u-font-bold{
    font-weight: 700 !important;
  }

  .tablet-large\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .tablet-large\:u-font-black{
    font-weight: 900 !important;
  }

  .tablet-large\:u-h-0{
    height: 0px !important;
  }

  .tablet-large\:u-h-1{
    height: 0.25rem !important;
  }

  .tablet-large\:u-h-2{
    height: 0.5rem !important;
  }

  .tablet-large\:u-h-3{
    height: 0.75rem !important;
  }

  .tablet-large\:u-h-4{
    height: 1rem !important;
  }

  .tablet-large\:u-h-5{
    height: 1.25rem !important;
  }

  .tablet-large\:u-h-6{
    height: 1.5rem !important;
  }

  .tablet-large\:u-h-7{
    height: 1.75rem !important;
  }

  .tablet-large\:u-h-8{
    height: 2rem !important;
  }

  .tablet-large\:u-h-9{
    height: 2.25rem !important;
  }

  .tablet-large\:u-h-10{
    height: 2.5rem !important;
  }

  .tablet-large\:u-h-11{
    height: 2.75rem !important;
  }

  .tablet-large\:u-h-12{
    height: 3rem !important;
  }

  .tablet-large\:u-h-14{
    height: 3.5rem !important;
  }

  .tablet-large\:u-h-16{
    height: 4rem !important;
  }

  .tablet-large\:u-h-20{
    height: 5rem !important;
  }

  .tablet-large\:u-h-24{
    height: 6rem !important;
  }

  .tablet-large\:u-h-28{
    height: 7rem !important;
  }

  .tablet-large\:u-h-32{
    height: 8rem !important;
  }

  .tablet-large\:u-h-36{
    height: 9rem !important;
  }

  .tablet-large\:u-h-40{
    height: 10rem !important;
  }

  .tablet-large\:u-h-44{
    height: 11rem !important;
  }

  .tablet-large\:u-h-48{
    height: 12rem !important;
  }

  .tablet-large\:u-h-52{
    height: 13rem !important;
  }

  .tablet-large\:u-h-56{
    height: 14rem !important;
  }

  .tablet-large\:u-h-60{
    height: 15rem !important;
  }

  .tablet-large\:u-h-64{
    height: 16rem !important;
  }

  .tablet-large\:u-h-72{
    height: 18rem !important;
  }

  .tablet-large\:u-h-80{
    height: 20rem !important;
  }

  .tablet-large\:u-h-96{
    height: 24rem !important;
  }

  .tablet-large\:u-h-auto{
    height: auto !important;
  }

  .tablet-large\:u-h-px{
    height: 1px !important;
  }

  .tablet-large\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .tablet-large\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .tablet-large\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .tablet-large\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .tablet-large\:u-h-1\/2{
    height: 50% !important;
  }

  .tablet-large\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .tablet-large\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .tablet-large\:u-h-1\/4{
    height: 25% !important;
  }

  .tablet-large\:u-h-2\/4{
    height: 50% !important;
  }

  .tablet-large\:u-h-3\/4{
    height: 75% !important;
  }

  .tablet-large\:u-h-1\/5{
    height: 20% !important;
  }

  .tablet-large\:u-h-2\/5{
    height: 40% !important;
  }

  .tablet-large\:u-h-3\/5{
    height: 60% !important;
  }

  .tablet-large\:u-h-4\/5{
    height: 80% !important;
  }

  .tablet-large\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .tablet-large\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .tablet-large\:u-h-3\/6{
    height: 50% !important;
  }

  .tablet-large\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .tablet-large\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .tablet-large\:u-h-full{
    height: 100% !important;
  }

  .tablet-large\:u-h-screen{
    height: 100vh !important;
  }

  .tablet-large\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .tablet-large\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .tablet-large\:u-text-base{
    font-size: 1rem !important;
  }

  .tablet-large\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .tablet-large\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .tablet-large\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .tablet-large\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .tablet-large\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .tablet-large\:u-text-5xl{
    font-size: 3rem !important;
  }

  .tablet-large\:u-text-6xl{
    font-size: 4rem !important;
  }

  .tablet-large\:u-text-7xl{
    font-size: 5rem !important;
  }

  .tablet-large\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .tablet-large\:u-leading-3{
    line-height: .75rem !important;
  }

  .tablet-large\:u-leading-4{
    line-height: 1rem !important;
  }

  .tablet-large\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .tablet-large\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .tablet-large\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .tablet-large\:u-leading-8{
    line-height: 2rem !important;
  }

  .tablet-large\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .tablet-large\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .tablet-large\:u-leading-none{
    line-height: 1 !important;
  }

  .tablet-large\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .tablet-large\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .tablet-large\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .tablet-large\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .tablet-large\:u-leading-loose{
    line-height: 2 !important;
  }

  .tablet-large\:u-list-inside{
    list-style-position: inside !important;
  }

  .tablet-large\:u-list-outside{
    list-style-position: outside !important;
  }

  .tablet-large\:u-list-none{
    list-style-type: none !important;
  }

  .tablet-large\:u-list-disc{
    list-style-type: disc !important;
  }

  .tablet-large\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .tablet-large\:u-m-0{
    margin: 0px !important;
  }

  .tablet-large\:u-m-1{
    margin: 0.25rem !important;
  }

  .tablet-large\:u-m-2{
    margin: 0.5rem !important;
  }

  .tablet-large\:u-m-3{
    margin: 0.75rem !important;
  }

  .tablet-large\:u-m-4{
    margin: 1rem !important;
  }

  .tablet-large\:u-m-5{
    margin: 1.25rem !important;
  }

  .tablet-large\:u-m-6{
    margin: 1.5rem !important;
  }

  .tablet-large\:u-m-7{
    margin: 1.75rem !important;
  }

  .tablet-large\:u-m-8{
    margin: 2rem !important;
  }

  .tablet-large\:u-m-9{
    margin: 2.25rem !important;
  }

  .tablet-large\:u-m-10{
    margin: 2.5rem !important;
  }

  .tablet-large\:u-m-11{
    margin: 2.75rem !important;
  }

  .tablet-large\:u-m-12{
    margin: 3rem !important;
  }

  .tablet-large\:u-m-14{
    margin: 3.5rem !important;
  }

  .tablet-large\:u-m-16{
    margin: 4rem !important;
  }

  .tablet-large\:u-m-20{
    margin: 5rem !important;
  }

  .tablet-large\:u-m-24{
    margin: 6rem !important;
  }

  .tablet-large\:u-m-28{
    margin: 7rem !important;
  }

  .tablet-large\:u-m-32{
    margin: 8rem !important;
  }

  .tablet-large\:u-m-36{
    margin: 9rem !important;
  }

  .tablet-large\:u-m-40{
    margin: 10rem !important;
  }

  .tablet-large\:u-m-44{
    margin: 11rem !important;
  }

  .tablet-large\:u-m-48{
    margin: 12rem !important;
  }

  .tablet-large\:u-m-52{
    margin: 13rem !important;
  }

  .tablet-large\:u-m-56{
    margin: 14rem !important;
  }

  .tablet-large\:u-m-60{
    margin: 15rem !important;
  }

  .tablet-large\:u-m-64{
    margin: 16rem !important;
  }

  .tablet-large\:u-m-72{
    margin: 18rem !important;
  }

  .tablet-large\:u-m-80{
    margin: 20rem !important;
  }

  .tablet-large\:u-m-96{
    margin: 24rem !important;
  }

  .tablet-large\:u-m-auto{
    margin: auto !important;
  }

  .tablet-large\:u-m-px{
    margin: 1px !important;
  }

  .tablet-large\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .tablet-large\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .tablet-large\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .tablet-large\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .tablet-large\:u--m-0{
    margin: 0px !important;
  }

  .tablet-large\:u--m-1{
    margin: -0.25rem !important;
  }

  .tablet-large\:u--m-2{
    margin: -0.5rem !important;
  }

  .tablet-large\:u--m-3{
    margin: -0.75rem !important;
  }

  .tablet-large\:u--m-4{
    margin: -1rem !important;
  }

  .tablet-large\:u--m-5{
    margin: -1.25rem !important;
  }

  .tablet-large\:u--m-6{
    margin: -1.5rem !important;
  }

  .tablet-large\:u--m-7{
    margin: -1.75rem !important;
  }

  .tablet-large\:u--m-8{
    margin: -2rem !important;
  }

  .tablet-large\:u--m-9{
    margin: -2.25rem !important;
  }

  .tablet-large\:u--m-10{
    margin: -2.5rem !important;
  }

  .tablet-large\:u--m-11{
    margin: -2.75rem !important;
  }

  .tablet-large\:u--m-12{
    margin: -3rem !important;
  }

  .tablet-large\:u--m-14{
    margin: -3.5rem !important;
  }

  .tablet-large\:u--m-16{
    margin: -4rem !important;
  }

  .tablet-large\:u--m-20{
    margin: -5rem !important;
  }

  .tablet-large\:u--m-24{
    margin: -6rem !important;
  }

  .tablet-large\:u--m-28{
    margin: -7rem !important;
  }

  .tablet-large\:u--m-32{
    margin: -8rem !important;
  }

  .tablet-large\:u--m-36{
    margin: -9rem !important;
  }

  .tablet-large\:u--m-40{
    margin: -10rem !important;
  }

  .tablet-large\:u--m-44{
    margin: -11rem !important;
  }

  .tablet-large\:u--m-48{
    margin: -12rem !important;
  }

  .tablet-large\:u--m-52{
    margin: -13rem !important;
  }

  .tablet-large\:u--m-56{
    margin: -14rem !important;
  }

  .tablet-large\:u--m-60{
    margin: -15rem !important;
  }

  .tablet-large\:u--m-64{
    margin: -16rem !important;
  }

  .tablet-large\:u--m-72{
    margin: -18rem !important;
  }

  .tablet-large\:u--m-80{
    margin: -20rem !important;
  }

  .tablet-large\:u--m-96{
    margin: -24rem !important;
  }

  .tablet-large\:u--m-px{
    margin: -1px !important;
  }

  .tablet-large\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .tablet-large\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .tablet-large\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .tablet-large\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .tablet-large\:u-m-full{
    margin: 100% !important;
  }

  .tablet-large\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet-large\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-large\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .tablet-large\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .tablet-large\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .tablet-large\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .tablet-large\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .tablet-large\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .tablet-large\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .tablet-large\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .tablet-large\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .tablet-large\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .tablet-large\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .tablet-large\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .tablet-large\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .tablet-large\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .tablet-large\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .tablet-large\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .tablet-large\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .tablet-large\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .tablet-large\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tablet-large\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .tablet-large\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .tablet-large\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .tablet-large\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .tablet-large\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .tablet-large\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .tablet-large\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .tablet-large\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .tablet-large\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .tablet-large\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .tablet-large\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .tablet-large\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .tablet-large\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .tablet-large\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .tablet-large\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .tablet-large\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .tablet-large\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .tablet-large\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .tablet-large\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .tablet-large\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .tablet-large\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .tablet-large\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .tablet-large\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .tablet-large\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .tablet-large\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .tablet-large\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .tablet-large\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .tablet-large\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .tablet-large\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .tablet-large\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .tablet-large\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .tablet-large\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .tablet-large\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .tablet-large\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .tablet-large\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .tablet-large\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .tablet-large\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .tablet-large\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .tablet-large\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .tablet-large\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .tablet-large\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .tablet-large\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .tablet-large\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .tablet-large\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .tablet-large\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .tablet-large\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .tablet-large\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .tablet-large\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .tablet-large\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .tablet-large\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .tablet-large\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .tablet-large\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .tablet-large\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .tablet-large\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .tablet-large\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .tablet-large\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .tablet-large\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .tablet-large\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .tablet-large\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .tablet-large\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .tablet-large\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .tablet-large\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .tablet-large\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .tablet-large\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .tablet-large\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .tablet-large\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .tablet-large\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .tablet-large\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .tablet-large\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .tablet-large\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .tablet-large\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .tablet-large\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .tablet-large\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .tablet-large\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .tablet-large\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .tablet-large\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .tablet-large\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .tablet-large\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .tablet-large\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .tablet-large\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .tablet-large\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .tablet-large\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .tablet-large\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .tablet-large\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .tablet-large\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .tablet-large\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .tablet-large\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .tablet-large\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .tablet-large\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .tablet-large\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .tablet-large\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .tablet-large\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .tablet-large\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .tablet-large\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .tablet-large\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .tablet-large\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .tablet-large\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .tablet-large\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .tablet-large\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .tablet-large\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .tablet-large\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .tablet-large\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .tablet-large\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .tablet-large\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .tablet-large\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .tablet-large\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .tablet-large\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .tablet-large\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .tablet-large\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .tablet-large\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .tablet-large\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .tablet-large\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .tablet-large\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .tablet-large\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .tablet-large\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .tablet-large\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .tablet-large\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .tablet-large\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .tablet-large\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .tablet-large\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .tablet-large\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .tablet-large\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .tablet-large\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .tablet-large\:u-mt-0{
    margin-top: 0px !important;
  }

  .tablet-large\:u-mr-0{
    margin-right: 0px !important;
  }

  .tablet-large\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-large\:u-ml-0{
    margin-left: 0px !important;
  }

  .tablet-large\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .tablet-large\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .tablet-large\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .tablet-large\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .tablet-large\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .tablet-large\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .tablet-large\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .tablet-large\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .tablet-large\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .tablet-large\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .tablet-large\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .tablet-large\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .tablet-large\:u-mt-4{
    margin-top: 1rem !important;
  }

  .tablet-large\:u-mr-4{
    margin-right: 1rem !important;
  }

  .tablet-large\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .tablet-large\:u-ml-4{
    margin-left: 1rem !important;
  }

  .tablet-large\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .tablet-large\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .tablet-large\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .tablet-large\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .tablet-large\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .tablet-large\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .tablet-large\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .tablet-large\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .tablet-large\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .tablet-large\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .tablet-large\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .tablet-large\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .tablet-large\:u-mt-8{
    margin-top: 2rem !important;
  }

  .tablet-large\:u-mr-8{
    margin-right: 2rem !important;
  }

  .tablet-large\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .tablet-large\:u-ml-8{
    margin-left: 2rem !important;
  }

  .tablet-large\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .tablet-large\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .tablet-large\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .tablet-large\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .tablet-large\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .tablet-large\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .tablet-large\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .tablet-large\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .tablet-large\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .tablet-large\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .tablet-large\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .tablet-large\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .tablet-large\:u-mt-12{
    margin-top: 3rem !important;
  }

  .tablet-large\:u-mr-12{
    margin-right: 3rem !important;
  }

  .tablet-large\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .tablet-large\:u-ml-12{
    margin-left: 3rem !important;
  }

  .tablet-large\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .tablet-large\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .tablet-large\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .tablet-large\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .tablet-large\:u-mt-16{
    margin-top: 4rem !important;
  }

  .tablet-large\:u-mr-16{
    margin-right: 4rem !important;
  }

  .tablet-large\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .tablet-large\:u-ml-16{
    margin-left: 4rem !important;
  }

  .tablet-large\:u-mt-20{
    margin-top: 5rem !important;
  }

  .tablet-large\:u-mr-20{
    margin-right: 5rem !important;
  }

  .tablet-large\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .tablet-large\:u-ml-20{
    margin-left: 5rem !important;
  }

  .tablet-large\:u-mt-24{
    margin-top: 6rem !important;
  }

  .tablet-large\:u-mr-24{
    margin-right: 6rem !important;
  }

  .tablet-large\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .tablet-large\:u-ml-24{
    margin-left: 6rem !important;
  }

  .tablet-large\:u-mt-28{
    margin-top: 7rem !important;
  }

  .tablet-large\:u-mr-28{
    margin-right: 7rem !important;
  }

  .tablet-large\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .tablet-large\:u-ml-28{
    margin-left: 7rem !important;
  }

  .tablet-large\:u-mt-32{
    margin-top: 8rem !important;
  }

  .tablet-large\:u-mr-32{
    margin-right: 8rem !important;
  }

  .tablet-large\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .tablet-large\:u-ml-32{
    margin-left: 8rem !important;
  }

  .tablet-large\:u-mt-36{
    margin-top: 9rem !important;
  }

  .tablet-large\:u-mr-36{
    margin-right: 9rem !important;
  }

  .tablet-large\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .tablet-large\:u-ml-36{
    margin-left: 9rem !important;
  }

  .tablet-large\:u-mt-40{
    margin-top: 10rem !important;
  }

  .tablet-large\:u-mr-40{
    margin-right: 10rem !important;
  }

  .tablet-large\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .tablet-large\:u-ml-40{
    margin-left: 10rem !important;
  }

  .tablet-large\:u-mt-44{
    margin-top: 11rem !important;
  }

  .tablet-large\:u-mr-44{
    margin-right: 11rem !important;
  }

  .tablet-large\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .tablet-large\:u-ml-44{
    margin-left: 11rem !important;
  }

  .tablet-large\:u-mt-48{
    margin-top: 12rem !important;
  }

  .tablet-large\:u-mr-48{
    margin-right: 12rem !important;
  }

  .tablet-large\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .tablet-large\:u-ml-48{
    margin-left: 12rem !important;
  }

  .tablet-large\:u-mt-52{
    margin-top: 13rem !important;
  }

  .tablet-large\:u-mr-52{
    margin-right: 13rem !important;
  }

  .tablet-large\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .tablet-large\:u-ml-52{
    margin-left: 13rem !important;
  }

  .tablet-large\:u-mt-56{
    margin-top: 14rem !important;
  }

  .tablet-large\:u-mr-56{
    margin-right: 14rem !important;
  }

  .tablet-large\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .tablet-large\:u-ml-56{
    margin-left: 14rem !important;
  }

  .tablet-large\:u-mt-60{
    margin-top: 15rem !important;
  }

  .tablet-large\:u-mr-60{
    margin-right: 15rem !important;
  }

  .tablet-large\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .tablet-large\:u-ml-60{
    margin-left: 15rem !important;
  }

  .tablet-large\:u-mt-64{
    margin-top: 16rem !important;
  }

  .tablet-large\:u-mr-64{
    margin-right: 16rem !important;
  }

  .tablet-large\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .tablet-large\:u-ml-64{
    margin-left: 16rem !important;
  }

  .tablet-large\:u-mt-72{
    margin-top: 18rem !important;
  }

  .tablet-large\:u-mr-72{
    margin-right: 18rem !important;
  }

  .tablet-large\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .tablet-large\:u-ml-72{
    margin-left: 18rem !important;
  }

  .tablet-large\:u-mt-80{
    margin-top: 20rem !important;
  }

  .tablet-large\:u-mr-80{
    margin-right: 20rem !important;
  }

  .tablet-large\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .tablet-large\:u-ml-80{
    margin-left: 20rem !important;
  }

  .tablet-large\:u-mt-96{
    margin-top: 24rem !important;
  }

  .tablet-large\:u-mr-96{
    margin-right: 24rem !important;
  }

  .tablet-large\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .tablet-large\:u-ml-96{
    margin-left: 24rem !important;
  }

  .tablet-large\:u-mt-auto{
    margin-top: auto !important;
  }

  .tablet-large\:u-mr-auto{
    margin-right: auto !important;
  }

  .tablet-large\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .tablet-large\:u-ml-auto{
    margin-left: auto !important;
  }

  .tablet-large\:u-mt-px{
    margin-top: 1px !important;
  }

  .tablet-large\:u-mr-px{
    margin-right: 1px !important;
  }

  .tablet-large\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .tablet-large\:u-ml-px{
    margin-left: 1px !important;
  }

  .tablet-large\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .tablet-large\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .tablet-large\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .tablet-large\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .tablet-large\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .tablet-large\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .tablet-large\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .tablet-large\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .tablet-large\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .tablet-large\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .tablet-large\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .tablet-large\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .tablet-large\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .tablet-large\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .tablet-large\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .tablet-large\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .tablet-large\:u--mt-0{
    margin-top: 0px !important;
  }

  .tablet-large\:u--mr-0{
    margin-right: 0px !important;
  }

  .tablet-large\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .tablet-large\:u--ml-0{
    margin-left: 0px !important;
  }

  .tablet-large\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .tablet-large\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .tablet-large\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .tablet-large\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .tablet-large\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .tablet-large\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .tablet-large\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .tablet-large\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .tablet-large\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .tablet-large\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .tablet-large\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .tablet-large\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .tablet-large\:u--mt-4{
    margin-top: -1rem !important;
  }

  .tablet-large\:u--mr-4{
    margin-right: -1rem !important;
  }

  .tablet-large\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .tablet-large\:u--ml-4{
    margin-left: -1rem !important;
  }

  .tablet-large\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .tablet-large\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .tablet-large\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .tablet-large\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .tablet-large\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .tablet-large\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .tablet-large\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .tablet-large\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .tablet-large\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .tablet-large\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .tablet-large\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .tablet-large\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .tablet-large\:u--mt-8{
    margin-top: -2rem !important;
  }

  .tablet-large\:u--mr-8{
    margin-right: -2rem !important;
  }

  .tablet-large\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .tablet-large\:u--ml-8{
    margin-left: -2rem !important;
  }

  .tablet-large\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .tablet-large\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .tablet-large\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .tablet-large\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .tablet-large\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .tablet-large\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .tablet-large\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .tablet-large\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .tablet-large\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .tablet-large\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .tablet-large\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .tablet-large\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .tablet-large\:u--mt-12{
    margin-top: -3rem !important;
  }

  .tablet-large\:u--mr-12{
    margin-right: -3rem !important;
  }

  .tablet-large\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .tablet-large\:u--ml-12{
    margin-left: -3rem !important;
  }

  .tablet-large\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .tablet-large\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .tablet-large\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .tablet-large\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .tablet-large\:u--mt-16{
    margin-top: -4rem !important;
  }

  .tablet-large\:u--mr-16{
    margin-right: -4rem !important;
  }

  .tablet-large\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .tablet-large\:u--ml-16{
    margin-left: -4rem !important;
  }

  .tablet-large\:u--mt-20{
    margin-top: -5rem !important;
  }

  .tablet-large\:u--mr-20{
    margin-right: -5rem !important;
  }

  .tablet-large\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .tablet-large\:u--ml-20{
    margin-left: -5rem !important;
  }

  .tablet-large\:u--mt-24{
    margin-top: -6rem !important;
  }

  .tablet-large\:u--mr-24{
    margin-right: -6rem !important;
  }

  .tablet-large\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .tablet-large\:u--ml-24{
    margin-left: -6rem !important;
  }

  .tablet-large\:u--mt-28{
    margin-top: -7rem !important;
  }

  .tablet-large\:u--mr-28{
    margin-right: -7rem !important;
  }

  .tablet-large\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .tablet-large\:u--ml-28{
    margin-left: -7rem !important;
  }

  .tablet-large\:u--mt-32{
    margin-top: -8rem !important;
  }

  .tablet-large\:u--mr-32{
    margin-right: -8rem !important;
  }

  .tablet-large\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .tablet-large\:u--ml-32{
    margin-left: -8rem !important;
  }

  .tablet-large\:u--mt-36{
    margin-top: -9rem !important;
  }

  .tablet-large\:u--mr-36{
    margin-right: -9rem !important;
  }

  .tablet-large\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .tablet-large\:u--ml-36{
    margin-left: -9rem !important;
  }

  .tablet-large\:u--mt-40{
    margin-top: -10rem !important;
  }

  .tablet-large\:u--mr-40{
    margin-right: -10rem !important;
  }

  .tablet-large\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .tablet-large\:u--ml-40{
    margin-left: -10rem !important;
  }

  .tablet-large\:u--mt-44{
    margin-top: -11rem !important;
  }

  .tablet-large\:u--mr-44{
    margin-right: -11rem !important;
  }

  .tablet-large\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .tablet-large\:u--ml-44{
    margin-left: -11rem !important;
  }

  .tablet-large\:u--mt-48{
    margin-top: -12rem !important;
  }

  .tablet-large\:u--mr-48{
    margin-right: -12rem !important;
  }

  .tablet-large\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .tablet-large\:u--ml-48{
    margin-left: -12rem !important;
  }

  .tablet-large\:u--mt-52{
    margin-top: -13rem !important;
  }

  .tablet-large\:u--mr-52{
    margin-right: -13rem !important;
  }

  .tablet-large\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .tablet-large\:u--ml-52{
    margin-left: -13rem !important;
  }

  .tablet-large\:u--mt-56{
    margin-top: -14rem !important;
  }

  .tablet-large\:u--mr-56{
    margin-right: -14rem !important;
  }

  .tablet-large\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .tablet-large\:u--ml-56{
    margin-left: -14rem !important;
  }

  .tablet-large\:u--mt-60{
    margin-top: -15rem !important;
  }

  .tablet-large\:u--mr-60{
    margin-right: -15rem !important;
  }

  .tablet-large\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .tablet-large\:u--ml-60{
    margin-left: -15rem !important;
  }

  .tablet-large\:u--mt-64{
    margin-top: -16rem !important;
  }

  .tablet-large\:u--mr-64{
    margin-right: -16rem !important;
  }

  .tablet-large\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .tablet-large\:u--ml-64{
    margin-left: -16rem !important;
  }

  .tablet-large\:u--mt-72{
    margin-top: -18rem !important;
  }

  .tablet-large\:u--mr-72{
    margin-right: -18rem !important;
  }

  .tablet-large\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .tablet-large\:u--ml-72{
    margin-left: -18rem !important;
  }

  .tablet-large\:u--mt-80{
    margin-top: -20rem !important;
  }

  .tablet-large\:u--mr-80{
    margin-right: -20rem !important;
  }

  .tablet-large\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .tablet-large\:u--ml-80{
    margin-left: -20rem !important;
  }

  .tablet-large\:u--mt-96{
    margin-top: -24rem !important;
  }

  .tablet-large\:u--mr-96{
    margin-right: -24rem !important;
  }

  .tablet-large\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .tablet-large\:u--ml-96{
    margin-left: -24rem !important;
  }

  .tablet-large\:u--mt-px{
    margin-top: -1px !important;
  }

  .tablet-large\:u--mr-px{
    margin-right: -1px !important;
  }

  .tablet-large\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .tablet-large\:u--ml-px{
    margin-left: -1px !important;
  }

  .tablet-large\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .tablet-large\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .tablet-large\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .tablet-large\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .tablet-large\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .tablet-large\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .tablet-large\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .tablet-large\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .tablet-large\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .tablet-large\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .tablet-large\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .tablet-large\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .tablet-large\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .tablet-large\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .tablet-large\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .tablet-large\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .tablet-large\:u-mt-full{
    margin-top: 100% !important;
  }

  .tablet-large\:u-mr-full{
    margin-right: 100% !important;
  }

  .tablet-large\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .tablet-large\:u-ml-full{
    margin-left: 100% !important;
  }

  .tablet-large\:u-max-h-0{
    max-height: 0px !important;
  }

  .tablet-large\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .tablet-large\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .tablet-large\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .tablet-large\:u-max-h-4{
    max-height: 1rem !important;
  }

  .tablet-large\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .tablet-large\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .tablet-large\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .tablet-large\:u-max-h-8{
    max-height: 2rem !important;
  }

  .tablet-large\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .tablet-large\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .tablet-large\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .tablet-large\:u-max-h-12{
    max-height: 3rem !important;
  }

  .tablet-large\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .tablet-large\:u-max-h-16{
    max-height: 4rem !important;
  }

  .tablet-large\:u-max-h-20{
    max-height: 5rem !important;
  }

  .tablet-large\:u-max-h-24{
    max-height: 6rem !important;
  }

  .tablet-large\:u-max-h-28{
    max-height: 7rem !important;
  }

  .tablet-large\:u-max-h-32{
    max-height: 8rem !important;
  }

  .tablet-large\:u-max-h-36{
    max-height: 9rem !important;
  }

  .tablet-large\:u-max-h-40{
    max-height: 10rem !important;
  }

  .tablet-large\:u-max-h-44{
    max-height: 11rem !important;
  }

  .tablet-large\:u-max-h-48{
    max-height: 12rem !important;
  }

  .tablet-large\:u-max-h-52{
    max-height: 13rem !important;
  }

  .tablet-large\:u-max-h-56{
    max-height: 14rem !important;
  }

  .tablet-large\:u-max-h-60{
    max-height: 15rem !important;
  }

  .tablet-large\:u-max-h-64{
    max-height: 16rem !important;
  }

  .tablet-large\:u-max-h-72{
    max-height: 18rem !important;
  }

  .tablet-large\:u-max-h-80{
    max-height: 20rem !important;
  }

  .tablet-large\:u-max-h-96{
    max-height: 24rem !important;
  }

  .tablet-large\:u-max-h-px{
    max-height: 1px !important;
  }

  .tablet-large\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .tablet-large\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .tablet-large\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .tablet-large\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .tablet-large\:u-max-h-full{
    max-height: 100% !important;
  }

  .tablet-large\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .tablet-large\:u-max-w-none{
    max-width: none !important;
  }

  .tablet-large\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .tablet-large\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .tablet-large\:u-max-w-md{
    max-width: 24rem !important;
  }

  .tablet-large\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .tablet-large\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .tablet-large\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .tablet-large\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .tablet-large\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .tablet-large\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .tablet-large\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .tablet-large\:u-max-w-full{
    max-width: 100% !important;
  }

  .tablet-large\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .tablet-large\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .tablet-large\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .tablet-large\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .tablet-large\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .tablet-large\:u-min-h-none{
    min-height: none !important;
  }

  .tablet-large\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .tablet-large\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .tablet-large\:u-min-h-md{
    min-height: 24rem !important;
  }

  .tablet-large\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .tablet-large\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .tablet-large\:u-min-w-sm{
    min-width: 320px !important;
  }

  .tablet-large\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .tablet-large\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .tablet-large\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .tablet-large\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .tablet-large\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .tablet-large\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .tablet-large\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .tablet-large\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .tablet-large\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .tablet-large\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .tablet-large\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .tablet-large\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .tablet-large\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .tablet-large\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .tablet-large\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .tablet-large\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .tablet-large\:u-opacity-0{
    opacity: 0 !important;
  }

  .tablet-large\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .tablet-large\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .tablet-large\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .tablet-large\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .tablet-large\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .tablet-large\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .tablet-large\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .tablet-large\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .tablet-large\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .tablet-large\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .tablet-large\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .tablet-large\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .tablet-large\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .tablet-large\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .tablet-large\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .tablet-large\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .tablet-large\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .tablet-large\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .tablet-large\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .tablet-large\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .tablet-large\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .tablet-large\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .tablet-large\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .tablet-large\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .tablet-large\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .tablet-large\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .tablet-large\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .tablet-large\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .tablet-large\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .tablet-large\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .tablet-large\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .tablet-large\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .tablet-large\:u-overflow-auto{
    overflow: auto !important;
  }

  .tablet-large\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .tablet-large\:u-overflow-visible{
    overflow: visible !important;
  }

  .tablet-large\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .tablet-large\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .tablet-large\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .tablet-large\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .tablet-large\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .tablet-large\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .tablet-large\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .tablet-large\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .tablet-large\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .tablet-large\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .tablet-large\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .tablet-large\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .tablet-large\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .tablet-large\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .tablet-large\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .tablet-large\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .tablet-large\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .tablet-large\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .tablet-large\:u-p-0{
    padding: 0px !important;
  }

  .tablet-large\:u-p-1{
    padding: 0.25rem !important;
  }

  .tablet-large\:u-p-2{
    padding: 0.5rem !important;
  }

  .tablet-large\:u-p-3{
    padding: 0.75rem !important;
  }

  .tablet-large\:u-p-4{
    padding: 1rem !important;
  }

  .tablet-large\:u-p-5{
    padding: 1.25rem !important;
  }

  .tablet-large\:u-p-6{
    padding: 1.5rem !important;
  }

  .tablet-large\:u-p-7{
    padding: 1.75rem !important;
  }

  .tablet-large\:u-p-8{
    padding: 2rem !important;
  }

  .tablet-large\:u-p-9{
    padding: 2.25rem !important;
  }

  .tablet-large\:u-p-10{
    padding: 2.5rem !important;
  }

  .tablet-large\:u-p-11{
    padding: 2.75rem !important;
  }

  .tablet-large\:u-p-12{
    padding: 3rem !important;
  }

  .tablet-large\:u-p-14{
    padding: 3.5rem !important;
  }

  .tablet-large\:u-p-16{
    padding: 4rem !important;
  }

  .tablet-large\:u-p-20{
    padding: 5rem !important;
  }

  .tablet-large\:u-p-24{
    padding: 6rem !important;
  }

  .tablet-large\:u-p-28{
    padding: 7rem !important;
  }

  .tablet-large\:u-p-32{
    padding: 8rem !important;
  }

  .tablet-large\:u-p-36{
    padding: 9rem !important;
  }

  .tablet-large\:u-p-40{
    padding: 10rem !important;
  }

  .tablet-large\:u-p-44{
    padding: 11rem !important;
  }

  .tablet-large\:u-p-48{
    padding: 12rem !important;
  }

  .tablet-large\:u-p-52{
    padding: 13rem !important;
  }

  .tablet-large\:u-p-56{
    padding: 14rem !important;
  }

  .tablet-large\:u-p-60{
    padding: 15rem !important;
  }

  .tablet-large\:u-p-64{
    padding: 16rem !important;
  }

  .tablet-large\:u-p-72{
    padding: 18rem !important;
  }

  .tablet-large\:u-p-80{
    padding: 20rem !important;
  }

  .tablet-large\:u-p-96{
    padding: 24rem !important;
  }

  .tablet-large\:u-p-px{
    padding: 1px !important;
  }

  .tablet-large\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .tablet-large\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .tablet-large\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .tablet-large\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .tablet-large\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .tablet-large\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .tablet-large\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .tablet-large\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .tablet-large\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .tablet-large\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .tablet-large\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .tablet-large\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .tablet-large\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .tablet-large\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .tablet-large\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .tablet-large\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .tablet-large\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .tablet-large\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .tablet-large\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .tablet-large\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .tablet-large\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .tablet-large\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .tablet-large\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .tablet-large\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .tablet-large\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .tablet-large\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .tablet-large\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .tablet-large\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .tablet-large\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .tablet-large\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .tablet-large\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .tablet-large\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .tablet-large\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .tablet-large\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .tablet-large\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .tablet-large\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .tablet-large\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .tablet-large\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .tablet-large\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .tablet-large\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .tablet-large\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .tablet-large\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .tablet-large\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .tablet-large\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .tablet-large\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .tablet-large\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .tablet-large\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .tablet-large\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .tablet-large\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .tablet-large\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .tablet-large\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .tablet-large\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .tablet-large\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .tablet-large\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .tablet-large\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .tablet-large\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .tablet-large\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .tablet-large\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .tablet-large\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .tablet-large\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .tablet-large\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .tablet-large\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .tablet-large\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .tablet-large\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .tablet-large\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .tablet-large\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .tablet-large\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .tablet-large\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .tablet-large\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .tablet-large\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .tablet-large\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .tablet-large\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .tablet-large\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .tablet-large\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .tablet-large\:u-pt-0{
    padding-top: 0px !important;
  }

  .tablet-large\:u-pr-0{
    padding-right: 0px !important;
  }

  .tablet-large\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .tablet-large\:u-pl-0{
    padding-left: 0px !important;
  }

  .tablet-large\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .tablet-large\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .tablet-large\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .tablet-large\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .tablet-large\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .tablet-large\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .tablet-large\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .tablet-large\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .tablet-large\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .tablet-large\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .tablet-large\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .tablet-large\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .tablet-large\:u-pt-4{
    padding-top: 1rem !important;
  }

  .tablet-large\:u-pr-4{
    padding-right: 1rem !important;
  }

  .tablet-large\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .tablet-large\:u-pl-4{
    padding-left: 1rem !important;
  }

  .tablet-large\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .tablet-large\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .tablet-large\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .tablet-large\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .tablet-large\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .tablet-large\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .tablet-large\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .tablet-large\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .tablet-large\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .tablet-large\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .tablet-large\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .tablet-large\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .tablet-large\:u-pt-8{
    padding-top: 2rem !important;
  }

  .tablet-large\:u-pr-8{
    padding-right: 2rem !important;
  }

  .tablet-large\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .tablet-large\:u-pl-8{
    padding-left: 2rem !important;
  }

  .tablet-large\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .tablet-large\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .tablet-large\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .tablet-large\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .tablet-large\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .tablet-large\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .tablet-large\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .tablet-large\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .tablet-large\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .tablet-large\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .tablet-large\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .tablet-large\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .tablet-large\:u-pt-12{
    padding-top: 3rem !important;
  }

  .tablet-large\:u-pr-12{
    padding-right: 3rem !important;
  }

  .tablet-large\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .tablet-large\:u-pl-12{
    padding-left: 3rem !important;
  }

  .tablet-large\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .tablet-large\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .tablet-large\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .tablet-large\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .tablet-large\:u-pt-16{
    padding-top: 4rem !important;
  }

  .tablet-large\:u-pr-16{
    padding-right: 4rem !important;
  }

  .tablet-large\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .tablet-large\:u-pl-16{
    padding-left: 4rem !important;
  }

  .tablet-large\:u-pt-20{
    padding-top: 5rem !important;
  }

  .tablet-large\:u-pr-20{
    padding-right: 5rem !important;
  }

  .tablet-large\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .tablet-large\:u-pl-20{
    padding-left: 5rem !important;
  }

  .tablet-large\:u-pt-24{
    padding-top: 6rem !important;
  }

  .tablet-large\:u-pr-24{
    padding-right: 6rem !important;
  }

  .tablet-large\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .tablet-large\:u-pl-24{
    padding-left: 6rem !important;
  }

  .tablet-large\:u-pt-28{
    padding-top: 7rem !important;
  }

  .tablet-large\:u-pr-28{
    padding-right: 7rem !important;
  }

  .tablet-large\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .tablet-large\:u-pl-28{
    padding-left: 7rem !important;
  }

  .tablet-large\:u-pt-32{
    padding-top: 8rem !important;
  }

  .tablet-large\:u-pr-32{
    padding-right: 8rem !important;
  }

  .tablet-large\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .tablet-large\:u-pl-32{
    padding-left: 8rem !important;
  }

  .tablet-large\:u-pt-36{
    padding-top: 9rem !important;
  }

  .tablet-large\:u-pr-36{
    padding-right: 9rem !important;
  }

  .tablet-large\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .tablet-large\:u-pl-36{
    padding-left: 9rem !important;
  }

  .tablet-large\:u-pt-40{
    padding-top: 10rem !important;
  }

  .tablet-large\:u-pr-40{
    padding-right: 10rem !important;
  }

  .tablet-large\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .tablet-large\:u-pl-40{
    padding-left: 10rem !important;
  }

  .tablet-large\:u-pt-44{
    padding-top: 11rem !important;
  }

  .tablet-large\:u-pr-44{
    padding-right: 11rem !important;
  }

  .tablet-large\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .tablet-large\:u-pl-44{
    padding-left: 11rem !important;
  }

  .tablet-large\:u-pt-48{
    padding-top: 12rem !important;
  }

  .tablet-large\:u-pr-48{
    padding-right: 12rem !important;
  }

  .tablet-large\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .tablet-large\:u-pl-48{
    padding-left: 12rem !important;
  }

  .tablet-large\:u-pt-52{
    padding-top: 13rem !important;
  }

  .tablet-large\:u-pr-52{
    padding-right: 13rem !important;
  }

  .tablet-large\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .tablet-large\:u-pl-52{
    padding-left: 13rem !important;
  }

  .tablet-large\:u-pt-56{
    padding-top: 14rem !important;
  }

  .tablet-large\:u-pr-56{
    padding-right: 14rem !important;
  }

  .tablet-large\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .tablet-large\:u-pl-56{
    padding-left: 14rem !important;
  }

  .tablet-large\:u-pt-60{
    padding-top: 15rem !important;
  }

  .tablet-large\:u-pr-60{
    padding-right: 15rem !important;
  }

  .tablet-large\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .tablet-large\:u-pl-60{
    padding-left: 15rem !important;
  }

  .tablet-large\:u-pt-64{
    padding-top: 16rem !important;
  }

  .tablet-large\:u-pr-64{
    padding-right: 16rem !important;
  }

  .tablet-large\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .tablet-large\:u-pl-64{
    padding-left: 16rem !important;
  }

  .tablet-large\:u-pt-72{
    padding-top: 18rem !important;
  }

  .tablet-large\:u-pr-72{
    padding-right: 18rem !important;
  }

  .tablet-large\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .tablet-large\:u-pl-72{
    padding-left: 18rem !important;
  }

  .tablet-large\:u-pt-80{
    padding-top: 20rem !important;
  }

  .tablet-large\:u-pr-80{
    padding-right: 20rem !important;
  }

  .tablet-large\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .tablet-large\:u-pl-80{
    padding-left: 20rem !important;
  }

  .tablet-large\:u-pt-96{
    padding-top: 24rem !important;
  }

  .tablet-large\:u-pr-96{
    padding-right: 24rem !important;
  }

  .tablet-large\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .tablet-large\:u-pl-96{
    padding-left: 24rem !important;
  }

  .tablet-large\:u-pt-px{
    padding-top: 1px !important;
  }

  .tablet-large\:u-pr-px{
    padding-right: 1px !important;
  }

  .tablet-large\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .tablet-large\:u-pl-px{
    padding-left: 1px !important;
  }

  .tablet-large\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .tablet-large\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .tablet-large\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .tablet-large\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .tablet-large\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .tablet-large\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .tablet-large\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .tablet-large\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .tablet-large\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .tablet-large\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .tablet-large\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .tablet-large\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .tablet-large\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .tablet-large\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .tablet-large\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .tablet-large\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .tablet-large\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-large\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .tablet-large\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .tablet-large\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .tablet-large\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .tablet-large\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .tablet-large\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-large\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-large\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-large\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-large\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-large\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-large\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-large\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-large\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-large\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-large\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-large\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-large\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-large\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-large\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-large\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-large\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-large\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-large\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-large\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-large\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-large\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-large\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-large\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-large\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-large\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-large\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-large\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-large\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-large\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-large\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-large\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-large\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-large\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-large\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-large\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-large\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-large\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-large\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-large\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-large\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-large\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-large\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-large\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-large\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .tablet-large\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .tablet-large\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .tablet-large\:u-static{
    position: static !important;
  }

  .tablet-large\:u-fixed{
    position: fixed !important;
  }

  .tablet-large\:u-absolute{
    position: absolute !important;
  }

  .tablet-large\:u-relative{
    position: relative !important;
  }

  .tablet-large\:u-sticky{
    position: sticky !important;
  }

  .tablet-large\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .tablet-large\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .tablet-large\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .tablet-large\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .tablet-large\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .tablet-large\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .tablet-large\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .tablet-large\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .tablet-large\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .tablet-large\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .tablet-large\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .tablet-large\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .tablet-large\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .tablet-large\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .tablet-large\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .tablet-large\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .tablet-large\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .tablet-large\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .tablet-large\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .tablet-large\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .tablet-large\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .tablet-large\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .tablet-large\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .tablet-large\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .tablet-large\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .tablet-large\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .tablet-large\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .tablet-large\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .tablet-large\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .tablet-large\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .tablet-large\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .tablet-large\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .tablet-large\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .tablet-large\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .tablet-large\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .tablet-large\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .tablet-large\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .tablet-large\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .tablet-large\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .tablet-large\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .tablet-large\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .tablet-large\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .tablet-large\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .tablet-large\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .tablet-large\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .tablet-large\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .tablet-large\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .tablet-large\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .tablet-large\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .tablet-large\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .tablet-large\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .tablet-large\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .tablet-large\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .tablet-large\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .tablet-large\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .tablet-large\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .tablet-large\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .tablet-large\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .tablet-large\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .tablet-large\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .tablet-large\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .tablet-large\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .tablet-large\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .tablet-large\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .tablet-large\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .tablet-large\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .tablet-large\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .tablet-large\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .tablet-large\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .tablet-large\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .tablet-large\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .tablet-large\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .tablet-large\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .tablet-large\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .tablet-large\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .tablet-large\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .tablet-large\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .tablet-large\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .tablet-large\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .tablet-large\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .tablet-large\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .tablet-large\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .tablet-large\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .tablet-large\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .tablet-large\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .tablet-large\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-large\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .tablet-large\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .tablet-large\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .tablet-large\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .tablet-large\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .tablet-large\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .tablet-large\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .tablet-large\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .tablet-large\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .tablet-large\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .tablet-large\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .tablet-large\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .tablet-large\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .tablet-large\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .tablet-large\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .tablet-large\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .tablet-large\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .tablet-large\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .tablet-large\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .tablet-large\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .tablet-large\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .tablet-large\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .tablet-large\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .tablet-large\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .tablet-large\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .tablet-large\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .tablet-large\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .tablet-large\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .tablet-large\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .tablet-large\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .tablet-large\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .tablet-large\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .tablet-large\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .tablet-large\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .tablet-large\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .tablet-large\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .tablet-large\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .tablet-large\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .tablet-large\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .tablet-large\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .tablet-large\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .tablet-large\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .tablet-large\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .tablet-large\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .tablet-large\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .tablet-large\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .tablet-large\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .tablet-large\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .tablet-large\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .tablet-large\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .tablet-large\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .tablet-large\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .tablet-large\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .tablet-large\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .tablet-large\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .tablet-large\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .tablet-large\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .tablet-large\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .tablet-large\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .tablet-large\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .tablet-large\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .tablet-large\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .tablet-large\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .tablet-large\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .tablet-large\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .tablet-large\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .tablet-large\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .tablet-large\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .tablet-large\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .tablet-large\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .tablet-large\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .tablet-large\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .tablet-large\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .tablet-large\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .tablet-large\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .tablet-large\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .tablet-large\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .tablet-large\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .tablet-large\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .tablet-large\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .tablet-large\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .tablet-large\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .tablet-large\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .tablet-large\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .tablet-large\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .tablet-large\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .tablet-large\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .tablet-large\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .tablet-large\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .tablet-large\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .tablet-large\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .tablet-large\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .tablet-large\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .tablet-large\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .tablet-large\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .tablet-large\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .tablet-large\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .tablet-large\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .tablet-large\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .tablet-large\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .tablet-large\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .tablet-large\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .tablet-large\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .tablet-large\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .tablet-large\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .tablet-large\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .tablet-large\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .tablet-large\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .tablet-large\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .tablet-large\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .tablet-large\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .tablet-large\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .tablet-large\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .tablet-large\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .tablet-large\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .tablet-large\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .tablet-large\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .tablet-large\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .tablet-large\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .tablet-large\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .tablet-large\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .tablet-large\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .tablet-large\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .tablet-large\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .tablet-large\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .tablet-large\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .tablet-large\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .tablet-large\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .tablet-large\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .tablet-large\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .tablet-large\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .tablet-large\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .tablet-large\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .tablet-large\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .tablet-large\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .tablet-large\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .tablet-large\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .tablet-large\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .tablet-large\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .tablet-large\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .tablet-large\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .tablet-large\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-large\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .tablet-large\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .tablet-large\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .tablet-large\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .tablet-large\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .tablet-large\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .tablet-large\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .tablet-large\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .tablet-large\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .tablet-large\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .tablet-large\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .tablet-large\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .tablet-large\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .tablet-large\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-large\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .tablet-large\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .tablet-large\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .tablet-large\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .tablet-large\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .tablet-large\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .tablet-large\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .tablet-large\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .tablet-large\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .tablet-large\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .tablet-large\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .tablet-large\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .tablet-large\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .tablet-large\:u-top-0{
    top: 0px !important;
  }

  .tablet-large\:u-right-0{
    right: 0px !important;
  }

  .tablet-large\:u-bottom-0{
    bottom: 0px !important;
  }

  .tablet-large\:u-left-0{
    left: 0px !important;
  }

  .tablet-large\:u-top-1{
    top: 0.25rem !important;
  }

  .tablet-large\:u-right-1{
    right: 0.25rem !important;
  }

  .tablet-large\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .tablet-large\:u-left-1{
    left: 0.25rem !important;
  }

  .tablet-large\:u-top-2{
    top: 0.5rem !important;
  }

  .tablet-large\:u-right-2{
    right: 0.5rem !important;
  }

  .tablet-large\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .tablet-large\:u-left-2{
    left: 0.5rem !important;
  }

  .tablet-large\:u-top-3{
    top: 0.75rem !important;
  }

  .tablet-large\:u-right-3{
    right: 0.75rem !important;
  }

  .tablet-large\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .tablet-large\:u-left-3{
    left: 0.75rem !important;
  }

  .tablet-large\:u-top-4{
    top: 1rem !important;
  }

  .tablet-large\:u-right-4{
    right: 1rem !important;
  }

  .tablet-large\:u-bottom-4{
    bottom: 1rem !important;
  }

  .tablet-large\:u-left-4{
    left: 1rem !important;
  }

  .tablet-large\:u-top-5{
    top: 1.25rem !important;
  }

  .tablet-large\:u-right-5{
    right: 1.25rem !important;
  }

  .tablet-large\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .tablet-large\:u-left-5{
    left: 1.25rem !important;
  }

  .tablet-large\:u-top-6{
    top: 1.5rem !important;
  }

  .tablet-large\:u-right-6{
    right: 1.5rem !important;
  }

  .tablet-large\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .tablet-large\:u-left-6{
    left: 1.5rem !important;
  }

  .tablet-large\:u-top-7{
    top: 1.75rem !important;
  }

  .tablet-large\:u-right-7{
    right: 1.75rem !important;
  }

  .tablet-large\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .tablet-large\:u-left-7{
    left: 1.75rem !important;
  }

  .tablet-large\:u-top-8{
    top: 2rem !important;
  }

  .tablet-large\:u-right-8{
    right: 2rem !important;
  }

  .tablet-large\:u-bottom-8{
    bottom: 2rem !important;
  }

  .tablet-large\:u-left-8{
    left: 2rem !important;
  }

  .tablet-large\:u-top-9{
    top: 2.25rem !important;
  }

  .tablet-large\:u-right-9{
    right: 2.25rem !important;
  }

  .tablet-large\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .tablet-large\:u-left-9{
    left: 2.25rem !important;
  }

  .tablet-large\:u-top-10{
    top: 2.5rem !important;
  }

  .tablet-large\:u-right-10{
    right: 2.5rem !important;
  }

  .tablet-large\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .tablet-large\:u-left-10{
    left: 2.5rem !important;
  }

  .tablet-large\:u-top-11{
    top: 2.75rem !important;
  }

  .tablet-large\:u-right-11{
    right: 2.75rem !important;
  }

  .tablet-large\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .tablet-large\:u-left-11{
    left: 2.75rem !important;
  }

  .tablet-large\:u-top-12{
    top: 3rem !important;
  }

  .tablet-large\:u-right-12{
    right: 3rem !important;
  }

  .tablet-large\:u-bottom-12{
    bottom: 3rem !important;
  }

  .tablet-large\:u-left-12{
    left: 3rem !important;
  }

  .tablet-large\:u-top-14{
    top: 3.5rem !important;
  }

  .tablet-large\:u-right-14{
    right: 3.5rem !important;
  }

  .tablet-large\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .tablet-large\:u-left-14{
    left: 3.5rem !important;
  }

  .tablet-large\:u-top-16{
    top: 4rem !important;
  }

  .tablet-large\:u-right-16{
    right: 4rem !important;
  }

  .tablet-large\:u-bottom-16{
    bottom: 4rem !important;
  }

  .tablet-large\:u-left-16{
    left: 4rem !important;
  }

  .tablet-large\:u-top-20{
    top: 5rem !important;
  }

  .tablet-large\:u-right-20{
    right: 5rem !important;
  }

  .tablet-large\:u-bottom-20{
    bottom: 5rem !important;
  }

  .tablet-large\:u-left-20{
    left: 5rem !important;
  }

  .tablet-large\:u-top-24{
    top: 6rem !important;
  }

  .tablet-large\:u-right-24{
    right: 6rem !important;
  }

  .tablet-large\:u-bottom-24{
    bottom: 6rem !important;
  }

  .tablet-large\:u-left-24{
    left: 6rem !important;
  }

  .tablet-large\:u-top-28{
    top: 7rem !important;
  }

  .tablet-large\:u-right-28{
    right: 7rem !important;
  }

  .tablet-large\:u-bottom-28{
    bottom: 7rem !important;
  }

  .tablet-large\:u-left-28{
    left: 7rem !important;
  }

  .tablet-large\:u-top-32{
    top: 8rem !important;
  }

  .tablet-large\:u-right-32{
    right: 8rem !important;
  }

  .tablet-large\:u-bottom-32{
    bottom: 8rem !important;
  }

  .tablet-large\:u-left-32{
    left: 8rem !important;
  }

  .tablet-large\:u-top-36{
    top: 9rem !important;
  }

  .tablet-large\:u-right-36{
    right: 9rem !important;
  }

  .tablet-large\:u-bottom-36{
    bottom: 9rem !important;
  }

  .tablet-large\:u-left-36{
    left: 9rem !important;
  }

  .tablet-large\:u-top-40{
    top: 10rem !important;
  }

  .tablet-large\:u-right-40{
    right: 10rem !important;
  }

  .tablet-large\:u-bottom-40{
    bottom: 10rem !important;
  }

  .tablet-large\:u-left-40{
    left: 10rem !important;
  }

  .tablet-large\:u-top-44{
    top: 11rem !important;
  }

  .tablet-large\:u-right-44{
    right: 11rem !important;
  }

  .tablet-large\:u-bottom-44{
    bottom: 11rem !important;
  }

  .tablet-large\:u-left-44{
    left: 11rem !important;
  }

  .tablet-large\:u-top-48{
    top: 12rem !important;
  }

  .tablet-large\:u-right-48{
    right: 12rem !important;
  }

  .tablet-large\:u-bottom-48{
    bottom: 12rem !important;
  }

  .tablet-large\:u-left-48{
    left: 12rem !important;
  }

  .tablet-large\:u-top-52{
    top: 13rem !important;
  }

  .tablet-large\:u-right-52{
    right: 13rem !important;
  }

  .tablet-large\:u-bottom-52{
    bottom: 13rem !important;
  }

  .tablet-large\:u-left-52{
    left: 13rem !important;
  }

  .tablet-large\:u-top-56{
    top: 14rem !important;
  }

  .tablet-large\:u-right-56{
    right: 14rem !important;
  }

  .tablet-large\:u-bottom-56{
    bottom: 14rem !important;
  }

  .tablet-large\:u-left-56{
    left: 14rem !important;
  }

  .tablet-large\:u-top-60{
    top: 15rem !important;
  }

  .tablet-large\:u-right-60{
    right: 15rem !important;
  }

  .tablet-large\:u-bottom-60{
    bottom: 15rem !important;
  }

  .tablet-large\:u-left-60{
    left: 15rem !important;
  }

  .tablet-large\:u-top-64{
    top: 16rem !important;
  }

  .tablet-large\:u-right-64{
    right: 16rem !important;
  }

  .tablet-large\:u-bottom-64{
    bottom: 16rem !important;
  }

  .tablet-large\:u-left-64{
    left: 16rem !important;
  }

  .tablet-large\:u-top-72{
    top: 18rem !important;
  }

  .tablet-large\:u-right-72{
    right: 18rem !important;
  }

  .tablet-large\:u-bottom-72{
    bottom: 18rem !important;
  }

  .tablet-large\:u-left-72{
    left: 18rem !important;
  }

  .tablet-large\:u-top-80{
    top: 20rem !important;
  }

  .tablet-large\:u-right-80{
    right: 20rem !important;
  }

  .tablet-large\:u-bottom-80{
    bottom: 20rem !important;
  }

  .tablet-large\:u-left-80{
    left: 20rem !important;
  }

  .tablet-large\:u-top-96{
    top: 24rem !important;
  }

  .tablet-large\:u-right-96{
    right: 24rem !important;
  }

  .tablet-large\:u-bottom-96{
    bottom: 24rem !important;
  }

  .tablet-large\:u-left-96{
    left: 24rem !important;
  }

  .tablet-large\:u-top-auto{
    top: auto !important;
  }

  .tablet-large\:u-right-auto{
    right: auto !important;
  }

  .tablet-large\:u-bottom-auto{
    bottom: auto !important;
  }

  .tablet-large\:u-left-auto{
    left: auto !important;
  }

  .tablet-large\:u-top-px{
    top: 1px !important;
  }

  .tablet-large\:u-right-px{
    right: 1px !important;
  }

  .tablet-large\:u-bottom-px{
    bottom: 1px !important;
  }

  .tablet-large\:u-left-px{
    left: 1px !important;
  }

  .tablet-large\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .tablet-large\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .tablet-large\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .tablet-large\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .tablet-large\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .tablet-large\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .tablet-large\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .tablet-large\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .tablet-large\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .tablet-large\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .tablet-large\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .tablet-large\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .tablet-large\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .tablet-large\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .tablet-large\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .tablet-large\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .tablet-large\:u--top-0{
    top: 0px !important;
  }

  .tablet-large\:u--right-0{
    right: 0px !important;
  }

  .tablet-large\:u--bottom-0{
    bottom: 0px !important;
  }

  .tablet-large\:u--left-0{
    left: 0px !important;
  }

  .tablet-large\:u--top-1{
    top: -0.25rem !important;
  }

  .tablet-large\:u--right-1{
    right: -0.25rem !important;
  }

  .tablet-large\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .tablet-large\:u--left-1{
    left: -0.25rem !important;
  }

  .tablet-large\:u--top-2{
    top: -0.5rem !important;
  }

  .tablet-large\:u--right-2{
    right: -0.5rem !important;
  }

  .tablet-large\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .tablet-large\:u--left-2{
    left: -0.5rem !important;
  }

  .tablet-large\:u--top-3{
    top: -0.75rem !important;
  }

  .tablet-large\:u--right-3{
    right: -0.75rem !important;
  }

  .tablet-large\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .tablet-large\:u--left-3{
    left: -0.75rem !important;
  }

  .tablet-large\:u--top-4{
    top: -1rem !important;
  }

  .tablet-large\:u--right-4{
    right: -1rem !important;
  }

  .tablet-large\:u--bottom-4{
    bottom: -1rem !important;
  }

  .tablet-large\:u--left-4{
    left: -1rem !important;
  }

  .tablet-large\:u--top-5{
    top: -1.25rem !important;
  }

  .tablet-large\:u--right-5{
    right: -1.25rem !important;
  }

  .tablet-large\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .tablet-large\:u--left-5{
    left: -1.25rem !important;
  }

  .tablet-large\:u--top-6{
    top: -1.5rem !important;
  }

  .tablet-large\:u--right-6{
    right: -1.5rem !important;
  }

  .tablet-large\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .tablet-large\:u--left-6{
    left: -1.5rem !important;
  }

  .tablet-large\:u--top-7{
    top: -1.75rem !important;
  }

  .tablet-large\:u--right-7{
    right: -1.75rem !important;
  }

  .tablet-large\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .tablet-large\:u--left-7{
    left: -1.75rem !important;
  }

  .tablet-large\:u--top-8{
    top: -2rem !important;
  }

  .tablet-large\:u--right-8{
    right: -2rem !important;
  }

  .tablet-large\:u--bottom-8{
    bottom: -2rem !important;
  }

  .tablet-large\:u--left-8{
    left: -2rem !important;
  }

  .tablet-large\:u--top-9{
    top: -2.25rem !important;
  }

  .tablet-large\:u--right-9{
    right: -2.25rem !important;
  }

  .tablet-large\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .tablet-large\:u--left-9{
    left: -2.25rem !important;
  }

  .tablet-large\:u--top-10{
    top: -2.5rem !important;
  }

  .tablet-large\:u--right-10{
    right: -2.5rem !important;
  }

  .tablet-large\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .tablet-large\:u--left-10{
    left: -2.5rem !important;
  }

  .tablet-large\:u--top-11{
    top: -2.75rem !important;
  }

  .tablet-large\:u--right-11{
    right: -2.75rem !important;
  }

  .tablet-large\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .tablet-large\:u--left-11{
    left: -2.75rem !important;
  }

  .tablet-large\:u--top-12{
    top: -3rem !important;
  }

  .tablet-large\:u--right-12{
    right: -3rem !important;
  }

  .tablet-large\:u--bottom-12{
    bottom: -3rem !important;
  }

  .tablet-large\:u--left-12{
    left: -3rem !important;
  }

  .tablet-large\:u--top-14{
    top: -3.5rem !important;
  }

  .tablet-large\:u--right-14{
    right: -3.5rem !important;
  }

  .tablet-large\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .tablet-large\:u--left-14{
    left: -3.5rem !important;
  }

  .tablet-large\:u--top-16{
    top: -4rem !important;
  }

  .tablet-large\:u--right-16{
    right: -4rem !important;
  }

  .tablet-large\:u--bottom-16{
    bottom: -4rem !important;
  }

  .tablet-large\:u--left-16{
    left: -4rem !important;
  }

  .tablet-large\:u--top-20{
    top: -5rem !important;
  }

  .tablet-large\:u--right-20{
    right: -5rem !important;
  }

  .tablet-large\:u--bottom-20{
    bottom: -5rem !important;
  }

  .tablet-large\:u--left-20{
    left: -5rem !important;
  }

  .tablet-large\:u--top-24{
    top: -6rem !important;
  }

  .tablet-large\:u--right-24{
    right: -6rem !important;
  }

  .tablet-large\:u--bottom-24{
    bottom: -6rem !important;
  }

  .tablet-large\:u--left-24{
    left: -6rem !important;
  }

  .tablet-large\:u--top-28{
    top: -7rem !important;
  }

  .tablet-large\:u--right-28{
    right: -7rem !important;
  }

  .tablet-large\:u--bottom-28{
    bottom: -7rem !important;
  }

  .tablet-large\:u--left-28{
    left: -7rem !important;
  }

  .tablet-large\:u--top-32{
    top: -8rem !important;
  }

  .tablet-large\:u--right-32{
    right: -8rem !important;
  }

  .tablet-large\:u--bottom-32{
    bottom: -8rem !important;
  }

  .tablet-large\:u--left-32{
    left: -8rem !important;
  }

  .tablet-large\:u--top-36{
    top: -9rem !important;
  }

  .tablet-large\:u--right-36{
    right: -9rem !important;
  }

  .tablet-large\:u--bottom-36{
    bottom: -9rem !important;
  }

  .tablet-large\:u--left-36{
    left: -9rem !important;
  }

  .tablet-large\:u--top-40{
    top: -10rem !important;
  }

  .tablet-large\:u--right-40{
    right: -10rem !important;
  }

  .tablet-large\:u--bottom-40{
    bottom: -10rem !important;
  }

  .tablet-large\:u--left-40{
    left: -10rem !important;
  }

  .tablet-large\:u--top-44{
    top: -11rem !important;
  }

  .tablet-large\:u--right-44{
    right: -11rem !important;
  }

  .tablet-large\:u--bottom-44{
    bottom: -11rem !important;
  }

  .tablet-large\:u--left-44{
    left: -11rem !important;
  }

  .tablet-large\:u--top-48{
    top: -12rem !important;
  }

  .tablet-large\:u--right-48{
    right: -12rem !important;
  }

  .tablet-large\:u--bottom-48{
    bottom: -12rem !important;
  }

  .tablet-large\:u--left-48{
    left: -12rem !important;
  }

  .tablet-large\:u--top-52{
    top: -13rem !important;
  }

  .tablet-large\:u--right-52{
    right: -13rem !important;
  }

  .tablet-large\:u--bottom-52{
    bottom: -13rem !important;
  }

  .tablet-large\:u--left-52{
    left: -13rem !important;
  }

  .tablet-large\:u--top-56{
    top: -14rem !important;
  }

  .tablet-large\:u--right-56{
    right: -14rem !important;
  }

  .tablet-large\:u--bottom-56{
    bottom: -14rem !important;
  }

  .tablet-large\:u--left-56{
    left: -14rem !important;
  }

  .tablet-large\:u--top-60{
    top: -15rem !important;
  }

  .tablet-large\:u--right-60{
    right: -15rem !important;
  }

  .tablet-large\:u--bottom-60{
    bottom: -15rem !important;
  }

  .tablet-large\:u--left-60{
    left: -15rem !important;
  }

  .tablet-large\:u--top-64{
    top: -16rem !important;
  }

  .tablet-large\:u--right-64{
    right: -16rem !important;
  }

  .tablet-large\:u--bottom-64{
    bottom: -16rem !important;
  }

  .tablet-large\:u--left-64{
    left: -16rem !important;
  }

  .tablet-large\:u--top-72{
    top: -18rem !important;
  }

  .tablet-large\:u--right-72{
    right: -18rem !important;
  }

  .tablet-large\:u--bottom-72{
    bottom: -18rem !important;
  }

  .tablet-large\:u--left-72{
    left: -18rem !important;
  }

  .tablet-large\:u--top-80{
    top: -20rem !important;
  }

  .tablet-large\:u--right-80{
    right: -20rem !important;
  }

  .tablet-large\:u--bottom-80{
    bottom: -20rem !important;
  }

  .tablet-large\:u--left-80{
    left: -20rem !important;
  }

  .tablet-large\:u--top-96{
    top: -24rem !important;
  }

  .tablet-large\:u--right-96{
    right: -24rem !important;
  }

  .tablet-large\:u--bottom-96{
    bottom: -24rem !important;
  }

  .tablet-large\:u--left-96{
    left: -24rem !important;
  }

  .tablet-large\:u--top-px{
    top: -1px !important;
  }

  .tablet-large\:u--right-px{
    right: -1px !important;
  }

  .tablet-large\:u--bottom-px{
    bottom: -1px !important;
  }

  .tablet-large\:u--left-px{
    left: -1px !important;
  }

  .tablet-large\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .tablet-large\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .tablet-large\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .tablet-large\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .tablet-large\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .tablet-large\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .tablet-large\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .tablet-large\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .tablet-large\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .tablet-large\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .tablet-large\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .tablet-large\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .tablet-large\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .tablet-large\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .tablet-large\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .tablet-large\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .tablet-large\:u-top-1\/2{
    top: 50% !important;
  }

  .tablet-large\:u-right-1\/2{
    right: 50% !important;
  }

  .tablet-large\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .tablet-large\:u-left-1\/2{
    left: 50% !important;
  }

  .tablet-large\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .tablet-large\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .tablet-large\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .tablet-large\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .tablet-large\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .tablet-large\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .tablet-large\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .tablet-large\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .tablet-large\:u-top-1\/4{
    top: 25% !important;
  }

  .tablet-large\:u-right-1\/4{
    right: 25% !important;
  }

  .tablet-large\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .tablet-large\:u-left-1\/4{
    left: 25% !important;
  }

  .tablet-large\:u-top-2\/4{
    top: 50% !important;
  }

  .tablet-large\:u-right-2\/4{
    right: 50% !important;
  }

  .tablet-large\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .tablet-large\:u-left-2\/4{
    left: 50% !important;
  }

  .tablet-large\:u-top-3\/4{
    top: 75% !important;
  }

  .tablet-large\:u-right-3\/4{
    right: 75% !important;
  }

  .tablet-large\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .tablet-large\:u-left-3\/4{
    left: 75% !important;
  }

  .tablet-large\:u-top-full{
    top: 100% !important;
  }

  .tablet-large\:u-right-full{
    right: 100% !important;
  }

  .tablet-large\:u-bottom-full{
    bottom: 100% !important;
  }

  .tablet-large\:u-left-full{
    left: 100% !important;
  }

  .tablet-large\:u--top-1\/2{
    top: -50% !important;
  }

  .tablet-large\:u--right-1\/2{
    right: -50% !important;
  }

  .tablet-large\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .tablet-large\:u--left-1\/2{
    left: -50% !important;
  }

  .tablet-large\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .tablet-large\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .tablet-large\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .tablet-large\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .tablet-large\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .tablet-large\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .tablet-large\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .tablet-large\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .tablet-large\:u--top-1\/4{
    top: -25% !important;
  }

  .tablet-large\:u--right-1\/4{
    right: -25% !important;
  }

  .tablet-large\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .tablet-large\:u--left-1\/4{
    left: -25% !important;
  }

  .tablet-large\:u--top-2\/4{
    top: -50% !important;
  }

  .tablet-large\:u--right-2\/4{
    right: -50% !important;
  }

  .tablet-large\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .tablet-large\:u--left-2\/4{
    left: -50% !important;
  }

  .tablet-large\:u--top-3\/4{
    top: -75% !important;
  }

  .tablet-large\:u--right-3\/4{
    right: -75% !important;
  }

  .tablet-large\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .tablet-large\:u--left-3\/4{
    left: -75% !important;
  }

  .tablet-large\:u--top-full{
    top: -100% !important;
  }

  .tablet-large\:u--right-full{
    right: -100% !important;
  }

  .tablet-large\:u--bottom-full{
    bottom: -100% !important;
  }

  .tablet-large\:u--left-full{
    left: -100% !important;
  }

  .tablet-large\:u-resize-none{
    resize: none !important;
  }

  .tablet-large\:u-resize-y{
    resize: vertical !important;
  }

  .tablet-large\:u-resize-x{
    resize: horizontal !important;
  }

  .tablet-large\:u-resize{
    resize: both !important;
  }

  .tablet-large\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .tablet-large\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .tablet-large\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .tablet-large\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .tablet-large\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .tablet-large\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-large\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-large\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-large\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-large\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet-large\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet-large\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet-large\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-large\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-large\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet-large\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet-large\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet-large\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet-large\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet-large\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet-large\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet-large\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet-large\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet-large\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet-large\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet-large\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet-large\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet-large\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet-large\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet-large\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet-large\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-large\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .tablet-large\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .tablet-large\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .tablet-large\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .tablet-large\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .tablet-large\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .tablet-large\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .tablet-large\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .tablet-large\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .tablet-large\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet-large\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet-large\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet-large\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet-large\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet-large\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet-large\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .tablet-large\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .tablet-large\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .tablet-large\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .tablet-large\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .tablet-large\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .tablet-large\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .tablet-large\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .tablet-large\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-large\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-large\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-large\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-large\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-large\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-large\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-large\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-large\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-large\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-large\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-large\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-large\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-large\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-large\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .tablet-large\:u-fill-current{
    fill: currentColor !important;
  }

  .tablet-large\:u-stroke-current{
    stroke: currentColor !important;
  }

  .tablet-large\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .tablet-large\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .tablet-large\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .tablet-large\:u-table-auto{
    table-layout: auto !important;
  }

  .tablet-large\:u-table-fixed{
    table-layout: fixed !important;
  }

  .tablet-large\:u-text-left{
    text-align: left !important;
  }

  .tablet-large\:u-text-center{
    text-align: center !important;
  }

  .tablet-large\:u-text-right{
    text-align: right !important;
  }

  .tablet-large\:u-text-justify{
    text-align: justify !important;
  }

  .tablet-large\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-transparent{
    color: transparent !important;
  }

  .tablet-large\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .tablet-large\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .tablet-large\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .tablet-large\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .tablet-large\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .tablet-large\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .tablet-large\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .tablet-large\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .tablet-large\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .tablet-large\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .tablet-large\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .tablet-large\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .tablet-large\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .tablet-large\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .tablet-large\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .tablet-large\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .tablet-large\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .tablet-large\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .tablet-large\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .tablet-large\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .tablet-large\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .tablet-large\:u-italic{
    font-style: italic !important;
  }

  .tablet-large\:u-not-italic{
    font-style: normal !important;
  }

  .tablet-large\:u-uppercase{
    text-transform: uppercase !important;
  }

  .tablet-large\:u-lowercase{
    text-transform: lowercase !important;
  }

  .tablet-large\:u-capitalize{
    text-transform: capitalize !important;
  }

  .tablet-large\:u-normal-case{
    text-transform: none !important;
  }

  .tablet-large\:u-underline{
    text-decoration: underline !important;
  }

  .tablet-large\:u-line-through{
    text-decoration: line-through !important;
  }

  .tablet-large\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .tablet-large\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .tablet-large\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .tablet-large\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .tablet-large\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .tablet-large\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .tablet-large\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .tablet-large\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .tablet-large\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .tablet-large\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .tablet-large\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .tablet-large\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .tablet-large\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .tablet-large\:u-ordinal, .tablet-large\:u-slashed-zero, .tablet-large\:u-lining-nums, .tablet-large\:u-oldstyle-nums, .tablet-large\:u-proportional-nums, .tablet-large\:u-tabular-nums, .tablet-large\:u-diagonal-fractions, .tablet-large\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .tablet-large\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .tablet-large\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .tablet-large\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .tablet-large\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .tablet-large\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .tablet-large\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .tablet-large\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .tablet-large\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .tablet-large\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .tablet-large\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .tablet-large\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .tablet-large\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .tablet-large\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .tablet-large\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .tablet-large\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .tablet-large\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .tablet-large\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .tablet-large\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .tablet-large\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .tablet-large\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .tablet-large\:u-align-top{
    vertical-align: top !important;
  }

  .tablet-large\:u-align-middle{
    vertical-align: middle !important;
  }

  .tablet-large\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .tablet-large\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .tablet-large\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .tablet-large\:u-visible{
    visibility: visible !important;
  }

  .tablet-large\:u-invisible{
    visibility: hidden !important;
  }

  .tablet-large\:u-whitespace-normal{
    white-space: normal !important;
  }

  .tablet-large\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .tablet-large\:u-whitespace-pre{
    white-space: pre !important;
  }

  .tablet-large\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .tablet-large\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .tablet-large\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .tablet-large\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .tablet-large\:u-break-all{
    word-break: break-all !important;
  }

  .tablet-large\:u-w-0{
    width: 0px !important;
  }

  .tablet-large\:u-w-1{
    width: 0.25rem !important;
  }

  .tablet-large\:u-w-2{
    width: 0.5rem !important;
  }

  .tablet-large\:u-w-3{
    width: 0.75rem !important;
  }

  .tablet-large\:u-w-4{
    width: 1rem !important;
  }

  .tablet-large\:u-w-5{
    width: 1.25rem !important;
  }

  .tablet-large\:u-w-6{
    width: 1.5rem !important;
  }

  .tablet-large\:u-w-7{
    width: 1.75rem !important;
  }

  .tablet-large\:u-w-8{
    width: 2rem !important;
  }

  .tablet-large\:u-w-9{
    width: 2.25rem !important;
  }

  .tablet-large\:u-w-10{
    width: 2.5rem !important;
  }

  .tablet-large\:u-w-11{
    width: 2.75rem !important;
  }

  .tablet-large\:u-w-12{
    width: 3rem !important;
  }

  .tablet-large\:u-w-14{
    width: 3.5rem !important;
  }

  .tablet-large\:u-w-16{
    width: 4rem !important;
  }

  .tablet-large\:u-w-20{
    width: 5rem !important;
  }

  .tablet-large\:u-w-24{
    width: 6rem !important;
  }

  .tablet-large\:u-w-28{
    width: 7rem !important;
  }

  .tablet-large\:u-w-32{
    width: 8rem !important;
  }

  .tablet-large\:u-w-36{
    width: 9rem !important;
  }

  .tablet-large\:u-w-40{
    width: 10rem !important;
  }

  .tablet-large\:u-w-44{
    width: 11rem !important;
  }

  .tablet-large\:u-w-48{
    width: 12rem !important;
  }

  .tablet-large\:u-w-52{
    width: 13rem !important;
  }

  .tablet-large\:u-w-56{
    width: 14rem !important;
  }

  .tablet-large\:u-w-60{
    width: 15rem !important;
  }

  .tablet-large\:u-w-64{
    width: 16rem !important;
  }

  .tablet-large\:u-w-72{
    width: 18rem !important;
  }

  .tablet-large\:u-w-80{
    width: 20rem !important;
  }

  .tablet-large\:u-w-96{
    width: 24rem !important;
  }

  .tablet-large\:u-w-auto{
    width: auto !important;
  }

  .tablet-large\:u-w-px{
    width: 1px !important;
  }

  .tablet-large\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .tablet-large\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .tablet-large\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .tablet-large\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .tablet-large\:u-w-1\/2{
    width: 50% !important;
  }

  .tablet-large\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .tablet-large\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .tablet-large\:u-w-1\/4{
    width: 25% !important;
  }

  .tablet-large\:u-w-2\/4{
    width: 50% !important;
  }

  .tablet-large\:u-w-3\/4{
    width: 75% !important;
  }

  .tablet-large\:u-w-1\/5{
    width: 20% !important;
  }

  .tablet-large\:u-w-2\/5{
    width: 40% !important;
  }

  .tablet-large\:u-w-3\/5{
    width: 60% !important;
  }

  .tablet-large\:u-w-4\/5{
    width: 80% !important;
  }

  .tablet-large\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .tablet-large\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .tablet-large\:u-w-3\/6{
    width: 50% !important;
  }

  .tablet-large\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .tablet-large\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .tablet-large\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .tablet-large\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .tablet-large\:u-w-3\/12{
    width: 25% !important;
  }

  .tablet-large\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .tablet-large\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .tablet-large\:u-w-6\/12{
    width: 50% !important;
  }

  .tablet-large\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .tablet-large\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .tablet-large\:u-w-9\/12{
    width: 75% !important;
  }

  .tablet-large\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .tablet-large\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .tablet-large\:u-w-full{
    width: 100% !important;
  }

  .tablet-large\:u-w-screen{
    width: 100vw !important;
  }

  .tablet-large\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .tablet-large\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .tablet-large\:u-z-0{
    z-index: 0 !important;
  }

  .tablet-large\:u-z-10{
    z-index: 10 !important;
  }

  .tablet-large\:u-z-20{
    z-index: 20 !important;
  }

  .tablet-large\:u-z-30{
    z-index: 30 !important;
  }

  .tablet-large\:u-z-40{
    z-index: 40 !important;
  }

  .tablet-large\:u-z-50{
    z-index: 50 !important;
  }

  .tablet-large\:u-z-auto{
    z-index: auto !important;
  }

  .tablet-large\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .tablet-large\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .tablet-large\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .tablet-large\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .tablet-large\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .tablet-large\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .tablet-large\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .tablet-large\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .tablet-large\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .tablet-large\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .tablet-large\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .tablet-large\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .tablet-large\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .tablet-large\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .tablet-large\:u-gap-0{
    gap: 0px !important;
  }

  .tablet-large\:u-gap-1{
    gap: 0.25rem !important;
  }

  .tablet-large\:u-gap-2{
    gap: 0.5rem !important;
  }

  .tablet-large\:u-gap-3{
    gap: 0.75rem !important;
  }

  .tablet-large\:u-gap-4{
    gap: 1rem !important;
  }

  .tablet-large\:u-gap-5{
    gap: 1.25rem !important;
  }

  .tablet-large\:u-gap-6{
    gap: 1.5rem !important;
  }

  .tablet-large\:u-gap-7{
    gap: 1.75rem !important;
  }

  .tablet-large\:u-gap-8{
    gap: 2rem !important;
  }

  .tablet-large\:u-gap-9{
    gap: 2.25rem !important;
  }

  .tablet-large\:u-gap-10{
    gap: 2.5rem !important;
  }

  .tablet-large\:u-gap-11{
    gap: 2.75rem !important;
  }

  .tablet-large\:u-gap-12{
    gap: 3rem !important;
  }

  .tablet-large\:u-gap-14{
    gap: 3.5rem !important;
  }

  .tablet-large\:u-gap-16{
    gap: 4rem !important;
  }

  .tablet-large\:u-gap-20{
    gap: 5rem !important;
  }

  .tablet-large\:u-gap-24{
    gap: 6rem !important;
  }

  .tablet-large\:u-gap-28{
    gap: 7rem !important;
  }

  .tablet-large\:u-gap-32{
    gap: 8rem !important;
  }

  .tablet-large\:u-gap-36{
    gap: 9rem !important;
  }

  .tablet-large\:u-gap-40{
    gap: 10rem !important;
  }

  .tablet-large\:u-gap-44{
    gap: 11rem !important;
  }

  .tablet-large\:u-gap-48{
    gap: 12rem !important;
  }

  .tablet-large\:u-gap-52{
    gap: 13rem !important;
  }

  .tablet-large\:u-gap-56{
    gap: 14rem !important;
  }

  .tablet-large\:u-gap-60{
    gap: 15rem !important;
  }

  .tablet-large\:u-gap-64{
    gap: 16rem !important;
  }

  .tablet-large\:u-gap-72{
    gap: 18rem !important;
  }

  .tablet-large\:u-gap-80{
    gap: 20rem !important;
  }

  .tablet-large\:u-gap-96{
    gap: 24rem !important;
  }

  .tablet-large\:u-gap-px{
    gap: 1px !important;
  }

  .tablet-large\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .tablet-large\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .tablet-large\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .tablet-large\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .tablet-large\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .tablet-large\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .tablet-large\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .tablet-large\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .tablet-large\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .tablet-large\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .tablet-large\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .tablet-large\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .tablet-large\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .tablet-large\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .tablet-large\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .tablet-large\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .tablet-large\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .tablet-large\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .tablet-large\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .tablet-large\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .tablet-large\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .tablet-large\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .tablet-large\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .tablet-large\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .tablet-large\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .tablet-large\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .tablet-large\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .tablet-large\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .tablet-large\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .tablet-large\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .tablet-large\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .tablet-large\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .tablet-large\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .tablet-large\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .tablet-large\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .tablet-large\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .tablet-large\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .tablet-large\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .tablet-large\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .tablet-large\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .tablet-large\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .tablet-large\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .tablet-large\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .tablet-large\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .tablet-large\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .tablet-large\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .tablet-large\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .tablet-large\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .tablet-large\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .tablet-large\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .tablet-large\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .tablet-large\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .tablet-large\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .tablet-large\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .tablet-large\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .tablet-large\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .tablet-large\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .tablet-large\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .tablet-large\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .tablet-large\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .tablet-large\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .tablet-large\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .tablet-large\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .tablet-large\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .tablet-large\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .tablet-large\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .tablet-large\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .tablet-large\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .tablet-large\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .tablet-large\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .tablet-large\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .tablet-large\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .tablet-large\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .tablet-large\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .tablet-large\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .tablet-large\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .tablet-large\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .tablet-large\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .tablet-large\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .tablet-large\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .tablet-large\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .tablet-large\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .tablet-large\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .tablet-large\:u-col-auto{
    grid-column: auto !important;
  }

  .tablet-large\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .tablet-large\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .tablet-large\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .tablet-large\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .tablet-large\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .tablet-large\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .tablet-large\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .tablet-large\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .tablet-large\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .tablet-large\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .tablet-large\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .tablet-large\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .tablet-large\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .tablet-large\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .tablet-large\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .tablet-large\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .tablet-large\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .tablet-large\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .tablet-large\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .tablet-large\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .tablet-large\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .tablet-large\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .tablet-large\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .tablet-large\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .tablet-large\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .tablet-large\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .tablet-large\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .tablet-large\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .tablet-large\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .tablet-large\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .tablet-large\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .tablet-large\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .tablet-large\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .tablet-large\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .tablet-large\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .tablet-large\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .tablet-large\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .tablet-large\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .tablet-large\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .tablet-large\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .tablet-large\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .tablet-large\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .tablet-large\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .tablet-large\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .tablet-large\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .tablet-large\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .tablet-large\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .tablet-large\:u-row-auto{
    grid-row: auto !important;
  }

  .tablet-large\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .tablet-large\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .tablet-large\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .tablet-large\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .tablet-large\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .tablet-large\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .tablet-large\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .tablet-large\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .tablet-large\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .tablet-large\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .tablet-large\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .tablet-large\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .tablet-large\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .tablet-large\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .tablet-large\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .tablet-large\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .tablet-large\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .tablet-large\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .tablet-large\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .tablet-large\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .tablet-large\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .tablet-large\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .tablet-large\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .tablet-large\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .tablet-large\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .tablet-large\:u-transform-none{
    transform: none !important;
  }

  .tablet-large\:u-origin-center{
    transform-origin: center !important;
  }

  .tablet-large\:u-origin-top{
    transform-origin: top !important;
  }

  .tablet-large\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .tablet-large\:u-origin-right{
    transform-origin: right !important;
  }

  .tablet-large\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .tablet-large\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .tablet-large\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .tablet-large\:u-origin-left{
    transform-origin: left !important;
  }

  .tablet-large\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .tablet-large\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet-large\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet-large\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet-large\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet-large\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet-large\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet-large\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet-large\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet-large\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet-large\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet-large\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .tablet-large\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .tablet-large\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .tablet-large\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .tablet-large\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .tablet-large\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .tablet-large\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .tablet-large\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .tablet-large\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .tablet-large\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .tablet-large\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .tablet-large\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .tablet-large\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .tablet-large\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .tablet-large\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .tablet-large\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .tablet-large\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .tablet-large\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .tablet-large\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .tablet-large\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .tablet-large\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet-large\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet-large\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet-large\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet-large\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet-large\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet-large\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet-large\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet-large\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet-large\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet-large\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .tablet-large\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .tablet-large\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .tablet-large\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .tablet-large\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .tablet-large\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .tablet-large\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .tablet-large\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .tablet-large\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .tablet-large\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .tablet-large\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .tablet-large\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .tablet-large\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .tablet-large\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .tablet-large\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .tablet-large\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .tablet-large\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .tablet-large\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .tablet-large\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .tablet-large\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .tablet-large\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .tablet-large\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .tablet-large\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .tablet-large\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .tablet-large\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .tablet-large\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .tablet-large\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .tablet-large\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .tablet-large\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .tablet-large\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .tablet-large\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .tablet-large\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .tablet-large\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .tablet-large\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .tablet-large\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .tablet-large\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .tablet-large\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .tablet-large\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .tablet-large\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .tablet-large\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .tablet-large\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .tablet-large\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .tablet-large\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .tablet-large\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .tablet-large\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .tablet-large\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .tablet-large\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .tablet-large\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .tablet-large\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .tablet-large\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .tablet-large\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .tablet-large\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .tablet-large\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .tablet-large\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .tablet-large\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .tablet-large\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .tablet-large\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .tablet-large\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .tablet-large\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .tablet-large\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .tablet-large\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .tablet-large\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .tablet-large\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .tablet-large\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .tablet-large\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .tablet-large\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .tablet-large\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .tablet-large\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .tablet-large\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .tablet-large\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .tablet-large\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .tablet-large\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .tablet-large\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .tablet-large\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .tablet-large\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .tablet-large\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .tablet-large\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .tablet-large\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .tablet-large\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .tablet-large\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .tablet-large\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .tablet-large\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .tablet-large\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .tablet-large\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .tablet-large\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .tablet-large\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .tablet-large\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .tablet-large\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .tablet-large\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .tablet-large\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .tablet-large\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .tablet-large\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .tablet-large\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .tablet-large\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .tablet-large\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .tablet-large\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .tablet-large\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .tablet-large\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .tablet-large\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .tablet-large\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .tablet-large\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .tablet-large\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .tablet-large\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet-large\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet-large\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet-large\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .tablet-large\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet-large\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet-large\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet-large\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .tablet-large\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet-large\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet-large\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet-large\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .tablet-large\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet-large\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .tablet-large\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .tablet-large\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .tablet-large\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .tablet-large\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .tablet-large\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .tablet-large\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .tablet-large\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .tablet-large\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .tablet-large\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .tablet-large\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .tablet-large\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .tablet-large\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .tablet-large\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .tablet-large\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .tablet-large\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .tablet-large\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .tablet-large\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet-large\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet-large\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet-large\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet-large\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .tablet-large\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet-large\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet-large\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet-large\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .tablet-large\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet-large\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet-large\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet-large\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .tablet-large\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet-large\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet-large\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet-large\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .tablet-large\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet-large\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .tablet-large\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .tablet-large\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .tablet-large\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .tablet-large\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .tablet-large\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .tablet-large\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .tablet-large\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .tablet-large\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .tablet-large\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .tablet-large\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .tablet-large\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .tablet-large\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .tablet-large\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .tablet-large\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .tablet-large\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .tablet-large\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .tablet-large\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet-large\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet-large\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet-large\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet-large\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .tablet-large\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet-large\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet-large\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .tablet-large\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .tablet-large\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .tablet-large\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .tablet-large\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .tablet-large\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet-large\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet-large\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .tablet-large\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .tablet-large\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .tablet-large\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .tablet-large\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .tablet-large\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet-large\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet-large\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet-large\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .tablet-large\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet-large\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet-large\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet-large\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .tablet-large\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet-large\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet-large\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet-large\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .tablet-large\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet-large\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .tablet-large\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .tablet-large\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .tablet-large\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .tablet-large\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .tablet-large\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .tablet-large\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .tablet-large\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .tablet-large\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .tablet-large\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .tablet-large\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .tablet-large\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .tablet-large\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .tablet-large\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .tablet-large\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .tablet-large\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .tablet-large\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .tablet-large\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet-large\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet-large\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet-large\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet-large\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .tablet-large\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet-large\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet-large\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet-large\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .tablet-large\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet-large\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet-large\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet-large\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .tablet-large\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet-large\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet-large\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet-large\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .tablet-large\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet-large\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .tablet-large\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .tablet-large\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .tablet-large\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .tablet-large\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .tablet-large\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .tablet-large\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .tablet-large\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .tablet-large\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .tablet-large\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .tablet-large\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .tablet-large\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .tablet-large\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .tablet-large\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .tablet-large\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .tablet-large\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .tablet-large\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .tablet-large\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet-large\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet-large\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet-large\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet-large\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .tablet-large\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet-large\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet-large\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .tablet-large\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .tablet-large\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .tablet-large\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .tablet-large\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .tablet-large\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet-large\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet-large\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .tablet-large\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .tablet-large\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .tablet-large\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .tablet-large\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .tablet-large\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet-large\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet-large\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet-large\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .tablet-large\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet-large\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet-large\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet-large\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .tablet-large\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet-large\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet-large\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet-large\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .tablet-large\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet-large\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .tablet-large\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .tablet-large\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .tablet-large\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .tablet-large\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .tablet-large\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .tablet-large\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .tablet-large\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .tablet-large\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .tablet-large\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .tablet-large\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .tablet-large\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .tablet-large\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .tablet-large\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .tablet-large\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .tablet-large\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .tablet-large\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .tablet-large\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet-large\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet-large\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet-large\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet-large\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .tablet-large\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet-large\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet-large\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet-large\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .tablet-large\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet-large\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet-large\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet-large\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .tablet-large\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet-large\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet-large\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet-large\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .tablet-large\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet-large\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .tablet-large\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .tablet-large\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .tablet-large\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .tablet-large\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .tablet-large\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .tablet-large\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .tablet-large\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .tablet-large\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .tablet-large\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .tablet-large\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .tablet-large\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .tablet-large\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .tablet-large\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .tablet-large\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .tablet-large\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .tablet-large\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .tablet-large\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet-large\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet-large\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet-large\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet-large\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .tablet-large\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet-large\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet-large\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .tablet-large\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .tablet-large\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .tablet-large\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .tablet-large\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .tablet-large\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet-large\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet-large\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .tablet-large\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .tablet-large\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .tablet-large\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .tablet-large\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .tablet-large\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet-large\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet-large\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet-large\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .tablet-large\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet-large\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet-large\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet-large\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .tablet-large\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet-large\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet-large\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet-large\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .tablet-large\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet-large\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .tablet-large\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .tablet-large\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .tablet-large\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .tablet-large\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .tablet-large\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .tablet-large\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .tablet-large\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .tablet-large\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .tablet-large\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .tablet-large\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .tablet-large\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .tablet-large\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .tablet-large\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .tablet-large\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .tablet-large\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .tablet-large\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .tablet-large\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet-large\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet-large\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet-large\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet-large\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .tablet-large\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet-large\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet-large\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet-large\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .tablet-large\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet-large\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet-large\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet-large\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .tablet-large\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet-large\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet-large\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet-large\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .tablet-large\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet-large\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .tablet-large\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .tablet-large\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .tablet-large\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .tablet-large\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .tablet-large\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .tablet-large\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .tablet-large\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .tablet-large\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .tablet-large\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .tablet-large\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .tablet-large\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .tablet-large\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .tablet-large\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .tablet-large\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .tablet-large\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .tablet-large\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .tablet-large\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet-large\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet-large\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet-large\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet-large\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .tablet-large\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet-large\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet-large\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .tablet-large\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .tablet-large\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .tablet-large\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .tablet-large\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .tablet-large\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet-large\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet-large\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .tablet-large\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .tablet-large\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .tablet-large\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .tablet-large\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .tablet-large\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .tablet-large\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .tablet-large\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .tablet-large\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .tablet-large\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .tablet-large\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .tablet-large\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .tablet-large\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .tablet-large\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .tablet-large\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .tablet-large\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .tablet-large\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .tablet-large\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .tablet-large\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .tablet-large\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .tablet-large\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .tablet-large\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .tablet-large\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .tablet-large\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .tablet-large\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .tablet-large\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .tablet-large\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .tablet-large\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .tablet-large\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .tablet-large\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .tablet-large\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .tablet-large\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .tablet-large\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .tablet-large\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .tablet-large\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .tablet-large\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .tablet-large\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .tablet-large\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .tablet-large\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .tablet-large\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .tablet-large\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .tablet-large\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .tablet-large\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .tablet-large\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .tablet-large\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .tablet-large\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .tablet-large\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .tablet-large\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .tablet-large\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .tablet-large\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .tablet-large\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .tablet-large\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .tablet-large\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .tablet-large\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .tablet-large\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .tablet-large\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .tablet-large\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .tablet-large\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .tablet-large\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .tablet-large\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .tablet-large\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .tablet-large\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .tablet-large\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .tablet-large\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .tablet-large\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .tablet-large\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .tablet-large\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .tablet-large\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .tablet-large\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .tablet-large\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .tablet-large\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .tablet-large\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .tablet-large\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .tablet-large\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .tablet-large\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .tablet-large\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .tablet-large\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .tablet-large\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .tablet-large\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .tablet-large\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .tablet-large\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .tablet-large\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .tablet-large\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .tablet-large\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .tablet-large\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .tablet-large\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .tablet-large\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .tablet-large\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .tablet-large\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .tablet-large\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .tablet-large\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .tablet-large\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .tablet-large\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .tablet-large\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .tablet-large\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .tablet-large\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .tablet-large\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .tablet-large\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .tablet-large\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .tablet-large\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .tablet-large\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .tablet-large\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .tablet-large\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .tablet-large\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .tablet-large\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .tablet-large\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .tablet-large\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .tablet-large\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .tablet-large\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .tablet-large\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .tablet-large\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .tablet-large\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .tablet-large\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .tablet-large\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .tablet-large\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .tablet-large\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .tablet-large\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .tablet-large\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .tablet-large\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .tablet-large\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .tablet-large\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .tablet-large\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .tablet-large\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .tablet-large\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .tablet-large\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .tablet-large\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .tablet-large\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .tablet-large\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .tablet-large\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .tablet-large\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .tablet-large\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .tablet-large\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .tablet-large\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .tablet-large\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .tablet-large\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .tablet-large\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .tablet-large\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .tablet-large\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .tablet-large\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .tablet-large\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .tablet-large\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .tablet-large\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .tablet-large\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .tablet-large\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .tablet-large\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .tablet-large\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .tablet-large\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .tablet-large\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .tablet-large\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .tablet-large\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .tablet-large\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .tablet-large\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .tablet-large\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .tablet-large\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .tablet-large\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .tablet-large\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .tablet-large\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .tablet-large\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .tablet-large\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .tablet-large\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .tablet-large\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .tablet-large\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .tablet-large\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .tablet-large\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .tablet-large\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .tablet-large\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .tablet-large\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .tablet-large\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .tablet-large\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .tablet-large\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .tablet-large\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .tablet-large\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .tablet-large\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .tablet-large\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .tablet-large\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .tablet-large\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .tablet-large\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .tablet-large\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .tablet-large\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .tablet-large\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .tablet-large\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .tablet-large\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .tablet-large\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .tablet-large\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .tablet-large\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .tablet-large\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .tablet-large\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .tablet-large\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .tablet-large\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .tablet-large\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .tablet-large\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .tablet-large\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .tablet-large\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .tablet-large\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .tablet-large\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .tablet-large\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .tablet-large\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .tablet-large\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .tablet-large\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .tablet-large\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .tablet-large\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .tablet-large\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .tablet-large\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .tablet-large\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .tablet-large\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .tablet-large\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .tablet-large\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .tablet-large\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .tablet-large\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .tablet-large\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .tablet-large\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .tablet-large\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .tablet-large\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .tablet-large\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .tablet-large\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .tablet-large\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .tablet-large\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .tablet-large\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .tablet-large\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .tablet-large\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .tablet-large\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .tablet-large\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .tablet-large\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .tablet-large\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .tablet-large\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .tablet-large\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .tablet-large\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .tablet-large\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .tablet-large\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .tablet-large\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .tablet-large\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .tablet-large\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .tablet-large\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .tablet-large\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .tablet-large\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .tablet-large\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .tablet-large\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .tablet-large\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .tablet-large\:u-transition-none{
    transition-property: none !important;
  }

  .tablet-large\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .tablet-large\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .tablet-large\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .tablet-large\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .tablet-large\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .tablet-large\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .tablet-large\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .tablet-large\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .tablet-large\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .tablet-large\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .tablet-large\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .tablet-large\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .tablet-large\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .tablet-large\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .tablet-large\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .tablet-large\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .tablet-large\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .tablet-large\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .tablet-large\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .tablet-large\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .tablet-large\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .tablet-large\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .tablet-large\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .tablet-large\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .tablet-large\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}

@media (min-width: 1120px){
  .desktop\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .desktop\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .desktop\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .desktop\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .desktop\:u-container{
      max-width: 1120px;
    }
  }

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

  .desktop\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .desktop\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .desktop\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .desktop\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .desktop\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .desktop\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .desktop\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .desktop\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .desktop\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .desktop\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .desktop\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .desktop\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .desktop\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .desktop\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .desktop\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .desktop\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .desktop\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .desktop\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .desktop\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .desktop\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .desktop\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .desktop\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .desktop\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .desktop\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .desktop\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .desktop\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .desktop\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .desktop\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .desktop\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .desktop\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .desktop\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .desktop\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .desktop\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .desktop\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .desktop\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .desktop\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .desktop\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .desktop\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .desktop\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .desktop\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .desktop\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .desktop\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .desktop\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .desktop\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .desktop\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .desktop\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .desktop\:u-bg-local{
    background-attachment: local !important;
  }

  .desktop\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .desktop\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .desktop\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .desktop\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .desktop\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .desktop\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-transparent{
    background-color: transparent !important;
  }

  .desktop\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .desktop\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .desktop\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .desktop\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .desktop\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .desktop\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .desktop\:u-bg-none{
    background-image: none !important;
  }

  .desktop\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .desktop\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .desktop\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .desktop\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .desktop\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .desktop\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .desktop\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .desktop\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .desktop\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .desktop\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .desktop\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .desktop\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .desktop\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .desktop\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .desktop\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .desktop\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .desktop\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .desktop\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .desktop\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .desktop\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .desktop\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .desktop\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .desktop\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .desktop\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .desktop\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .desktop\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .desktop\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .desktop\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .desktop\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .desktop\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .desktop\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .desktop\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .desktop\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .desktop\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .desktop\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .desktop\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .desktop\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .desktop\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .desktop\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .desktop\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .desktop\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .desktop\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .desktop\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .desktop\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .desktop\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .desktop\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .desktop\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .desktop\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .desktop\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .desktop\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .desktop\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .desktop\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .desktop\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .desktop\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .desktop\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .desktop\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .desktop\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .desktop\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .desktop\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .desktop\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .desktop\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .desktop\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .desktop\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .desktop\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .desktop\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .desktop\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .desktop\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .desktop\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .desktop\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .desktop\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .desktop\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .desktop\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .desktop\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .desktop\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .desktop\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .desktop\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .desktop\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .desktop\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .desktop\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .desktop\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .desktop\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .desktop\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .desktop\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .desktop\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .desktop\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .desktop\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .desktop\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .desktop\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .desktop\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .desktop\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .desktop\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .desktop\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .desktop\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .desktop\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .desktop\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .desktop\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .desktop\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .desktop\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .desktop\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .desktop\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .desktop\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .desktop\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .desktop\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .desktop\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .desktop\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .desktop\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .desktop\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .desktop\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .desktop\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .desktop\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .desktop\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .desktop\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .desktop\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .desktop\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .desktop\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .desktop\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .desktop\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .desktop\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .desktop\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .desktop\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .desktop\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .desktop\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .desktop\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .desktop\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .desktop\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .desktop\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .desktop\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .desktop\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .desktop\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .desktop\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .desktop\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .desktop\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .desktop\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .desktop\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .desktop\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .desktop\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .desktop\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .desktop\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .desktop\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .desktop\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .desktop\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .desktop\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .desktop\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .desktop\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .desktop\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .desktop\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .desktop\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .desktop\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .desktop\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .desktop\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .desktop\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .desktop\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .desktop\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .desktop\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .desktop\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .desktop\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .desktop\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .desktop\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .desktop\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .desktop\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .desktop\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .desktop\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .desktop\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .desktop\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .desktop\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .desktop\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .desktop\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .desktop\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .desktop\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .desktop\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .desktop\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .desktop\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .desktop\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .desktop\:u-bg-bottom{
    background-position: bottom !important;
  }

  .desktop\:u-bg-center{
    background-position: center !important;
  }

  .desktop\:u-bg-left{
    background-position: left !important;
  }

  .desktop\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .desktop\:u-bg-left-top{
    background-position: left top !important;
  }

  .desktop\:u-bg-right{
    background-position: right !important;
  }

  .desktop\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .desktop\:u-bg-right-top{
    background-position: right top !important;
  }

  .desktop\:u-bg-top{
    background-position: top !important;
  }

  .desktop\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .desktop\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .desktop\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .desktop\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .desktop\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .desktop\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .desktop\:u-bg-auto{
    background-size: auto !important;
  }

  .desktop\:u-bg-cover{
    background-size: cover !important;
  }

  .desktop\:u-bg-contain{
    background-size: contain !important;
  }

  .desktop\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .desktop\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .desktop\:u-border-separate{
    border-collapse: separate !important;
  }

  .desktop\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-transparent{
    border-color: transparent !important;
  }

  .desktop\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .desktop\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .desktop\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .desktop\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .desktop\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .desktop\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .desktop\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .desktop\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .desktop\:u-rounded-none{
    border-radius: 0 !important;
  }

  .desktop\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .desktop\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .desktop\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .desktop\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .desktop\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .desktop\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .desktop\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .desktop\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .desktop\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .desktop\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .desktop\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .desktop\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .desktop\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .desktop\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .desktop\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .desktop\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .desktop\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .desktop\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .desktop\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .desktop\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .desktop\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .desktop\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .desktop\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .desktop\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .desktop\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .desktop\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .desktop\:u-border-solid{
    border-style: solid !important;
  }

  .desktop\:u-border-dashed{
    border-style: dashed !important;
  }

  .desktop\:u-border-dotted{
    border-style: dotted !important;
  }

  .desktop\:u-border-double{
    border-style: double !important;
  }

  .desktop\:u-border-none{
    border-style: none !important;
  }

  .desktop\:u-border-0{
    border-width: 0px !important;
  }

  .desktop\:u-border-2{
    border-width: 2px !important;
  }

  .desktop\:u-border-4{
    border-width: 4px !important;
  }

  .desktop\:u-border-8{
    border-width: 8px !important;
  }

  .desktop\:u-border{
    border-width: 1px !important;
  }

  .desktop\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .desktop\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .desktop\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .desktop\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .desktop\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .desktop\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .desktop\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .desktop\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .desktop\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .desktop\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .desktop\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .desktop\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .desktop\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .desktop\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .desktop\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .desktop\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .desktop\:u-border-t{
    border-top-width: 1px !important;
  }

  .desktop\:u-border-r{
    border-right-width: 1px !important;
  }

  .desktop\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .desktop\:u-border-l{
    border-left-width: 1px !important;
  }

  .desktop\:u-box-border{
    box-sizing: border-box !important;
  }

  .desktop\:u-box-content{
    box-sizing: content-box !important;
  }

  .desktop\:u-cursor-auto{
    cursor: auto !important;
  }

  .desktop\:u-cursor-default{
    cursor: default !important;
  }

  .desktop\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .desktop\:u-cursor-wait{
    cursor: wait !important;
  }

  .desktop\:u-cursor-text{
    cursor: text !important;
  }

  .desktop\:u-cursor-move{
    cursor: move !important;
  }

  .desktop\:u-cursor-help{
    cursor: help !important;
  }

  .desktop\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .desktop\:u-block{
    display: block !important;
  }

  .desktop\:u-inline-block{
    display: inline-block !important;
  }

  .desktop\:u-inline{
    display: inline !important;
  }

  .desktop\:u-flex{
    display: flex !important;
  }

  .desktop\:u-inline-flex{
    display: inline-flex !important;
  }

  .desktop\:u-table{
    display: table !important;
  }

  .desktop\:u-table-caption{
    display: table-caption !important;
  }

  .desktop\:u-table-cell{
    display: table-cell !important;
  }

  .desktop\:u-table-column{
    display: table-column !important;
  }

  .desktop\:u-table-column-group{
    display: table-column-group !important;
  }

  .desktop\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .desktop\:u-table-header-group{
    display: table-header-group !important;
  }

  .desktop\:u-table-row-group{
    display: table-row-group !important;
  }

  .desktop\:u-table-row{
    display: table-row !important;
  }

  .desktop\:u-flow-root{
    display: flow-root !important;
  }

  .desktop\:u-grid{
    display: grid !important;
  }

  .desktop\:u-inline-grid{
    display: inline-grid !important;
  }

  .desktop\:u-contents{
    display: contents !important;
  }

  .desktop\:u-hidden{
    display: none !important;
  }

  .desktop\:u-flex-row{
    flex-direction: row !important;
  }

  .desktop\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .desktop\:u-flex-col{
    flex-direction: column !important;
  }

  .desktop\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .desktop\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .desktop\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .desktop\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .desktop\:u-place-items-auto{
    place-items: auto !important;
  }

  .desktop\:u-place-items-start{
    place-items: start !important;
  }

  .desktop\:u-place-items-end{
    place-items: end !important;
  }

  .desktop\:u-place-items-center{
    place-items: center !important;
  }

  .desktop\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .desktop\:u-place-content-center{
    place-content: center !important;
  }

  .desktop\:u-place-content-start{
    place-content: start !important;
  }

  .desktop\:u-place-content-end{
    place-content: end !important;
  }

  .desktop\:u-place-content-between{
    place-content: space-between !important;
  }

  .desktop\:u-place-content-around{
    place-content: space-around !important;
  }

  .desktop\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .desktop\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .desktop\:u-place-self-auto{
    place-self: auto !important;
  }

  .desktop\:u-place-self-start{
    place-self: start !important;
  }

  .desktop\:u-place-self-end{
    place-self: end !important;
  }

  .desktop\:u-place-self-center{
    place-self: center !important;
  }

  .desktop\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .desktop\:u-items-start{
    align-items: flex-start !important;
  }

  .desktop\:u-items-end{
    align-items: flex-end !important;
  }

  .desktop\:u-items-center{
    align-items: center !important;
  }

  .desktop\:u-items-baseline{
    align-items: baseline !important;
  }

  .desktop\:u-items-stretch{
    align-items: stretch !important;
  }

  .desktop\:u-content-center{
    align-content: center !important;
  }

  .desktop\:u-content-start{
    align-content: flex-start !important;
  }

  .desktop\:u-content-end{
    align-content: flex-end !important;
  }

  .desktop\:u-content-between{
    align-content: space-between !important;
  }

  .desktop\:u-content-around{
    align-content: space-around !important;
  }

  .desktop\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .desktop\:u-self-auto{
    align-self: auto !important;
  }

  .desktop\:u-self-start{
    align-self: flex-start !important;
  }

  .desktop\:u-self-end{
    align-self: flex-end !important;
  }

  .desktop\:u-self-center{
    align-self: center !important;
  }

  .desktop\:u-self-stretch{
    align-self: stretch !important;
  }

  .desktop\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .desktop\:u-justify-items-start{
    justify-items: start !important;
  }

  .desktop\:u-justify-items-end{
    justify-items: end !important;
  }

  .desktop\:u-justify-items-center{
    justify-items: center !important;
  }

  .desktop\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .desktop\:u-justify-start{
    justify-content: flex-start !important;
  }

  .desktop\:u-justify-end{
    justify-content: flex-end !important;
  }

  .desktop\:u-justify-center{
    justify-content: center !important;
  }

  .desktop\:u-justify-between{
    justify-content: space-between !important;
  }

  .desktop\:u-justify-around{
    justify-content: space-around !important;
  }

  .desktop\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .desktop\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .desktop\:u-justify-self-start{
    justify-self: start !important;
  }

  .desktop\:u-justify-self-end{
    justify-self: end !important;
  }

  .desktop\:u-justify-self-center{
    justify-self: center !important;
  }

  .desktop\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .desktop\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .desktop\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .desktop\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .desktop\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .desktop\:u-flex-none{
    flex: none !important;
  }

  .desktop\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .desktop\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .desktop\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .desktop\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .desktop\:u-order-1{
    order: 1 !important;
  }

  .desktop\:u-order-2{
    order: 2 !important;
  }

  .desktop\:u-order-3{
    order: 3 !important;
  }

  .desktop\:u-order-4{
    order: 4 !important;
  }

  .desktop\:u-order-5{
    order: 5 !important;
  }

  .desktop\:u-order-6{
    order: 6 !important;
  }

  .desktop\:u-order-7{
    order: 7 !important;
  }

  .desktop\:u-order-8{
    order: 8 !important;
  }

  .desktop\:u-order-9{
    order: 9 !important;
  }

  .desktop\:u-order-10{
    order: 10 !important;
  }

  .desktop\:u-order-11{
    order: 11 !important;
  }

  .desktop\:u-order-12{
    order: 12 !important;
  }

  .desktop\:u-order-first{
    order: -9999 !important;
  }

  .desktop\:u-order-last{
    order: 9999 !important;
  }

  .desktop\:u-order-none{
    order: 0 !important;
  }

  .desktop\:u-float-right{
    float: right !important;
  }

  .desktop\:u-float-left{
    float: left !important;
  }

  .desktop\:u-float-none{
    float: none !important;
  }

  .desktop\:u-clear-left{
    clear: left !important;
  }

  .desktop\:u-clear-right{
    clear: right !important;
  }

  .desktop\:u-clear-both{
    clear: both !important;
  }

  .desktop\:u-clear-none{
    clear: none !important;
  }

  .desktop\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .desktop\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .desktop\:u-font-thin{
    font-weight: 100 !important;
  }

  .desktop\:u-font-extralight{
    font-weight: 200 !important;
  }

  .desktop\:u-font-light{
    font-weight: 300 !important;
  }

  .desktop\:u-font-normal{
    font-weight: 400 !important;
  }

  .desktop\:u-font-medium{
    font-weight: 500 !important;
  }

  .desktop\:u-font-semibold{
    font-weight: 600 !important;
  }

  .desktop\:u-font-bold{
    font-weight: 700 !important;
  }

  .desktop\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .desktop\:u-font-black{
    font-weight: 900 !important;
  }

  .desktop\:u-h-0{
    height: 0px !important;
  }

  .desktop\:u-h-1{
    height: 0.25rem !important;
  }

  .desktop\:u-h-2{
    height: 0.5rem !important;
  }

  .desktop\:u-h-3{
    height: 0.75rem !important;
  }

  .desktop\:u-h-4{
    height: 1rem !important;
  }

  .desktop\:u-h-5{
    height: 1.25rem !important;
  }

  .desktop\:u-h-6{
    height: 1.5rem !important;
  }

  .desktop\:u-h-7{
    height: 1.75rem !important;
  }

  .desktop\:u-h-8{
    height: 2rem !important;
  }

  .desktop\:u-h-9{
    height: 2.25rem !important;
  }

  .desktop\:u-h-10{
    height: 2.5rem !important;
  }

  .desktop\:u-h-11{
    height: 2.75rem !important;
  }

  .desktop\:u-h-12{
    height: 3rem !important;
  }

  .desktop\:u-h-14{
    height: 3.5rem !important;
  }

  .desktop\:u-h-16{
    height: 4rem !important;
  }

  .desktop\:u-h-20{
    height: 5rem !important;
  }

  .desktop\:u-h-24{
    height: 6rem !important;
  }

  .desktop\:u-h-28{
    height: 7rem !important;
  }

  .desktop\:u-h-32{
    height: 8rem !important;
  }

  .desktop\:u-h-36{
    height: 9rem !important;
  }

  .desktop\:u-h-40{
    height: 10rem !important;
  }

  .desktop\:u-h-44{
    height: 11rem !important;
  }

  .desktop\:u-h-48{
    height: 12rem !important;
  }

  .desktop\:u-h-52{
    height: 13rem !important;
  }

  .desktop\:u-h-56{
    height: 14rem !important;
  }

  .desktop\:u-h-60{
    height: 15rem !important;
  }

  .desktop\:u-h-64{
    height: 16rem !important;
  }

  .desktop\:u-h-72{
    height: 18rem !important;
  }

  .desktop\:u-h-80{
    height: 20rem !important;
  }

  .desktop\:u-h-96{
    height: 24rem !important;
  }

  .desktop\:u-h-auto{
    height: auto !important;
  }

  .desktop\:u-h-px{
    height: 1px !important;
  }

  .desktop\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .desktop\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .desktop\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .desktop\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .desktop\:u-h-1\/2{
    height: 50% !important;
  }

  .desktop\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .desktop\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .desktop\:u-h-1\/4{
    height: 25% !important;
  }

  .desktop\:u-h-2\/4{
    height: 50% !important;
  }

  .desktop\:u-h-3\/4{
    height: 75% !important;
  }

  .desktop\:u-h-1\/5{
    height: 20% !important;
  }

  .desktop\:u-h-2\/5{
    height: 40% !important;
  }

  .desktop\:u-h-3\/5{
    height: 60% !important;
  }

  .desktop\:u-h-4\/5{
    height: 80% !important;
  }

  .desktop\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .desktop\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .desktop\:u-h-3\/6{
    height: 50% !important;
  }

  .desktop\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .desktop\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .desktop\:u-h-full{
    height: 100% !important;
  }

  .desktop\:u-h-screen{
    height: 100vh !important;
  }

  .desktop\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .desktop\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .desktop\:u-text-base{
    font-size: 1rem !important;
  }

  .desktop\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .desktop\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .desktop\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .desktop\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .desktop\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .desktop\:u-text-5xl{
    font-size: 3rem !important;
  }

  .desktop\:u-text-6xl{
    font-size: 4rem !important;
  }

  .desktop\:u-text-7xl{
    font-size: 5rem !important;
  }

  .desktop\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .desktop\:u-leading-3{
    line-height: .75rem !important;
  }

  .desktop\:u-leading-4{
    line-height: 1rem !important;
  }

  .desktop\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .desktop\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .desktop\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .desktop\:u-leading-8{
    line-height: 2rem !important;
  }

  .desktop\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .desktop\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .desktop\:u-leading-none{
    line-height: 1 !important;
  }

  .desktop\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .desktop\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .desktop\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .desktop\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .desktop\:u-leading-loose{
    line-height: 2 !important;
  }

  .desktop\:u-list-inside{
    list-style-position: inside !important;
  }

  .desktop\:u-list-outside{
    list-style-position: outside !important;
  }

  .desktop\:u-list-none{
    list-style-type: none !important;
  }

  .desktop\:u-list-disc{
    list-style-type: disc !important;
  }

  .desktop\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .desktop\:u-m-0{
    margin: 0px !important;
  }

  .desktop\:u-m-1{
    margin: 0.25rem !important;
  }

  .desktop\:u-m-2{
    margin: 0.5rem !important;
  }

  .desktop\:u-m-3{
    margin: 0.75rem !important;
  }

  .desktop\:u-m-4{
    margin: 1rem !important;
  }

  .desktop\:u-m-5{
    margin: 1.25rem !important;
  }

  .desktop\:u-m-6{
    margin: 1.5rem !important;
  }

  .desktop\:u-m-7{
    margin: 1.75rem !important;
  }

  .desktop\:u-m-8{
    margin: 2rem !important;
  }

  .desktop\:u-m-9{
    margin: 2.25rem !important;
  }

  .desktop\:u-m-10{
    margin: 2.5rem !important;
  }

  .desktop\:u-m-11{
    margin: 2.75rem !important;
  }

  .desktop\:u-m-12{
    margin: 3rem !important;
  }

  .desktop\:u-m-14{
    margin: 3.5rem !important;
  }

  .desktop\:u-m-16{
    margin: 4rem !important;
  }

  .desktop\:u-m-20{
    margin: 5rem !important;
  }

  .desktop\:u-m-24{
    margin: 6rem !important;
  }

  .desktop\:u-m-28{
    margin: 7rem !important;
  }

  .desktop\:u-m-32{
    margin: 8rem !important;
  }

  .desktop\:u-m-36{
    margin: 9rem !important;
  }

  .desktop\:u-m-40{
    margin: 10rem !important;
  }

  .desktop\:u-m-44{
    margin: 11rem !important;
  }

  .desktop\:u-m-48{
    margin: 12rem !important;
  }

  .desktop\:u-m-52{
    margin: 13rem !important;
  }

  .desktop\:u-m-56{
    margin: 14rem !important;
  }

  .desktop\:u-m-60{
    margin: 15rem !important;
  }

  .desktop\:u-m-64{
    margin: 16rem !important;
  }

  .desktop\:u-m-72{
    margin: 18rem !important;
  }

  .desktop\:u-m-80{
    margin: 20rem !important;
  }

  .desktop\:u-m-96{
    margin: 24rem !important;
  }

  .desktop\:u-m-auto{
    margin: auto !important;
  }

  .desktop\:u-m-px{
    margin: 1px !important;
  }

  .desktop\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .desktop\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .desktop\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .desktop\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .desktop\:u--m-0{
    margin: 0px !important;
  }

  .desktop\:u--m-1{
    margin: -0.25rem !important;
  }

  .desktop\:u--m-2{
    margin: -0.5rem !important;
  }

  .desktop\:u--m-3{
    margin: -0.75rem !important;
  }

  .desktop\:u--m-4{
    margin: -1rem !important;
  }

  .desktop\:u--m-5{
    margin: -1.25rem !important;
  }

  .desktop\:u--m-6{
    margin: -1.5rem !important;
  }

  .desktop\:u--m-7{
    margin: -1.75rem !important;
  }

  .desktop\:u--m-8{
    margin: -2rem !important;
  }

  .desktop\:u--m-9{
    margin: -2.25rem !important;
  }

  .desktop\:u--m-10{
    margin: -2.5rem !important;
  }

  .desktop\:u--m-11{
    margin: -2.75rem !important;
  }

  .desktop\:u--m-12{
    margin: -3rem !important;
  }

  .desktop\:u--m-14{
    margin: -3.5rem !important;
  }

  .desktop\:u--m-16{
    margin: -4rem !important;
  }

  .desktop\:u--m-20{
    margin: -5rem !important;
  }

  .desktop\:u--m-24{
    margin: -6rem !important;
  }

  .desktop\:u--m-28{
    margin: -7rem !important;
  }

  .desktop\:u--m-32{
    margin: -8rem !important;
  }

  .desktop\:u--m-36{
    margin: -9rem !important;
  }

  .desktop\:u--m-40{
    margin: -10rem !important;
  }

  .desktop\:u--m-44{
    margin: -11rem !important;
  }

  .desktop\:u--m-48{
    margin: -12rem !important;
  }

  .desktop\:u--m-52{
    margin: -13rem !important;
  }

  .desktop\:u--m-56{
    margin: -14rem !important;
  }

  .desktop\:u--m-60{
    margin: -15rem !important;
  }

  .desktop\:u--m-64{
    margin: -16rem !important;
  }

  .desktop\:u--m-72{
    margin: -18rem !important;
  }

  .desktop\:u--m-80{
    margin: -20rem !important;
  }

  .desktop\:u--m-96{
    margin: -24rem !important;
  }

  .desktop\:u--m-px{
    margin: -1px !important;
  }

  .desktop\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .desktop\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .desktop\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .desktop\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .desktop\:u-m-full{
    margin: 100% !important;
  }

  .desktop\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .desktop\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .desktop\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .desktop\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .desktop\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .desktop\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .desktop\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .desktop\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .desktop\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .desktop\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .desktop\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .desktop\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .desktop\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .desktop\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .desktop\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .desktop\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .desktop\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .desktop\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .desktop\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .desktop\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .desktop\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .desktop\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .desktop\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .desktop\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .desktop\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .desktop\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .desktop\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .desktop\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .desktop\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .desktop\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .desktop\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .desktop\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .desktop\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .desktop\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .desktop\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .desktop\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .desktop\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .desktop\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .desktop\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .desktop\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .desktop\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .desktop\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .desktop\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .desktop\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .desktop\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .desktop\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .desktop\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .desktop\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .desktop\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .desktop\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .desktop\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .desktop\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .desktop\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .desktop\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .desktop\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .desktop\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .desktop\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .desktop\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .desktop\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .desktop\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .desktop\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .desktop\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .desktop\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .desktop\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .desktop\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .desktop\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .desktop\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .desktop\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .desktop\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .desktop\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .desktop\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .desktop\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .desktop\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .desktop\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .desktop\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .desktop\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .desktop\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .desktop\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .desktop\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .desktop\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .desktop\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .desktop\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .desktop\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .desktop\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .desktop\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .desktop\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .desktop\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .desktop\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .desktop\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .desktop\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .desktop\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .desktop\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .desktop\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .desktop\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .desktop\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .desktop\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .desktop\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .desktop\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .desktop\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .desktop\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .desktop\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .desktop\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .desktop\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .desktop\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .desktop\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .desktop\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .desktop\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .desktop\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .desktop\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .desktop\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .desktop\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .desktop\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .desktop\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .desktop\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .desktop\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .desktop\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .desktop\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .desktop\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .desktop\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .desktop\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .desktop\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .desktop\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .desktop\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .desktop\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .desktop\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .desktop\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .desktop\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .desktop\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .desktop\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .desktop\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .desktop\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .desktop\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .desktop\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .desktop\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .desktop\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .desktop\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .desktop\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .desktop\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .desktop\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .desktop\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .desktop\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .desktop\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .desktop\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .desktop\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .desktop\:u-mt-0{
    margin-top: 0px !important;
  }

  .desktop\:u-mr-0{
    margin-right: 0px !important;
  }

  .desktop\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .desktop\:u-ml-0{
    margin-left: 0px !important;
  }

  .desktop\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .desktop\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .desktop\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .desktop\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .desktop\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .desktop\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .desktop\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .desktop\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .desktop\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .desktop\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .desktop\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .desktop\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .desktop\:u-mt-4{
    margin-top: 1rem !important;
  }

  .desktop\:u-mr-4{
    margin-right: 1rem !important;
  }

  .desktop\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .desktop\:u-ml-4{
    margin-left: 1rem !important;
  }

  .desktop\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .desktop\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .desktop\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .desktop\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .desktop\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .desktop\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .desktop\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .desktop\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .desktop\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .desktop\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .desktop\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .desktop\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .desktop\:u-mt-8{
    margin-top: 2rem !important;
  }

  .desktop\:u-mr-8{
    margin-right: 2rem !important;
  }

  .desktop\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .desktop\:u-ml-8{
    margin-left: 2rem !important;
  }

  .desktop\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .desktop\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .desktop\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .desktop\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .desktop\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .desktop\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .desktop\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .desktop\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .desktop\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .desktop\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .desktop\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .desktop\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .desktop\:u-mt-12{
    margin-top: 3rem !important;
  }

  .desktop\:u-mr-12{
    margin-right: 3rem !important;
  }

  .desktop\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .desktop\:u-ml-12{
    margin-left: 3rem !important;
  }

  .desktop\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .desktop\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .desktop\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .desktop\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .desktop\:u-mt-16{
    margin-top: 4rem !important;
  }

  .desktop\:u-mr-16{
    margin-right: 4rem !important;
  }

  .desktop\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .desktop\:u-ml-16{
    margin-left: 4rem !important;
  }

  .desktop\:u-mt-20{
    margin-top: 5rem !important;
  }

  .desktop\:u-mr-20{
    margin-right: 5rem !important;
  }

  .desktop\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .desktop\:u-ml-20{
    margin-left: 5rem !important;
  }

  .desktop\:u-mt-24{
    margin-top: 6rem !important;
  }

  .desktop\:u-mr-24{
    margin-right: 6rem !important;
  }

  .desktop\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .desktop\:u-ml-24{
    margin-left: 6rem !important;
  }

  .desktop\:u-mt-28{
    margin-top: 7rem !important;
  }

  .desktop\:u-mr-28{
    margin-right: 7rem !important;
  }

  .desktop\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .desktop\:u-ml-28{
    margin-left: 7rem !important;
  }

  .desktop\:u-mt-32{
    margin-top: 8rem !important;
  }

  .desktop\:u-mr-32{
    margin-right: 8rem !important;
  }

  .desktop\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .desktop\:u-ml-32{
    margin-left: 8rem !important;
  }

  .desktop\:u-mt-36{
    margin-top: 9rem !important;
  }

  .desktop\:u-mr-36{
    margin-right: 9rem !important;
  }

  .desktop\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .desktop\:u-ml-36{
    margin-left: 9rem !important;
  }

  .desktop\:u-mt-40{
    margin-top: 10rem !important;
  }

  .desktop\:u-mr-40{
    margin-right: 10rem !important;
  }

  .desktop\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .desktop\:u-ml-40{
    margin-left: 10rem !important;
  }

  .desktop\:u-mt-44{
    margin-top: 11rem !important;
  }

  .desktop\:u-mr-44{
    margin-right: 11rem !important;
  }

  .desktop\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .desktop\:u-ml-44{
    margin-left: 11rem !important;
  }

  .desktop\:u-mt-48{
    margin-top: 12rem !important;
  }

  .desktop\:u-mr-48{
    margin-right: 12rem !important;
  }

  .desktop\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .desktop\:u-ml-48{
    margin-left: 12rem !important;
  }

  .desktop\:u-mt-52{
    margin-top: 13rem !important;
  }

  .desktop\:u-mr-52{
    margin-right: 13rem !important;
  }

  .desktop\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .desktop\:u-ml-52{
    margin-left: 13rem !important;
  }

  .desktop\:u-mt-56{
    margin-top: 14rem !important;
  }

  .desktop\:u-mr-56{
    margin-right: 14rem !important;
  }

  .desktop\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .desktop\:u-ml-56{
    margin-left: 14rem !important;
  }

  .desktop\:u-mt-60{
    margin-top: 15rem !important;
  }

  .desktop\:u-mr-60{
    margin-right: 15rem !important;
  }

  .desktop\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .desktop\:u-ml-60{
    margin-left: 15rem !important;
  }

  .desktop\:u-mt-64{
    margin-top: 16rem !important;
  }

  .desktop\:u-mr-64{
    margin-right: 16rem !important;
  }

  .desktop\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .desktop\:u-ml-64{
    margin-left: 16rem !important;
  }

  .desktop\:u-mt-72{
    margin-top: 18rem !important;
  }

  .desktop\:u-mr-72{
    margin-right: 18rem !important;
  }

  .desktop\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .desktop\:u-ml-72{
    margin-left: 18rem !important;
  }

  .desktop\:u-mt-80{
    margin-top: 20rem !important;
  }

  .desktop\:u-mr-80{
    margin-right: 20rem !important;
  }

  .desktop\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .desktop\:u-ml-80{
    margin-left: 20rem !important;
  }

  .desktop\:u-mt-96{
    margin-top: 24rem !important;
  }

  .desktop\:u-mr-96{
    margin-right: 24rem !important;
  }

  .desktop\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .desktop\:u-ml-96{
    margin-left: 24rem !important;
  }

  .desktop\:u-mt-auto{
    margin-top: auto !important;
  }

  .desktop\:u-mr-auto{
    margin-right: auto !important;
  }

  .desktop\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .desktop\:u-ml-auto{
    margin-left: auto !important;
  }

  .desktop\:u-mt-px{
    margin-top: 1px !important;
  }

  .desktop\:u-mr-px{
    margin-right: 1px !important;
  }

  .desktop\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .desktop\:u-ml-px{
    margin-left: 1px !important;
  }

  .desktop\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .desktop\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .desktop\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .desktop\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .desktop\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .desktop\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .desktop\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .desktop\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .desktop\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .desktop\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .desktop\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .desktop\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .desktop\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .desktop\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .desktop\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .desktop\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .desktop\:u--mt-0{
    margin-top: 0px !important;
  }

  .desktop\:u--mr-0{
    margin-right: 0px !important;
  }

  .desktop\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .desktop\:u--ml-0{
    margin-left: 0px !important;
  }

  .desktop\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .desktop\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .desktop\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .desktop\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .desktop\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .desktop\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .desktop\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .desktop\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .desktop\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .desktop\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .desktop\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .desktop\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .desktop\:u--mt-4{
    margin-top: -1rem !important;
  }

  .desktop\:u--mr-4{
    margin-right: -1rem !important;
  }

  .desktop\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .desktop\:u--ml-4{
    margin-left: -1rem !important;
  }

  .desktop\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .desktop\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .desktop\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .desktop\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .desktop\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .desktop\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .desktop\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .desktop\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .desktop\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .desktop\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .desktop\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .desktop\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .desktop\:u--mt-8{
    margin-top: -2rem !important;
  }

  .desktop\:u--mr-8{
    margin-right: -2rem !important;
  }

  .desktop\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .desktop\:u--ml-8{
    margin-left: -2rem !important;
  }

  .desktop\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .desktop\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .desktop\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .desktop\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .desktop\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .desktop\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .desktop\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .desktop\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .desktop\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .desktop\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .desktop\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .desktop\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .desktop\:u--mt-12{
    margin-top: -3rem !important;
  }

  .desktop\:u--mr-12{
    margin-right: -3rem !important;
  }

  .desktop\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .desktop\:u--ml-12{
    margin-left: -3rem !important;
  }

  .desktop\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .desktop\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .desktop\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .desktop\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .desktop\:u--mt-16{
    margin-top: -4rem !important;
  }

  .desktop\:u--mr-16{
    margin-right: -4rem !important;
  }

  .desktop\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .desktop\:u--ml-16{
    margin-left: -4rem !important;
  }

  .desktop\:u--mt-20{
    margin-top: -5rem !important;
  }

  .desktop\:u--mr-20{
    margin-right: -5rem !important;
  }

  .desktop\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .desktop\:u--ml-20{
    margin-left: -5rem !important;
  }

  .desktop\:u--mt-24{
    margin-top: -6rem !important;
  }

  .desktop\:u--mr-24{
    margin-right: -6rem !important;
  }

  .desktop\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .desktop\:u--ml-24{
    margin-left: -6rem !important;
  }

  .desktop\:u--mt-28{
    margin-top: -7rem !important;
  }

  .desktop\:u--mr-28{
    margin-right: -7rem !important;
  }

  .desktop\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .desktop\:u--ml-28{
    margin-left: -7rem !important;
  }

  .desktop\:u--mt-32{
    margin-top: -8rem !important;
  }

  .desktop\:u--mr-32{
    margin-right: -8rem !important;
  }

  .desktop\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .desktop\:u--ml-32{
    margin-left: -8rem !important;
  }

  .desktop\:u--mt-36{
    margin-top: -9rem !important;
  }

  .desktop\:u--mr-36{
    margin-right: -9rem !important;
  }

  .desktop\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .desktop\:u--ml-36{
    margin-left: -9rem !important;
  }

  .desktop\:u--mt-40{
    margin-top: -10rem !important;
  }

  .desktop\:u--mr-40{
    margin-right: -10rem !important;
  }

  .desktop\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .desktop\:u--ml-40{
    margin-left: -10rem !important;
  }

  .desktop\:u--mt-44{
    margin-top: -11rem !important;
  }

  .desktop\:u--mr-44{
    margin-right: -11rem !important;
  }

  .desktop\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .desktop\:u--ml-44{
    margin-left: -11rem !important;
  }

  .desktop\:u--mt-48{
    margin-top: -12rem !important;
  }

  .desktop\:u--mr-48{
    margin-right: -12rem !important;
  }

  .desktop\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .desktop\:u--ml-48{
    margin-left: -12rem !important;
  }

  .desktop\:u--mt-52{
    margin-top: -13rem !important;
  }

  .desktop\:u--mr-52{
    margin-right: -13rem !important;
  }

  .desktop\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .desktop\:u--ml-52{
    margin-left: -13rem !important;
  }

  .desktop\:u--mt-56{
    margin-top: -14rem !important;
  }

  .desktop\:u--mr-56{
    margin-right: -14rem !important;
  }

  .desktop\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .desktop\:u--ml-56{
    margin-left: -14rem !important;
  }

  .desktop\:u--mt-60{
    margin-top: -15rem !important;
  }

  .desktop\:u--mr-60{
    margin-right: -15rem !important;
  }

  .desktop\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .desktop\:u--ml-60{
    margin-left: -15rem !important;
  }

  .desktop\:u--mt-64{
    margin-top: -16rem !important;
  }

  .desktop\:u--mr-64{
    margin-right: -16rem !important;
  }

  .desktop\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .desktop\:u--ml-64{
    margin-left: -16rem !important;
  }

  .desktop\:u--mt-72{
    margin-top: -18rem !important;
  }

  .desktop\:u--mr-72{
    margin-right: -18rem !important;
  }

  .desktop\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .desktop\:u--ml-72{
    margin-left: -18rem !important;
  }

  .desktop\:u--mt-80{
    margin-top: -20rem !important;
  }

  .desktop\:u--mr-80{
    margin-right: -20rem !important;
  }

  .desktop\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .desktop\:u--ml-80{
    margin-left: -20rem !important;
  }

  .desktop\:u--mt-96{
    margin-top: -24rem !important;
  }

  .desktop\:u--mr-96{
    margin-right: -24rem !important;
  }

  .desktop\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .desktop\:u--ml-96{
    margin-left: -24rem !important;
  }

  .desktop\:u--mt-px{
    margin-top: -1px !important;
  }

  .desktop\:u--mr-px{
    margin-right: -1px !important;
  }

  .desktop\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .desktop\:u--ml-px{
    margin-left: -1px !important;
  }

  .desktop\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .desktop\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .desktop\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .desktop\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .desktop\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .desktop\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .desktop\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .desktop\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .desktop\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .desktop\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .desktop\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .desktop\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .desktop\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .desktop\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .desktop\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .desktop\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .desktop\:u-mt-full{
    margin-top: 100% !important;
  }

  .desktop\:u-mr-full{
    margin-right: 100% !important;
  }

  .desktop\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .desktop\:u-ml-full{
    margin-left: 100% !important;
  }

  .desktop\:u-max-h-0{
    max-height: 0px !important;
  }

  .desktop\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .desktop\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .desktop\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .desktop\:u-max-h-4{
    max-height: 1rem !important;
  }

  .desktop\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .desktop\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .desktop\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .desktop\:u-max-h-8{
    max-height: 2rem !important;
  }

  .desktop\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .desktop\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .desktop\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .desktop\:u-max-h-12{
    max-height: 3rem !important;
  }

  .desktop\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .desktop\:u-max-h-16{
    max-height: 4rem !important;
  }

  .desktop\:u-max-h-20{
    max-height: 5rem !important;
  }

  .desktop\:u-max-h-24{
    max-height: 6rem !important;
  }

  .desktop\:u-max-h-28{
    max-height: 7rem !important;
  }

  .desktop\:u-max-h-32{
    max-height: 8rem !important;
  }

  .desktop\:u-max-h-36{
    max-height: 9rem !important;
  }

  .desktop\:u-max-h-40{
    max-height: 10rem !important;
  }

  .desktop\:u-max-h-44{
    max-height: 11rem !important;
  }

  .desktop\:u-max-h-48{
    max-height: 12rem !important;
  }

  .desktop\:u-max-h-52{
    max-height: 13rem !important;
  }

  .desktop\:u-max-h-56{
    max-height: 14rem !important;
  }

  .desktop\:u-max-h-60{
    max-height: 15rem !important;
  }

  .desktop\:u-max-h-64{
    max-height: 16rem !important;
  }

  .desktop\:u-max-h-72{
    max-height: 18rem !important;
  }

  .desktop\:u-max-h-80{
    max-height: 20rem !important;
  }

  .desktop\:u-max-h-96{
    max-height: 24rem !important;
  }

  .desktop\:u-max-h-px{
    max-height: 1px !important;
  }

  .desktop\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .desktop\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .desktop\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .desktop\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .desktop\:u-max-h-full{
    max-height: 100% !important;
  }

  .desktop\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .desktop\:u-max-w-none{
    max-width: none !important;
  }

  .desktop\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .desktop\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .desktop\:u-max-w-md{
    max-width: 24rem !important;
  }

  .desktop\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .desktop\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .desktop\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .desktop\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .desktop\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .desktop\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .desktop\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .desktop\:u-max-w-full{
    max-width: 100% !important;
  }

  .desktop\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .desktop\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .desktop\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .desktop\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .desktop\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .desktop\:u-min-h-none{
    min-height: none !important;
  }

  .desktop\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .desktop\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .desktop\:u-min-h-md{
    min-height: 24rem !important;
  }

  .desktop\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .desktop\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .desktop\:u-min-w-sm{
    min-width: 320px !important;
  }

  .desktop\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .desktop\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .desktop\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .desktop\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .desktop\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .desktop\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .desktop\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .desktop\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .desktop\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .desktop\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .desktop\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .desktop\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .desktop\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .desktop\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .desktop\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .desktop\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .desktop\:u-opacity-0{
    opacity: 0 !important;
  }

  .desktop\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .desktop\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .desktop\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .desktop\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .desktop\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .desktop\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .desktop\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .desktop\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .desktop\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .desktop\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .desktop\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .desktop\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .desktop\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .desktop\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .desktop\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .desktop\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .desktop\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .desktop\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .desktop\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .desktop\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .desktop\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .desktop\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .desktop\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .desktop\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .desktop\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .desktop\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .desktop\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .desktop\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .desktop\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .desktop\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .desktop\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .desktop\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .desktop\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .desktop\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .desktop\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .desktop\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .desktop\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .desktop\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .desktop\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .desktop\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .desktop\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .desktop\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .desktop\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .desktop\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .desktop\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .desktop\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .desktop\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .desktop\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .desktop\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .desktop\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .desktop\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .desktop\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .desktop\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .desktop\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .desktop\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .desktop\:u-overflow-auto{
    overflow: auto !important;
  }

  .desktop\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .desktop\:u-overflow-visible{
    overflow: visible !important;
  }

  .desktop\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .desktop\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .desktop\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .desktop\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .desktop\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .desktop\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .desktop\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .desktop\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .desktop\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .desktop\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .desktop\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .desktop\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .desktop\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .desktop\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .desktop\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .desktop\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .desktop\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .desktop\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .desktop\:u-p-0{
    padding: 0px !important;
  }

  .desktop\:u-p-1{
    padding: 0.25rem !important;
  }

  .desktop\:u-p-2{
    padding: 0.5rem !important;
  }

  .desktop\:u-p-3{
    padding: 0.75rem !important;
  }

  .desktop\:u-p-4{
    padding: 1rem !important;
  }

  .desktop\:u-p-5{
    padding: 1.25rem !important;
  }

  .desktop\:u-p-6{
    padding: 1.5rem !important;
  }

  .desktop\:u-p-7{
    padding: 1.75rem !important;
  }

  .desktop\:u-p-8{
    padding: 2rem !important;
  }

  .desktop\:u-p-9{
    padding: 2.25rem !important;
  }

  .desktop\:u-p-10{
    padding: 2.5rem !important;
  }

  .desktop\:u-p-11{
    padding: 2.75rem !important;
  }

  .desktop\:u-p-12{
    padding: 3rem !important;
  }

  .desktop\:u-p-14{
    padding: 3.5rem !important;
  }

  .desktop\:u-p-16{
    padding: 4rem !important;
  }

  .desktop\:u-p-20{
    padding: 5rem !important;
  }

  .desktop\:u-p-24{
    padding: 6rem !important;
  }

  .desktop\:u-p-28{
    padding: 7rem !important;
  }

  .desktop\:u-p-32{
    padding: 8rem !important;
  }

  .desktop\:u-p-36{
    padding: 9rem !important;
  }

  .desktop\:u-p-40{
    padding: 10rem !important;
  }

  .desktop\:u-p-44{
    padding: 11rem !important;
  }

  .desktop\:u-p-48{
    padding: 12rem !important;
  }

  .desktop\:u-p-52{
    padding: 13rem !important;
  }

  .desktop\:u-p-56{
    padding: 14rem !important;
  }

  .desktop\:u-p-60{
    padding: 15rem !important;
  }

  .desktop\:u-p-64{
    padding: 16rem !important;
  }

  .desktop\:u-p-72{
    padding: 18rem !important;
  }

  .desktop\:u-p-80{
    padding: 20rem !important;
  }

  .desktop\:u-p-96{
    padding: 24rem !important;
  }

  .desktop\:u-p-px{
    padding: 1px !important;
  }

  .desktop\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .desktop\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .desktop\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .desktop\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .desktop\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .desktop\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .desktop\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .desktop\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .desktop\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .desktop\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .desktop\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .desktop\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .desktop\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .desktop\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .desktop\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .desktop\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .desktop\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .desktop\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .desktop\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .desktop\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .desktop\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .desktop\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .desktop\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .desktop\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .desktop\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .desktop\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .desktop\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .desktop\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .desktop\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .desktop\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .desktop\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .desktop\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .desktop\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .desktop\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .desktop\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .desktop\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .desktop\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .desktop\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .desktop\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .desktop\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .desktop\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .desktop\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .desktop\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .desktop\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .desktop\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .desktop\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .desktop\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .desktop\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .desktop\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .desktop\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .desktop\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .desktop\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .desktop\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .desktop\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .desktop\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .desktop\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .desktop\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .desktop\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .desktop\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .desktop\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .desktop\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .desktop\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .desktop\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .desktop\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .desktop\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .desktop\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .desktop\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .desktop\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .desktop\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .desktop\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .desktop\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .desktop\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .desktop\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .desktop\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .desktop\:u-pt-0{
    padding-top: 0px !important;
  }

  .desktop\:u-pr-0{
    padding-right: 0px !important;
  }

  .desktop\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .desktop\:u-pl-0{
    padding-left: 0px !important;
  }

  .desktop\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .desktop\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .desktop\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .desktop\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .desktop\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .desktop\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .desktop\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .desktop\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .desktop\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .desktop\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .desktop\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .desktop\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .desktop\:u-pt-4{
    padding-top: 1rem !important;
  }

  .desktop\:u-pr-4{
    padding-right: 1rem !important;
  }

  .desktop\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .desktop\:u-pl-4{
    padding-left: 1rem !important;
  }

  .desktop\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .desktop\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .desktop\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .desktop\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .desktop\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .desktop\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .desktop\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .desktop\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .desktop\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .desktop\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .desktop\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .desktop\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .desktop\:u-pt-8{
    padding-top: 2rem !important;
  }

  .desktop\:u-pr-8{
    padding-right: 2rem !important;
  }

  .desktop\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .desktop\:u-pl-8{
    padding-left: 2rem !important;
  }

  .desktop\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .desktop\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .desktop\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .desktop\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .desktop\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .desktop\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .desktop\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .desktop\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .desktop\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .desktop\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .desktop\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .desktop\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .desktop\:u-pt-12{
    padding-top: 3rem !important;
  }

  .desktop\:u-pr-12{
    padding-right: 3rem !important;
  }

  .desktop\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .desktop\:u-pl-12{
    padding-left: 3rem !important;
  }

  .desktop\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .desktop\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .desktop\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .desktop\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .desktop\:u-pt-16{
    padding-top: 4rem !important;
  }

  .desktop\:u-pr-16{
    padding-right: 4rem !important;
  }

  .desktop\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .desktop\:u-pl-16{
    padding-left: 4rem !important;
  }

  .desktop\:u-pt-20{
    padding-top: 5rem !important;
  }

  .desktop\:u-pr-20{
    padding-right: 5rem !important;
  }

  .desktop\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .desktop\:u-pl-20{
    padding-left: 5rem !important;
  }

  .desktop\:u-pt-24{
    padding-top: 6rem !important;
  }

  .desktop\:u-pr-24{
    padding-right: 6rem !important;
  }

  .desktop\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .desktop\:u-pl-24{
    padding-left: 6rem !important;
  }

  .desktop\:u-pt-28{
    padding-top: 7rem !important;
  }

  .desktop\:u-pr-28{
    padding-right: 7rem !important;
  }

  .desktop\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .desktop\:u-pl-28{
    padding-left: 7rem !important;
  }

  .desktop\:u-pt-32{
    padding-top: 8rem !important;
  }

  .desktop\:u-pr-32{
    padding-right: 8rem !important;
  }

  .desktop\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .desktop\:u-pl-32{
    padding-left: 8rem !important;
  }

  .desktop\:u-pt-36{
    padding-top: 9rem !important;
  }

  .desktop\:u-pr-36{
    padding-right: 9rem !important;
  }

  .desktop\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .desktop\:u-pl-36{
    padding-left: 9rem !important;
  }

  .desktop\:u-pt-40{
    padding-top: 10rem !important;
  }

  .desktop\:u-pr-40{
    padding-right: 10rem !important;
  }

  .desktop\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .desktop\:u-pl-40{
    padding-left: 10rem !important;
  }

  .desktop\:u-pt-44{
    padding-top: 11rem !important;
  }

  .desktop\:u-pr-44{
    padding-right: 11rem !important;
  }

  .desktop\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .desktop\:u-pl-44{
    padding-left: 11rem !important;
  }

  .desktop\:u-pt-48{
    padding-top: 12rem !important;
  }

  .desktop\:u-pr-48{
    padding-right: 12rem !important;
  }

  .desktop\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .desktop\:u-pl-48{
    padding-left: 12rem !important;
  }

  .desktop\:u-pt-52{
    padding-top: 13rem !important;
  }

  .desktop\:u-pr-52{
    padding-right: 13rem !important;
  }

  .desktop\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .desktop\:u-pl-52{
    padding-left: 13rem !important;
  }

  .desktop\:u-pt-56{
    padding-top: 14rem !important;
  }

  .desktop\:u-pr-56{
    padding-right: 14rem !important;
  }

  .desktop\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .desktop\:u-pl-56{
    padding-left: 14rem !important;
  }

  .desktop\:u-pt-60{
    padding-top: 15rem !important;
  }

  .desktop\:u-pr-60{
    padding-right: 15rem !important;
  }

  .desktop\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .desktop\:u-pl-60{
    padding-left: 15rem !important;
  }

  .desktop\:u-pt-64{
    padding-top: 16rem !important;
  }

  .desktop\:u-pr-64{
    padding-right: 16rem !important;
  }

  .desktop\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .desktop\:u-pl-64{
    padding-left: 16rem !important;
  }

  .desktop\:u-pt-72{
    padding-top: 18rem !important;
  }

  .desktop\:u-pr-72{
    padding-right: 18rem !important;
  }

  .desktop\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .desktop\:u-pl-72{
    padding-left: 18rem !important;
  }

  .desktop\:u-pt-80{
    padding-top: 20rem !important;
  }

  .desktop\:u-pr-80{
    padding-right: 20rem !important;
  }

  .desktop\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .desktop\:u-pl-80{
    padding-left: 20rem !important;
  }

  .desktop\:u-pt-96{
    padding-top: 24rem !important;
  }

  .desktop\:u-pr-96{
    padding-right: 24rem !important;
  }

  .desktop\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .desktop\:u-pl-96{
    padding-left: 24rem !important;
  }

  .desktop\:u-pt-px{
    padding-top: 1px !important;
  }

  .desktop\:u-pr-px{
    padding-right: 1px !important;
  }

  .desktop\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .desktop\:u-pl-px{
    padding-left: 1px !important;
  }

  .desktop\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .desktop\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .desktop\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .desktop\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .desktop\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .desktop\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .desktop\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .desktop\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .desktop\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .desktop\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .desktop\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .desktop\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .desktop\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .desktop\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .desktop\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .desktop\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .desktop\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .desktop\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .desktop\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .desktop\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .desktop\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .desktop\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .desktop\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .desktop\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .desktop\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .desktop\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .desktop\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .desktop\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .desktop\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .desktop\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .desktop\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .desktop\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .desktop\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .desktop\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .desktop\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .desktop\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .desktop\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .desktop\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .desktop\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .desktop\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .desktop\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .desktop\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .desktop\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .desktop\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .desktop\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .desktop\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .desktop\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .desktop\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .desktop\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .desktop\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .desktop\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .desktop\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .desktop\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .desktop\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .desktop\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .desktop\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .desktop\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .desktop\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .desktop\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .desktop\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .desktop\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .desktop\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .desktop\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .desktop\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .desktop\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .desktop\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .desktop\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .desktop\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .desktop\:u-static{
    position: static !important;
  }

  .desktop\:u-fixed{
    position: fixed !important;
  }

  .desktop\:u-absolute{
    position: absolute !important;
  }

  .desktop\:u-relative{
    position: relative !important;
  }

  .desktop\:u-sticky{
    position: sticky !important;
  }

  .desktop\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .desktop\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .desktop\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .desktop\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .desktop\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .desktop\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .desktop\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .desktop\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .desktop\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .desktop\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .desktop\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .desktop\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .desktop\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .desktop\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .desktop\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .desktop\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .desktop\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .desktop\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .desktop\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .desktop\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .desktop\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .desktop\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .desktop\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .desktop\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .desktop\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .desktop\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .desktop\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .desktop\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .desktop\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .desktop\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .desktop\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .desktop\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .desktop\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .desktop\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .desktop\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .desktop\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .desktop\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .desktop\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .desktop\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .desktop\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .desktop\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .desktop\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .desktop\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .desktop\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .desktop\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .desktop\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .desktop\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .desktop\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .desktop\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .desktop\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .desktop\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .desktop\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .desktop\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .desktop\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .desktop\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .desktop\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .desktop\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .desktop\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .desktop\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .desktop\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .desktop\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .desktop\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .desktop\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .desktop\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .desktop\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .desktop\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .desktop\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .desktop\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .desktop\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .desktop\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .desktop\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .desktop\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .desktop\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .desktop\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .desktop\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .desktop\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .desktop\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .desktop\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .desktop\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .desktop\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .desktop\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .desktop\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .desktop\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .desktop\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .desktop\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .desktop\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .desktop\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .desktop\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .desktop\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .desktop\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .desktop\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .desktop\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .desktop\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .desktop\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .desktop\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .desktop\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .desktop\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .desktop\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .desktop\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .desktop\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .desktop\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .desktop\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .desktop\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .desktop\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .desktop\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .desktop\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .desktop\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .desktop\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .desktop\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .desktop\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .desktop\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .desktop\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .desktop\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .desktop\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .desktop\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .desktop\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .desktop\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .desktop\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .desktop\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .desktop\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .desktop\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .desktop\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .desktop\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .desktop\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .desktop\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .desktop\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .desktop\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .desktop\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .desktop\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .desktop\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .desktop\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .desktop\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .desktop\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .desktop\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .desktop\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .desktop\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .desktop\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .desktop\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .desktop\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .desktop\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .desktop\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .desktop\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .desktop\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .desktop\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .desktop\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .desktop\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .desktop\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .desktop\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .desktop\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .desktop\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .desktop\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .desktop\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .desktop\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .desktop\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .desktop\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .desktop\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .desktop\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .desktop\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .desktop\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .desktop\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .desktop\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .desktop\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .desktop\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .desktop\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .desktop\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .desktop\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .desktop\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .desktop\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .desktop\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .desktop\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .desktop\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .desktop\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .desktop\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .desktop\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .desktop\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .desktop\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .desktop\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .desktop\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .desktop\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .desktop\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .desktop\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .desktop\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .desktop\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .desktop\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .desktop\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .desktop\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .desktop\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .desktop\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .desktop\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .desktop\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .desktop\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .desktop\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .desktop\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .desktop\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .desktop\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .desktop\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .desktop\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .desktop\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .desktop\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .desktop\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .desktop\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .desktop\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .desktop\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .desktop\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .desktop\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .desktop\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .desktop\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .desktop\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .desktop\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .desktop\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .desktop\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .desktop\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .desktop\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .desktop\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .desktop\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .desktop\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .desktop\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .desktop\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .desktop\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .desktop\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .desktop\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .desktop\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .desktop\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .desktop\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .desktop\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .desktop\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .desktop\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .desktop\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .desktop\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .desktop\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .desktop\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .desktop\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .desktop\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .desktop\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .desktop\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .desktop\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .desktop\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .desktop\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .desktop\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .desktop\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .desktop\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .desktop\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .desktop\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .desktop\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .desktop\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .desktop\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .desktop\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .desktop\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .desktop\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .desktop\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .desktop\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .desktop\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .desktop\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .desktop\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .desktop\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .desktop\:u-top-0{
    top: 0px !important;
  }

  .desktop\:u-right-0{
    right: 0px !important;
  }

  .desktop\:u-bottom-0{
    bottom: 0px !important;
  }

  .desktop\:u-left-0{
    left: 0px !important;
  }

  .desktop\:u-top-1{
    top: 0.25rem !important;
  }

  .desktop\:u-right-1{
    right: 0.25rem !important;
  }

  .desktop\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .desktop\:u-left-1{
    left: 0.25rem !important;
  }

  .desktop\:u-top-2{
    top: 0.5rem !important;
  }

  .desktop\:u-right-2{
    right: 0.5rem !important;
  }

  .desktop\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .desktop\:u-left-2{
    left: 0.5rem !important;
  }

  .desktop\:u-top-3{
    top: 0.75rem !important;
  }

  .desktop\:u-right-3{
    right: 0.75rem !important;
  }

  .desktop\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .desktop\:u-left-3{
    left: 0.75rem !important;
  }

  .desktop\:u-top-4{
    top: 1rem !important;
  }

  .desktop\:u-right-4{
    right: 1rem !important;
  }

  .desktop\:u-bottom-4{
    bottom: 1rem !important;
  }

  .desktop\:u-left-4{
    left: 1rem !important;
  }

  .desktop\:u-top-5{
    top: 1.25rem !important;
  }

  .desktop\:u-right-5{
    right: 1.25rem !important;
  }

  .desktop\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .desktop\:u-left-5{
    left: 1.25rem !important;
  }

  .desktop\:u-top-6{
    top: 1.5rem !important;
  }

  .desktop\:u-right-6{
    right: 1.5rem !important;
  }

  .desktop\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .desktop\:u-left-6{
    left: 1.5rem !important;
  }

  .desktop\:u-top-7{
    top: 1.75rem !important;
  }

  .desktop\:u-right-7{
    right: 1.75rem !important;
  }

  .desktop\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .desktop\:u-left-7{
    left: 1.75rem !important;
  }

  .desktop\:u-top-8{
    top: 2rem !important;
  }

  .desktop\:u-right-8{
    right: 2rem !important;
  }

  .desktop\:u-bottom-8{
    bottom: 2rem !important;
  }

  .desktop\:u-left-8{
    left: 2rem !important;
  }

  .desktop\:u-top-9{
    top: 2.25rem !important;
  }

  .desktop\:u-right-9{
    right: 2.25rem !important;
  }

  .desktop\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .desktop\:u-left-9{
    left: 2.25rem !important;
  }

  .desktop\:u-top-10{
    top: 2.5rem !important;
  }

  .desktop\:u-right-10{
    right: 2.5rem !important;
  }

  .desktop\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .desktop\:u-left-10{
    left: 2.5rem !important;
  }

  .desktop\:u-top-11{
    top: 2.75rem !important;
  }

  .desktop\:u-right-11{
    right: 2.75rem !important;
  }

  .desktop\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .desktop\:u-left-11{
    left: 2.75rem !important;
  }

  .desktop\:u-top-12{
    top: 3rem !important;
  }

  .desktop\:u-right-12{
    right: 3rem !important;
  }

  .desktop\:u-bottom-12{
    bottom: 3rem !important;
  }

  .desktop\:u-left-12{
    left: 3rem !important;
  }

  .desktop\:u-top-14{
    top: 3.5rem !important;
  }

  .desktop\:u-right-14{
    right: 3.5rem !important;
  }

  .desktop\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .desktop\:u-left-14{
    left: 3.5rem !important;
  }

  .desktop\:u-top-16{
    top: 4rem !important;
  }

  .desktop\:u-right-16{
    right: 4rem !important;
  }

  .desktop\:u-bottom-16{
    bottom: 4rem !important;
  }

  .desktop\:u-left-16{
    left: 4rem !important;
  }

  .desktop\:u-top-20{
    top: 5rem !important;
  }

  .desktop\:u-right-20{
    right: 5rem !important;
  }

  .desktop\:u-bottom-20{
    bottom: 5rem !important;
  }

  .desktop\:u-left-20{
    left: 5rem !important;
  }

  .desktop\:u-top-24{
    top: 6rem !important;
  }

  .desktop\:u-right-24{
    right: 6rem !important;
  }

  .desktop\:u-bottom-24{
    bottom: 6rem !important;
  }

  .desktop\:u-left-24{
    left: 6rem !important;
  }

  .desktop\:u-top-28{
    top: 7rem !important;
  }

  .desktop\:u-right-28{
    right: 7rem !important;
  }

  .desktop\:u-bottom-28{
    bottom: 7rem !important;
  }

  .desktop\:u-left-28{
    left: 7rem !important;
  }

  .desktop\:u-top-32{
    top: 8rem !important;
  }

  .desktop\:u-right-32{
    right: 8rem !important;
  }

  .desktop\:u-bottom-32{
    bottom: 8rem !important;
  }

  .desktop\:u-left-32{
    left: 8rem !important;
  }

  .desktop\:u-top-36{
    top: 9rem !important;
  }

  .desktop\:u-right-36{
    right: 9rem !important;
  }

  .desktop\:u-bottom-36{
    bottom: 9rem !important;
  }

  .desktop\:u-left-36{
    left: 9rem !important;
  }

  .desktop\:u-top-40{
    top: 10rem !important;
  }

  .desktop\:u-right-40{
    right: 10rem !important;
  }

  .desktop\:u-bottom-40{
    bottom: 10rem !important;
  }

  .desktop\:u-left-40{
    left: 10rem !important;
  }

  .desktop\:u-top-44{
    top: 11rem !important;
  }

  .desktop\:u-right-44{
    right: 11rem !important;
  }

  .desktop\:u-bottom-44{
    bottom: 11rem !important;
  }

  .desktop\:u-left-44{
    left: 11rem !important;
  }

  .desktop\:u-top-48{
    top: 12rem !important;
  }

  .desktop\:u-right-48{
    right: 12rem !important;
  }

  .desktop\:u-bottom-48{
    bottom: 12rem !important;
  }

  .desktop\:u-left-48{
    left: 12rem !important;
  }

  .desktop\:u-top-52{
    top: 13rem !important;
  }

  .desktop\:u-right-52{
    right: 13rem !important;
  }

  .desktop\:u-bottom-52{
    bottom: 13rem !important;
  }

  .desktop\:u-left-52{
    left: 13rem !important;
  }

  .desktop\:u-top-56{
    top: 14rem !important;
  }

  .desktop\:u-right-56{
    right: 14rem !important;
  }

  .desktop\:u-bottom-56{
    bottom: 14rem !important;
  }

  .desktop\:u-left-56{
    left: 14rem !important;
  }

  .desktop\:u-top-60{
    top: 15rem !important;
  }

  .desktop\:u-right-60{
    right: 15rem !important;
  }

  .desktop\:u-bottom-60{
    bottom: 15rem !important;
  }

  .desktop\:u-left-60{
    left: 15rem !important;
  }

  .desktop\:u-top-64{
    top: 16rem !important;
  }

  .desktop\:u-right-64{
    right: 16rem !important;
  }

  .desktop\:u-bottom-64{
    bottom: 16rem !important;
  }

  .desktop\:u-left-64{
    left: 16rem !important;
  }

  .desktop\:u-top-72{
    top: 18rem !important;
  }

  .desktop\:u-right-72{
    right: 18rem !important;
  }

  .desktop\:u-bottom-72{
    bottom: 18rem !important;
  }

  .desktop\:u-left-72{
    left: 18rem !important;
  }

  .desktop\:u-top-80{
    top: 20rem !important;
  }

  .desktop\:u-right-80{
    right: 20rem !important;
  }

  .desktop\:u-bottom-80{
    bottom: 20rem !important;
  }

  .desktop\:u-left-80{
    left: 20rem !important;
  }

  .desktop\:u-top-96{
    top: 24rem !important;
  }

  .desktop\:u-right-96{
    right: 24rem !important;
  }

  .desktop\:u-bottom-96{
    bottom: 24rem !important;
  }

  .desktop\:u-left-96{
    left: 24rem !important;
  }

  .desktop\:u-top-auto{
    top: auto !important;
  }

  .desktop\:u-right-auto{
    right: auto !important;
  }

  .desktop\:u-bottom-auto{
    bottom: auto !important;
  }

  .desktop\:u-left-auto{
    left: auto !important;
  }

  .desktop\:u-top-px{
    top: 1px !important;
  }

  .desktop\:u-right-px{
    right: 1px !important;
  }

  .desktop\:u-bottom-px{
    bottom: 1px !important;
  }

  .desktop\:u-left-px{
    left: 1px !important;
  }

  .desktop\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .desktop\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .desktop\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .desktop\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .desktop\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .desktop\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .desktop\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .desktop\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .desktop\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .desktop\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .desktop\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .desktop\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .desktop\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .desktop\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .desktop\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .desktop\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .desktop\:u--top-0{
    top: 0px !important;
  }

  .desktop\:u--right-0{
    right: 0px !important;
  }

  .desktop\:u--bottom-0{
    bottom: 0px !important;
  }

  .desktop\:u--left-0{
    left: 0px !important;
  }

  .desktop\:u--top-1{
    top: -0.25rem !important;
  }

  .desktop\:u--right-1{
    right: -0.25rem !important;
  }

  .desktop\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .desktop\:u--left-1{
    left: -0.25rem !important;
  }

  .desktop\:u--top-2{
    top: -0.5rem !important;
  }

  .desktop\:u--right-2{
    right: -0.5rem !important;
  }

  .desktop\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .desktop\:u--left-2{
    left: -0.5rem !important;
  }

  .desktop\:u--top-3{
    top: -0.75rem !important;
  }

  .desktop\:u--right-3{
    right: -0.75rem !important;
  }

  .desktop\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .desktop\:u--left-3{
    left: -0.75rem !important;
  }

  .desktop\:u--top-4{
    top: -1rem !important;
  }

  .desktop\:u--right-4{
    right: -1rem !important;
  }

  .desktop\:u--bottom-4{
    bottom: -1rem !important;
  }

  .desktop\:u--left-4{
    left: -1rem !important;
  }

  .desktop\:u--top-5{
    top: -1.25rem !important;
  }

  .desktop\:u--right-5{
    right: -1.25rem !important;
  }

  .desktop\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .desktop\:u--left-5{
    left: -1.25rem !important;
  }

  .desktop\:u--top-6{
    top: -1.5rem !important;
  }

  .desktop\:u--right-6{
    right: -1.5rem !important;
  }

  .desktop\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .desktop\:u--left-6{
    left: -1.5rem !important;
  }

  .desktop\:u--top-7{
    top: -1.75rem !important;
  }

  .desktop\:u--right-7{
    right: -1.75rem !important;
  }

  .desktop\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .desktop\:u--left-7{
    left: -1.75rem !important;
  }

  .desktop\:u--top-8{
    top: -2rem !important;
  }

  .desktop\:u--right-8{
    right: -2rem !important;
  }

  .desktop\:u--bottom-8{
    bottom: -2rem !important;
  }

  .desktop\:u--left-8{
    left: -2rem !important;
  }

  .desktop\:u--top-9{
    top: -2.25rem !important;
  }

  .desktop\:u--right-9{
    right: -2.25rem !important;
  }

  .desktop\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .desktop\:u--left-9{
    left: -2.25rem !important;
  }

  .desktop\:u--top-10{
    top: -2.5rem !important;
  }

  .desktop\:u--right-10{
    right: -2.5rem !important;
  }

  .desktop\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .desktop\:u--left-10{
    left: -2.5rem !important;
  }

  .desktop\:u--top-11{
    top: -2.75rem !important;
  }

  .desktop\:u--right-11{
    right: -2.75rem !important;
  }

  .desktop\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .desktop\:u--left-11{
    left: -2.75rem !important;
  }

  .desktop\:u--top-12{
    top: -3rem !important;
  }

  .desktop\:u--right-12{
    right: -3rem !important;
  }

  .desktop\:u--bottom-12{
    bottom: -3rem !important;
  }

  .desktop\:u--left-12{
    left: -3rem !important;
  }

  .desktop\:u--top-14{
    top: -3.5rem !important;
  }

  .desktop\:u--right-14{
    right: -3.5rem !important;
  }

  .desktop\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .desktop\:u--left-14{
    left: -3.5rem !important;
  }

  .desktop\:u--top-16{
    top: -4rem !important;
  }

  .desktop\:u--right-16{
    right: -4rem !important;
  }

  .desktop\:u--bottom-16{
    bottom: -4rem !important;
  }

  .desktop\:u--left-16{
    left: -4rem !important;
  }

  .desktop\:u--top-20{
    top: -5rem !important;
  }

  .desktop\:u--right-20{
    right: -5rem !important;
  }

  .desktop\:u--bottom-20{
    bottom: -5rem !important;
  }

  .desktop\:u--left-20{
    left: -5rem !important;
  }

  .desktop\:u--top-24{
    top: -6rem !important;
  }

  .desktop\:u--right-24{
    right: -6rem !important;
  }

  .desktop\:u--bottom-24{
    bottom: -6rem !important;
  }

  .desktop\:u--left-24{
    left: -6rem !important;
  }

  .desktop\:u--top-28{
    top: -7rem !important;
  }

  .desktop\:u--right-28{
    right: -7rem !important;
  }

  .desktop\:u--bottom-28{
    bottom: -7rem !important;
  }

  .desktop\:u--left-28{
    left: -7rem !important;
  }

  .desktop\:u--top-32{
    top: -8rem !important;
  }

  .desktop\:u--right-32{
    right: -8rem !important;
  }

  .desktop\:u--bottom-32{
    bottom: -8rem !important;
  }

  .desktop\:u--left-32{
    left: -8rem !important;
  }

  .desktop\:u--top-36{
    top: -9rem !important;
  }

  .desktop\:u--right-36{
    right: -9rem !important;
  }

  .desktop\:u--bottom-36{
    bottom: -9rem !important;
  }

  .desktop\:u--left-36{
    left: -9rem !important;
  }

  .desktop\:u--top-40{
    top: -10rem !important;
  }

  .desktop\:u--right-40{
    right: -10rem !important;
  }

  .desktop\:u--bottom-40{
    bottom: -10rem !important;
  }

  .desktop\:u--left-40{
    left: -10rem !important;
  }

  .desktop\:u--top-44{
    top: -11rem !important;
  }

  .desktop\:u--right-44{
    right: -11rem !important;
  }

  .desktop\:u--bottom-44{
    bottom: -11rem !important;
  }

  .desktop\:u--left-44{
    left: -11rem !important;
  }

  .desktop\:u--top-48{
    top: -12rem !important;
  }

  .desktop\:u--right-48{
    right: -12rem !important;
  }

  .desktop\:u--bottom-48{
    bottom: -12rem !important;
  }

  .desktop\:u--left-48{
    left: -12rem !important;
  }

  .desktop\:u--top-52{
    top: -13rem !important;
  }

  .desktop\:u--right-52{
    right: -13rem !important;
  }

  .desktop\:u--bottom-52{
    bottom: -13rem !important;
  }

  .desktop\:u--left-52{
    left: -13rem !important;
  }

  .desktop\:u--top-56{
    top: -14rem !important;
  }

  .desktop\:u--right-56{
    right: -14rem !important;
  }

  .desktop\:u--bottom-56{
    bottom: -14rem !important;
  }

  .desktop\:u--left-56{
    left: -14rem !important;
  }

  .desktop\:u--top-60{
    top: -15rem !important;
  }

  .desktop\:u--right-60{
    right: -15rem !important;
  }

  .desktop\:u--bottom-60{
    bottom: -15rem !important;
  }

  .desktop\:u--left-60{
    left: -15rem !important;
  }

  .desktop\:u--top-64{
    top: -16rem !important;
  }

  .desktop\:u--right-64{
    right: -16rem !important;
  }

  .desktop\:u--bottom-64{
    bottom: -16rem !important;
  }

  .desktop\:u--left-64{
    left: -16rem !important;
  }

  .desktop\:u--top-72{
    top: -18rem !important;
  }

  .desktop\:u--right-72{
    right: -18rem !important;
  }

  .desktop\:u--bottom-72{
    bottom: -18rem !important;
  }

  .desktop\:u--left-72{
    left: -18rem !important;
  }

  .desktop\:u--top-80{
    top: -20rem !important;
  }

  .desktop\:u--right-80{
    right: -20rem !important;
  }

  .desktop\:u--bottom-80{
    bottom: -20rem !important;
  }

  .desktop\:u--left-80{
    left: -20rem !important;
  }

  .desktop\:u--top-96{
    top: -24rem !important;
  }

  .desktop\:u--right-96{
    right: -24rem !important;
  }

  .desktop\:u--bottom-96{
    bottom: -24rem !important;
  }

  .desktop\:u--left-96{
    left: -24rem !important;
  }

  .desktop\:u--top-px{
    top: -1px !important;
  }

  .desktop\:u--right-px{
    right: -1px !important;
  }

  .desktop\:u--bottom-px{
    bottom: -1px !important;
  }

  .desktop\:u--left-px{
    left: -1px !important;
  }

  .desktop\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .desktop\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .desktop\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .desktop\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .desktop\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .desktop\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .desktop\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .desktop\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .desktop\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .desktop\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .desktop\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .desktop\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .desktop\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .desktop\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .desktop\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .desktop\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .desktop\:u-top-1\/2{
    top: 50% !important;
  }

  .desktop\:u-right-1\/2{
    right: 50% !important;
  }

  .desktop\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .desktop\:u-left-1\/2{
    left: 50% !important;
  }

  .desktop\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .desktop\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .desktop\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .desktop\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .desktop\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .desktop\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .desktop\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .desktop\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .desktop\:u-top-1\/4{
    top: 25% !important;
  }

  .desktop\:u-right-1\/4{
    right: 25% !important;
  }

  .desktop\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .desktop\:u-left-1\/4{
    left: 25% !important;
  }

  .desktop\:u-top-2\/4{
    top: 50% !important;
  }

  .desktop\:u-right-2\/4{
    right: 50% !important;
  }

  .desktop\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .desktop\:u-left-2\/4{
    left: 50% !important;
  }

  .desktop\:u-top-3\/4{
    top: 75% !important;
  }

  .desktop\:u-right-3\/4{
    right: 75% !important;
  }

  .desktop\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .desktop\:u-left-3\/4{
    left: 75% !important;
  }

  .desktop\:u-top-full{
    top: 100% !important;
  }

  .desktop\:u-right-full{
    right: 100% !important;
  }

  .desktop\:u-bottom-full{
    bottom: 100% !important;
  }

  .desktop\:u-left-full{
    left: 100% !important;
  }

  .desktop\:u--top-1\/2{
    top: -50% !important;
  }

  .desktop\:u--right-1\/2{
    right: -50% !important;
  }

  .desktop\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .desktop\:u--left-1\/2{
    left: -50% !important;
  }

  .desktop\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .desktop\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .desktop\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .desktop\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .desktop\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .desktop\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .desktop\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .desktop\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .desktop\:u--top-1\/4{
    top: -25% !important;
  }

  .desktop\:u--right-1\/4{
    right: -25% !important;
  }

  .desktop\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .desktop\:u--left-1\/4{
    left: -25% !important;
  }

  .desktop\:u--top-2\/4{
    top: -50% !important;
  }

  .desktop\:u--right-2\/4{
    right: -50% !important;
  }

  .desktop\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .desktop\:u--left-2\/4{
    left: -50% !important;
  }

  .desktop\:u--top-3\/4{
    top: -75% !important;
  }

  .desktop\:u--right-3\/4{
    right: -75% !important;
  }

  .desktop\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .desktop\:u--left-3\/4{
    left: -75% !important;
  }

  .desktop\:u--top-full{
    top: -100% !important;
  }

  .desktop\:u--right-full{
    right: -100% !important;
  }

  .desktop\:u--bottom-full{
    bottom: -100% !important;
  }

  .desktop\:u--left-full{
    left: -100% !important;
  }

  .desktop\:u-resize-none{
    resize: none !important;
  }

  .desktop\:u-resize-y{
    resize: vertical !important;
  }

  .desktop\:u-resize-x{
    resize: horizontal !important;
  }

  .desktop\:u-resize{
    resize: both !important;
  }

  .desktop\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .desktop\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .desktop\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .desktop\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .desktop\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .desktop\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .desktop\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .desktop\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .desktop\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .desktop\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .desktop\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .desktop\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .desktop\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .desktop\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .desktop\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .desktop\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .desktop\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .desktop\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .desktop\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .desktop\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .desktop\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .desktop\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .desktop\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .desktop\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .desktop\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .desktop\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .desktop\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .desktop\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .desktop\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .desktop\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .desktop\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .desktop\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .desktop\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .desktop\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .desktop\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .desktop\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .desktop\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .desktop\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .desktop\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .desktop\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .desktop\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .desktop\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .desktop\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .desktop\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .desktop\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .desktop\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .desktop\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .desktop\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .desktop\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .desktop\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .desktop\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .desktop\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .desktop\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .desktop\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .desktop\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .desktop\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .desktop\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .desktop\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .desktop\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .desktop\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .desktop\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .desktop\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .desktop\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .desktop\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .desktop\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .desktop\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .desktop\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .desktop\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .desktop\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .desktop\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .desktop\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .desktop\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .desktop\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .desktop\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .desktop\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .desktop\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .desktop\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .desktop\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .desktop\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .desktop\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .desktop\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .desktop\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .desktop\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .desktop\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .desktop\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .desktop\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .desktop\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .desktop\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .desktop\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .desktop\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .desktop\:u-fill-current{
    fill: currentColor !important;
  }

  .desktop\:u-stroke-current{
    stroke: currentColor !important;
  }

  .desktop\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .desktop\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .desktop\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .desktop\:u-table-auto{
    table-layout: auto !important;
  }

  .desktop\:u-table-fixed{
    table-layout: fixed !important;
  }

  .desktop\:u-text-left{
    text-align: left !important;
  }

  .desktop\:u-text-center{
    text-align: center !important;
  }

  .desktop\:u-text-right{
    text-align: right !important;
  }

  .desktop\:u-text-justify{
    text-align: justify !important;
  }

  .desktop\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-transparent{
    color: transparent !important;
  }

  .desktop\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .desktop\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .desktop\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .desktop\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .desktop\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .desktop\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .desktop\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .desktop\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .desktop\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .desktop\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .desktop\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .desktop\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .desktop\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .desktop\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .desktop\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .desktop\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .desktop\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .desktop\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .desktop\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .desktop\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .desktop\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .desktop\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .desktop\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .desktop\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .desktop\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .desktop\:u-italic{
    font-style: italic !important;
  }

  .desktop\:u-not-italic{
    font-style: normal !important;
  }

  .desktop\:u-uppercase{
    text-transform: uppercase !important;
  }

  .desktop\:u-lowercase{
    text-transform: lowercase !important;
  }

  .desktop\:u-capitalize{
    text-transform: capitalize !important;
  }

  .desktop\:u-normal-case{
    text-transform: none !important;
  }

  .desktop\:u-underline{
    text-decoration: underline !important;
  }

  .desktop\:u-line-through{
    text-decoration: line-through !important;
  }

  .desktop\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .desktop\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .desktop\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .desktop\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .desktop\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .desktop\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .desktop\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .desktop\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .desktop\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .desktop\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .desktop\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .desktop\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .desktop\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .desktop\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .desktop\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .desktop\:u-ordinal, .desktop\:u-slashed-zero, .desktop\:u-lining-nums, .desktop\:u-oldstyle-nums, .desktop\:u-proportional-nums, .desktop\:u-tabular-nums, .desktop\:u-diagonal-fractions, .desktop\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .desktop\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .desktop\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .desktop\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .desktop\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .desktop\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .desktop\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .desktop\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .desktop\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .desktop\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .desktop\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .desktop\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .desktop\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .desktop\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .desktop\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .desktop\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .desktop\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .desktop\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .desktop\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .desktop\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .desktop\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .desktop\:u-align-top{
    vertical-align: top !important;
  }

  .desktop\:u-align-middle{
    vertical-align: middle !important;
  }

  .desktop\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .desktop\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .desktop\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .desktop\:u-visible{
    visibility: visible !important;
  }

  .desktop\:u-invisible{
    visibility: hidden !important;
  }

  .desktop\:u-whitespace-normal{
    white-space: normal !important;
  }

  .desktop\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .desktop\:u-whitespace-pre{
    white-space: pre !important;
  }

  .desktop\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .desktop\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .desktop\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .desktop\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .desktop\:u-break-all{
    word-break: break-all !important;
  }

  .desktop\:u-w-0{
    width: 0px !important;
  }

  .desktop\:u-w-1{
    width: 0.25rem !important;
  }

  .desktop\:u-w-2{
    width: 0.5rem !important;
  }

  .desktop\:u-w-3{
    width: 0.75rem !important;
  }

  .desktop\:u-w-4{
    width: 1rem !important;
  }

  .desktop\:u-w-5{
    width: 1.25rem !important;
  }

  .desktop\:u-w-6{
    width: 1.5rem !important;
  }

  .desktop\:u-w-7{
    width: 1.75rem !important;
  }

  .desktop\:u-w-8{
    width: 2rem !important;
  }

  .desktop\:u-w-9{
    width: 2.25rem !important;
  }

  .desktop\:u-w-10{
    width: 2.5rem !important;
  }

  .desktop\:u-w-11{
    width: 2.75rem !important;
  }

  .desktop\:u-w-12{
    width: 3rem !important;
  }

  .desktop\:u-w-14{
    width: 3.5rem !important;
  }

  .desktop\:u-w-16{
    width: 4rem !important;
  }

  .desktop\:u-w-20{
    width: 5rem !important;
  }

  .desktop\:u-w-24{
    width: 6rem !important;
  }

  .desktop\:u-w-28{
    width: 7rem !important;
  }

  .desktop\:u-w-32{
    width: 8rem !important;
  }

  .desktop\:u-w-36{
    width: 9rem !important;
  }

  .desktop\:u-w-40{
    width: 10rem !important;
  }

  .desktop\:u-w-44{
    width: 11rem !important;
  }

  .desktop\:u-w-48{
    width: 12rem !important;
  }

  .desktop\:u-w-52{
    width: 13rem !important;
  }

  .desktop\:u-w-56{
    width: 14rem !important;
  }

  .desktop\:u-w-60{
    width: 15rem !important;
  }

  .desktop\:u-w-64{
    width: 16rem !important;
  }

  .desktop\:u-w-72{
    width: 18rem !important;
  }

  .desktop\:u-w-80{
    width: 20rem !important;
  }

  .desktop\:u-w-96{
    width: 24rem !important;
  }

  .desktop\:u-w-auto{
    width: auto !important;
  }

  .desktop\:u-w-px{
    width: 1px !important;
  }

  .desktop\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .desktop\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .desktop\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .desktop\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .desktop\:u-w-1\/2{
    width: 50% !important;
  }

  .desktop\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .desktop\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .desktop\:u-w-1\/4{
    width: 25% !important;
  }

  .desktop\:u-w-2\/4{
    width: 50% !important;
  }

  .desktop\:u-w-3\/4{
    width: 75% !important;
  }

  .desktop\:u-w-1\/5{
    width: 20% !important;
  }

  .desktop\:u-w-2\/5{
    width: 40% !important;
  }

  .desktop\:u-w-3\/5{
    width: 60% !important;
  }

  .desktop\:u-w-4\/5{
    width: 80% !important;
  }

  .desktop\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .desktop\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .desktop\:u-w-3\/6{
    width: 50% !important;
  }

  .desktop\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .desktop\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .desktop\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .desktop\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .desktop\:u-w-3\/12{
    width: 25% !important;
  }

  .desktop\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .desktop\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .desktop\:u-w-6\/12{
    width: 50% !important;
  }

  .desktop\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .desktop\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .desktop\:u-w-9\/12{
    width: 75% !important;
  }

  .desktop\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .desktop\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .desktop\:u-w-full{
    width: 100% !important;
  }

  .desktop\:u-w-screen{
    width: 100vw !important;
  }

  .desktop\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .desktop\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .desktop\:u-z-0{
    z-index: 0 !important;
  }

  .desktop\:u-z-10{
    z-index: 10 !important;
  }

  .desktop\:u-z-20{
    z-index: 20 !important;
  }

  .desktop\:u-z-30{
    z-index: 30 !important;
  }

  .desktop\:u-z-40{
    z-index: 40 !important;
  }

  .desktop\:u-z-50{
    z-index: 50 !important;
  }

  .desktop\:u-z-auto{
    z-index: auto !important;
  }

  .desktop\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .desktop\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .desktop\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .desktop\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .desktop\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .desktop\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .desktop\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .desktop\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .desktop\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .desktop\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .desktop\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .desktop\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .desktop\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .desktop\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .desktop\:u-gap-0{
    gap: 0px !important;
  }

  .desktop\:u-gap-1{
    gap: 0.25rem !important;
  }

  .desktop\:u-gap-2{
    gap: 0.5rem !important;
  }

  .desktop\:u-gap-3{
    gap: 0.75rem !important;
  }

  .desktop\:u-gap-4{
    gap: 1rem !important;
  }

  .desktop\:u-gap-5{
    gap: 1.25rem !important;
  }

  .desktop\:u-gap-6{
    gap: 1.5rem !important;
  }

  .desktop\:u-gap-7{
    gap: 1.75rem !important;
  }

  .desktop\:u-gap-8{
    gap: 2rem !important;
  }

  .desktop\:u-gap-9{
    gap: 2.25rem !important;
  }

  .desktop\:u-gap-10{
    gap: 2.5rem !important;
  }

  .desktop\:u-gap-11{
    gap: 2.75rem !important;
  }

  .desktop\:u-gap-12{
    gap: 3rem !important;
  }

  .desktop\:u-gap-14{
    gap: 3.5rem !important;
  }

  .desktop\:u-gap-16{
    gap: 4rem !important;
  }

  .desktop\:u-gap-20{
    gap: 5rem !important;
  }

  .desktop\:u-gap-24{
    gap: 6rem !important;
  }

  .desktop\:u-gap-28{
    gap: 7rem !important;
  }

  .desktop\:u-gap-32{
    gap: 8rem !important;
  }

  .desktop\:u-gap-36{
    gap: 9rem !important;
  }

  .desktop\:u-gap-40{
    gap: 10rem !important;
  }

  .desktop\:u-gap-44{
    gap: 11rem !important;
  }

  .desktop\:u-gap-48{
    gap: 12rem !important;
  }

  .desktop\:u-gap-52{
    gap: 13rem !important;
  }

  .desktop\:u-gap-56{
    gap: 14rem !important;
  }

  .desktop\:u-gap-60{
    gap: 15rem !important;
  }

  .desktop\:u-gap-64{
    gap: 16rem !important;
  }

  .desktop\:u-gap-72{
    gap: 18rem !important;
  }

  .desktop\:u-gap-80{
    gap: 20rem !important;
  }

  .desktop\:u-gap-96{
    gap: 24rem !important;
  }

  .desktop\:u-gap-px{
    gap: 1px !important;
  }

  .desktop\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .desktop\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .desktop\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .desktop\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .desktop\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .desktop\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .desktop\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .desktop\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .desktop\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .desktop\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .desktop\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .desktop\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .desktop\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .desktop\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .desktop\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .desktop\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .desktop\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .desktop\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .desktop\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .desktop\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .desktop\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .desktop\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .desktop\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .desktop\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .desktop\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .desktop\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .desktop\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .desktop\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .desktop\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .desktop\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .desktop\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .desktop\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .desktop\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .desktop\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .desktop\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .desktop\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .desktop\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .desktop\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .desktop\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .desktop\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .desktop\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .desktop\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .desktop\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .desktop\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .desktop\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .desktop\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .desktop\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .desktop\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .desktop\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .desktop\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .desktop\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .desktop\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .desktop\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .desktop\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .desktop\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .desktop\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .desktop\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .desktop\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .desktop\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .desktop\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .desktop\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .desktop\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .desktop\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .desktop\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .desktop\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .desktop\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .desktop\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .desktop\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .desktop\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .desktop\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .desktop\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .desktop\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .desktop\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .desktop\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .desktop\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .desktop\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .desktop\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .desktop\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .desktop\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .desktop\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .desktop\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .desktop\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .desktop\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .desktop\:u-col-auto{
    grid-column: auto !important;
  }

  .desktop\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .desktop\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .desktop\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .desktop\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .desktop\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .desktop\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .desktop\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .desktop\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .desktop\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .desktop\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .desktop\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .desktop\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .desktop\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .desktop\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .desktop\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .desktop\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .desktop\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .desktop\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .desktop\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .desktop\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .desktop\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .desktop\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .desktop\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .desktop\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .desktop\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .desktop\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .desktop\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .desktop\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .desktop\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .desktop\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .desktop\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .desktop\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .desktop\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .desktop\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .desktop\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .desktop\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .desktop\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .desktop\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .desktop\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .desktop\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .desktop\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .desktop\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .desktop\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .desktop\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .desktop\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .desktop\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .desktop\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .desktop\:u-row-auto{
    grid-row: auto !important;
  }

  .desktop\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .desktop\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .desktop\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .desktop\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .desktop\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .desktop\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .desktop\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .desktop\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .desktop\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .desktop\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .desktop\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .desktop\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .desktop\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .desktop\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .desktop\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .desktop\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .desktop\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .desktop\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .desktop\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .desktop\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .desktop\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .desktop\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .desktop\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .desktop\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .desktop\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .desktop\:u-transform-none{
    transform: none !important;
  }

  .desktop\:u-origin-center{
    transform-origin: center !important;
  }

  .desktop\:u-origin-top{
    transform-origin: top !important;
  }

  .desktop\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .desktop\:u-origin-right{
    transform-origin: right !important;
  }

  .desktop\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .desktop\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .desktop\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .desktop\:u-origin-left{
    transform-origin: left !important;
  }

  .desktop\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .desktop\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .desktop\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .desktop\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .desktop\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .desktop\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .desktop\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .desktop\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .desktop\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .desktop\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .desktop\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .desktop\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .desktop\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .desktop\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .desktop\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .desktop\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .desktop\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .desktop\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .desktop\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .desktop\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .desktop\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .desktop\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .desktop\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .desktop\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .desktop\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .desktop\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .desktop\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .desktop\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .desktop\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .desktop\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .desktop\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .desktop\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .desktop\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .desktop\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .desktop\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .desktop\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .desktop\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .desktop\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .desktop\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .desktop\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .desktop\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .desktop\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .desktop\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .desktop\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .desktop\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .desktop\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .desktop\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .desktop\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .desktop\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .desktop\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .desktop\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .desktop\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .desktop\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .desktop\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .desktop\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .desktop\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .desktop\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .desktop\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .desktop\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .desktop\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .desktop\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .desktop\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .desktop\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .desktop\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .desktop\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .desktop\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .desktop\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .desktop\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .desktop\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .desktop\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .desktop\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .desktop\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .desktop\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .desktop\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .desktop\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .desktop\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .desktop\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .desktop\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .desktop\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .desktop\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .desktop\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .desktop\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .desktop\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .desktop\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .desktop\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .desktop\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .desktop\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .desktop\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .desktop\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .desktop\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .desktop\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .desktop\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .desktop\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .desktop\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .desktop\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .desktop\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .desktop\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .desktop\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .desktop\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .desktop\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .desktop\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .desktop\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .desktop\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .desktop\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .desktop\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .desktop\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .desktop\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .desktop\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .desktop\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .desktop\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .desktop\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .desktop\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .desktop\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .desktop\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .desktop\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .desktop\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .desktop\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .desktop\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .desktop\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .desktop\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .desktop\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .desktop\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .desktop\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .desktop\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .desktop\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .desktop\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .desktop\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .desktop\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .desktop\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .desktop\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .desktop\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .desktop\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .desktop\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .desktop\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .desktop\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .desktop\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .desktop\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .desktop\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .desktop\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .desktop\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .desktop\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .desktop\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .desktop\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .desktop\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .desktop\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .desktop\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .desktop\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .desktop\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .desktop\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .desktop\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .desktop\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .desktop\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .desktop\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .desktop\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .desktop\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .desktop\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .desktop\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .desktop\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .desktop\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .desktop\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .desktop\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .desktop\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .desktop\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .desktop\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .desktop\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .desktop\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .desktop\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .desktop\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .desktop\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .desktop\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .desktop\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .desktop\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .desktop\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .desktop\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .desktop\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .desktop\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .desktop\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .desktop\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .desktop\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .desktop\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .desktop\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .desktop\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .desktop\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .desktop\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .desktop\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .desktop\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .desktop\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .desktop\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .desktop\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .desktop\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .desktop\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .desktop\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .desktop\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .desktop\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .desktop\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .desktop\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .desktop\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .desktop\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .desktop\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .desktop\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .desktop\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .desktop\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .desktop\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .desktop\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .desktop\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .desktop\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .desktop\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .desktop\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .desktop\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .desktop\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .desktop\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .desktop\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .desktop\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .desktop\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .desktop\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .desktop\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .desktop\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .desktop\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .desktop\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .desktop\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .desktop\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .desktop\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .desktop\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .desktop\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .desktop\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .desktop\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .desktop\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .desktop\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .desktop\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .desktop\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .desktop\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .desktop\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .desktop\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .desktop\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .desktop\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .desktop\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .desktop\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .desktop\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .desktop\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .desktop\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .desktop\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .desktop\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .desktop\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .desktop\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .desktop\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .desktop\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .desktop\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .desktop\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .desktop\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .desktop\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .desktop\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .desktop\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .desktop\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .desktop\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .desktop\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .desktop\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .desktop\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .desktop\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .desktop\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .desktop\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .desktop\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .desktop\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .desktop\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .desktop\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .desktop\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .desktop\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .desktop\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .desktop\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .desktop\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .desktop\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .desktop\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .desktop\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .desktop\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .desktop\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .desktop\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .desktop\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .desktop\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .desktop\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .desktop\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .desktop\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .desktop\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .desktop\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .desktop\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .desktop\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .desktop\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .desktop\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .desktop\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .desktop\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .desktop\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .desktop\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .desktop\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .desktop\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .desktop\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .desktop\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .desktop\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .desktop\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .desktop\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .desktop\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .desktop\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .desktop\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .desktop\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .desktop\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .desktop\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .desktop\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .desktop\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .desktop\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .desktop\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .desktop\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .desktop\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .desktop\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .desktop\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .desktop\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .desktop\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .desktop\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .desktop\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .desktop\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .desktop\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .desktop\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .desktop\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .desktop\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .desktop\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .desktop\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .desktop\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .desktop\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .desktop\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .desktop\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .desktop\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .desktop\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .desktop\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .desktop\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .desktop\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .desktop\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .desktop\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .desktop\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .desktop\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .desktop\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .desktop\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .desktop\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .desktop\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .desktop\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .desktop\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .desktop\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .desktop\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .desktop\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .desktop\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .desktop\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .desktop\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .desktop\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .desktop\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .desktop\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .desktop\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .desktop\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .desktop\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .desktop\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .desktop\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .desktop\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .desktop\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .desktop\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .desktop\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .desktop\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .desktop\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .desktop\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .desktop\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .desktop\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .desktop\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .desktop\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .desktop\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .desktop\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .desktop\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .desktop\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .desktop\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .desktop\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .desktop\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .desktop\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .desktop\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .desktop\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .desktop\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .desktop\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .desktop\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .desktop\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .desktop\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .desktop\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .desktop\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .desktop\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .desktop\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .desktop\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .desktop\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .desktop\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .desktop\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .desktop\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .desktop\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .desktop\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .desktop\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .desktop\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .desktop\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .desktop\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .desktop\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .desktop\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .desktop\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .desktop\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .desktop\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .desktop\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .desktop\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .desktop\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .desktop\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .desktop\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .desktop\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .desktop\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .desktop\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .desktop\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .desktop\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .desktop\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .desktop\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .desktop\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .desktop\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .desktop\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .desktop\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .desktop\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .desktop\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .desktop\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .desktop\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .desktop\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .desktop\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .desktop\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .desktop\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .desktop\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .desktop\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .desktop\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .desktop\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .desktop\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .desktop\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .desktop\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .desktop\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .desktop\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .desktop\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .desktop\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .desktop\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .desktop\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .desktop\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .desktop\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .desktop\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .desktop\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .desktop\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .desktop\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .desktop\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .desktop\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .desktop\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .desktop\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .desktop\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .desktop\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .desktop\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .desktop\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .desktop\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .desktop\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .desktop\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .desktop\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .desktop\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .desktop\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .desktop\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .desktop\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .desktop\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .desktop\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .desktop\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .desktop\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .desktop\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .desktop\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .desktop\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .desktop\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .desktop\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .desktop\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .desktop\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .desktop\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .desktop\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .desktop\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .desktop\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .desktop\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .desktop\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .desktop\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .desktop\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .desktop\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .desktop\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .desktop\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .desktop\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .desktop\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .desktop\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .desktop\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .desktop\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .desktop\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .desktop\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .desktop\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .desktop\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .desktop\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .desktop\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .desktop\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .desktop\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .desktop\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .desktop\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .desktop\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .desktop\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .desktop\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .desktop\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .desktop\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .desktop\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .desktop\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .desktop\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .desktop\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .desktop\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .desktop\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .desktop\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .desktop\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .desktop\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .desktop\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .desktop\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .desktop\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .desktop\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .desktop\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .desktop\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .desktop\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .desktop\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .desktop\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .desktop\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .desktop\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .desktop\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .desktop\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .desktop\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .desktop\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .desktop\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .desktop\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .desktop\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .desktop\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .desktop\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .desktop\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .desktop\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .desktop\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .desktop\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .desktop\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .desktop\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .desktop\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .desktop\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .desktop\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .desktop\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .desktop\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .desktop\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .desktop\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .desktop\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .desktop\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .desktop\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .desktop\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .desktop\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .desktop\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .desktop\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .desktop\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .desktop\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .desktop\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .desktop\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .desktop\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .desktop\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .desktop\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .desktop\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .desktop\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .desktop\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .desktop\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .desktop\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .desktop\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .desktop\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .desktop\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .desktop\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .desktop\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .desktop\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .desktop\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .desktop\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .desktop\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .desktop\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .desktop\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .desktop\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .desktop\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .desktop\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .desktop\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .desktop\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .desktop\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .desktop\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .desktop\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .desktop\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .desktop\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .desktop\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .desktop\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .desktop\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .desktop\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .desktop\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .desktop\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .desktop\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .desktop\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .desktop\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .desktop\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .desktop\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .desktop\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .desktop\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .desktop\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .desktop\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .desktop\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .desktop\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .desktop\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .desktop\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .desktop\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .desktop\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .desktop\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .desktop\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .desktop\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .desktop\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .desktop\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .desktop\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .desktop\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .desktop\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .desktop\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .desktop\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .desktop\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .desktop\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .desktop\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .desktop\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .desktop\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .desktop\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .desktop\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .desktop\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .desktop\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .desktop\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .desktop\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .desktop\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .desktop\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .desktop\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .desktop\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .desktop\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .desktop\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .desktop\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .desktop\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .desktop\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .desktop\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .desktop\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .desktop\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .desktop\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .desktop\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .desktop\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .desktop\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .desktop\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .desktop\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .desktop\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .desktop\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .desktop\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .desktop\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .desktop\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .desktop\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .desktop\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .desktop\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .desktop\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .desktop\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .desktop\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .desktop\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .desktop\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .desktop\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .desktop\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .desktop\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .desktop\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .desktop\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .desktop\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .desktop\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .desktop\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .desktop\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .desktop\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .desktop\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .desktop\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .desktop\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .desktop\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .desktop\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .desktop\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .desktop\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .desktop\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .desktop\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .desktop\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .desktop\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .desktop\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .desktop\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .desktop\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .desktop\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .desktop\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .desktop\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .desktop\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .desktop\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .desktop\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .desktop\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .desktop\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .desktop\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .desktop\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .desktop\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .desktop\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .desktop\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .desktop\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .desktop\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .desktop\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .desktop\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .desktop\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .desktop\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .desktop\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .desktop\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .desktop\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .desktop\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .desktop\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .desktop\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .desktop\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .desktop\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .desktop\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .desktop\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .desktop\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .desktop\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .desktop\:u-transition-none{
    transition-property: none !important;
  }

  .desktop\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .desktop\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .desktop\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .desktop\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .desktop\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .desktop\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .desktop\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .desktop\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .desktop\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .desktop\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .desktop\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .desktop\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .desktop\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .desktop\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .desktop\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .desktop\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .desktop\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .desktop\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .desktop\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .desktop\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .desktop\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .desktop\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .desktop\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .desktop\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .desktop\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .desktop\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .desktop\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .desktop\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .desktop\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .desktop\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .desktop\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}

@media (min-width: 1280px){
  .xl\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .xl\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .xl\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .xl\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .xl\:u-container{
      max-width: 1120px;
    }
  }

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

  .xl\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .xl\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .xl\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .xl\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .xl\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .xl\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .xl\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .xl\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .xl\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .xl\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .xl\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .xl\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .xl\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .xl\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .xl\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .xl\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .xl\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .xl\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .xl\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .xl\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .xl\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .xl\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .xl\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .xl\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .xl\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .xl\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .xl\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .xl\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .xl\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .xl\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .xl\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .xl\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .xl\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .xl\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .xl\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .xl\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .xl\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .xl\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .xl\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .xl\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .xl\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .xl\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .xl\:u-bg-local{
    background-attachment: local !important;
  }

  .xl\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .xl\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .xl\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .xl\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .xl\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .xl\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-transparent{
    background-color: transparent !important;
  }

  .xl\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .xl\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .xl\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .xl\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .xl\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .xl\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .xl\:u-bg-none{
    background-image: none !important;
  }

  .xl\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .xl\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .xl\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .xl\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .xl\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .xl\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .xl\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .xl\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .xl\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .xl\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .xl\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .xl\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .xl\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .xl\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .xl\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .xl\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .xl\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .xl\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .xl\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .xl\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .xl\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .xl\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .xl\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .xl\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .xl\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .xl\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .xl\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .xl\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .xl\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .xl\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .xl\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .xl\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .xl\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .xl\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .xl\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .xl\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .xl\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .xl\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .xl\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .xl\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .xl\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .xl\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .xl\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .xl\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .xl\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .xl\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .xl\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .xl\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .xl\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .xl\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .xl\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .xl\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .xl\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .xl\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .xl\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .xl\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .xl\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .xl\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .xl\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .xl\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .xl\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .xl\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .xl\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .xl\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .xl\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .xl\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .xl\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .xl\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .xl\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .xl\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .xl\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .xl\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .xl\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .xl\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .xl\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .xl\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .xl\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .xl\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .xl\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .xl\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .xl\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .xl\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .xl\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .xl\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .xl\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .xl\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .xl\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .xl\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .xl\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .xl\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .xl\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .xl\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .xl\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .xl\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .xl\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .xl\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .xl\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .xl\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .xl\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .xl\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .xl\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .xl\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .xl\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .xl\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .xl\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .xl\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .xl\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .xl\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .xl\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .xl\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .xl\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .xl\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .xl\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .xl\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .xl\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .xl\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .xl\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .xl\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .xl\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .xl\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .xl\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .xl\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .xl\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .xl\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .xl\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .xl\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .xl\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .xl\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .xl\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .xl\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .xl\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .xl\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .xl\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .xl\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .xl\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .xl\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .xl\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .xl\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .xl\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .xl\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .xl\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .xl\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .xl\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .xl\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .xl\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .xl\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .xl\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .xl\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .xl\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .xl\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .xl\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .xl\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .xl\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .xl\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .xl\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .xl\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .xl\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .xl\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .xl\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .xl\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .xl\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .xl\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .xl\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .xl\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .xl\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .xl\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .xl\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .xl\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .xl\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .xl\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .xl\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .xl\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .xl\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .xl\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .xl\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .xl\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .xl\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .xl\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .xl\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .xl\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .xl\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .xl\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .xl\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .xl\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .xl\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .xl\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .xl\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .xl\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .xl\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .xl\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .xl\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .xl\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .xl\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .xl\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .xl\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .xl\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .xl\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .xl\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .xl\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .xl\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .xl\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .xl\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .xl\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .xl\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .xl\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .xl\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .xl\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .xl\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .xl\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .xl\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .xl\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .xl\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .xl\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .xl\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .xl\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .xl\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .xl\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .xl\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .xl\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .xl\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .xl\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .xl\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .xl\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .xl\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .xl\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .xl\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .xl\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .xl\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .xl\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .xl\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .xl\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .xl\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .xl\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .xl\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .xl\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .xl\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .xl\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .xl\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .xl\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .xl\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .xl\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .xl\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .xl\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .xl\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .xl\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .xl\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .xl\:u-bg-bottom{
    background-position: bottom !important;
  }

  .xl\:u-bg-center{
    background-position: center !important;
  }

  .xl\:u-bg-left{
    background-position: left !important;
  }

  .xl\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .xl\:u-bg-left-top{
    background-position: left top !important;
  }

  .xl\:u-bg-right{
    background-position: right !important;
  }

  .xl\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .xl\:u-bg-right-top{
    background-position: right top !important;
  }

  .xl\:u-bg-top{
    background-position: top !important;
  }

  .xl\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .xl\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .xl\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .xl\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .xl\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .xl\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .xl\:u-bg-auto{
    background-size: auto !important;
  }

  .xl\:u-bg-cover{
    background-size: cover !important;
  }

  .xl\:u-bg-contain{
    background-size: contain !important;
  }

  .xl\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .xl\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .xl\:u-border-separate{
    border-collapse: separate !important;
  }

  .xl\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-transparent{
    border-color: transparent !important;
  }

  .xl\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .xl\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .xl\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .xl\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .xl\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .xl\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .xl\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .xl\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .xl\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .xl\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .xl\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .xl\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .xl\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .xl\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .xl\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .xl\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .xl\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .xl\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .xl\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .xl\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .xl\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .xl\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .xl\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .xl\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .xl\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .xl\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .xl\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .xl\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .xl\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .xl\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .xl\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .xl\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .xl\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .xl\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .xl\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .xl\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .xl\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .xl\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .xl\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .xl\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .xl\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .xl\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .xl\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .xl\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .xl\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .xl\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .xl\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .xl\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .xl\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .xl\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .xl\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .xl\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .xl\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .xl\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .xl\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .xl\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .xl\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .xl\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .xl\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .xl\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .xl\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .xl\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .xl\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .xl\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .xl\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .xl\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .xl\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .xl\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .xl\:u-rounded-none{
    border-radius: 0 !important;
  }

  .xl\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .xl\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .xl\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .xl\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .xl\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .xl\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .xl\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .xl\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .xl\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .xl\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .xl\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .xl\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .xl\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .xl\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .xl\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .xl\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .xl\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .xl\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .xl\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .xl\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .xl\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .xl\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .xl\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .xl\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .xl\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .xl\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .xl\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .xl\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .xl\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .xl\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .xl\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .xl\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .xl\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .xl\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .xl\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .xl\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .xl\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .xl\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .xl\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .xl\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .xl\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .xl\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .xl\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .xl\:u-border-solid{
    border-style: solid !important;
  }

  .xl\:u-border-dashed{
    border-style: dashed !important;
  }

  .xl\:u-border-dotted{
    border-style: dotted !important;
  }

  .xl\:u-border-double{
    border-style: double !important;
  }

  .xl\:u-border-none{
    border-style: none !important;
  }

  .xl\:u-border-0{
    border-width: 0px !important;
  }

  .xl\:u-border-2{
    border-width: 2px !important;
  }

  .xl\:u-border-4{
    border-width: 4px !important;
  }

  .xl\:u-border-8{
    border-width: 8px !important;
  }

  .xl\:u-border{
    border-width: 1px !important;
  }

  .xl\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .xl\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .xl\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .xl\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .xl\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .xl\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .xl\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .xl\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .xl\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .xl\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .xl\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .xl\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .xl\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .xl\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .xl\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .xl\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .xl\:u-border-t{
    border-top-width: 1px !important;
  }

  .xl\:u-border-r{
    border-right-width: 1px !important;
  }

  .xl\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .xl\:u-border-l{
    border-left-width: 1px !important;
  }

  .xl\:u-box-border{
    box-sizing: border-box !important;
  }

  .xl\:u-box-content{
    box-sizing: content-box !important;
  }

  .xl\:u-cursor-auto{
    cursor: auto !important;
  }

  .xl\:u-cursor-default{
    cursor: default !important;
  }

  .xl\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .xl\:u-cursor-wait{
    cursor: wait !important;
  }

  .xl\:u-cursor-text{
    cursor: text !important;
  }

  .xl\:u-cursor-move{
    cursor: move !important;
  }

  .xl\:u-cursor-help{
    cursor: help !important;
  }

  .xl\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .xl\:u-block{
    display: block !important;
  }

  .xl\:u-inline-block{
    display: inline-block !important;
  }

  .xl\:u-inline{
    display: inline !important;
  }

  .xl\:u-flex{
    display: flex !important;
  }

  .xl\:u-inline-flex{
    display: inline-flex !important;
  }

  .xl\:u-table{
    display: table !important;
  }

  .xl\:u-table-caption{
    display: table-caption !important;
  }

  .xl\:u-table-cell{
    display: table-cell !important;
  }

  .xl\:u-table-column{
    display: table-column !important;
  }

  .xl\:u-table-column-group{
    display: table-column-group !important;
  }

  .xl\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .xl\:u-table-header-group{
    display: table-header-group !important;
  }

  .xl\:u-table-row-group{
    display: table-row-group !important;
  }

  .xl\:u-table-row{
    display: table-row !important;
  }

  .xl\:u-flow-root{
    display: flow-root !important;
  }

  .xl\:u-grid{
    display: grid !important;
  }

  .xl\:u-inline-grid{
    display: inline-grid !important;
  }

  .xl\:u-contents{
    display: contents !important;
  }

  .xl\:u-hidden{
    display: none !important;
  }

  .xl\:u-flex-row{
    flex-direction: row !important;
  }

  .xl\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .xl\:u-flex-col{
    flex-direction: column !important;
  }

  .xl\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .xl\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .xl\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .xl\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .xl\:u-place-items-auto{
    place-items: auto !important;
  }

  .xl\:u-place-items-start{
    place-items: start !important;
  }

  .xl\:u-place-items-end{
    place-items: end !important;
  }

  .xl\:u-place-items-center{
    place-items: center !important;
  }

  .xl\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .xl\:u-place-content-center{
    place-content: center !important;
  }

  .xl\:u-place-content-start{
    place-content: start !important;
  }

  .xl\:u-place-content-end{
    place-content: end !important;
  }

  .xl\:u-place-content-between{
    place-content: space-between !important;
  }

  .xl\:u-place-content-around{
    place-content: space-around !important;
  }

  .xl\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .xl\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .xl\:u-place-self-auto{
    place-self: auto !important;
  }

  .xl\:u-place-self-start{
    place-self: start !important;
  }

  .xl\:u-place-self-end{
    place-self: end !important;
  }

  .xl\:u-place-self-center{
    place-self: center !important;
  }

  .xl\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .xl\:u-items-start{
    align-items: flex-start !important;
  }

  .xl\:u-items-end{
    align-items: flex-end !important;
  }

  .xl\:u-items-center{
    align-items: center !important;
  }

  .xl\:u-items-baseline{
    align-items: baseline !important;
  }

  .xl\:u-items-stretch{
    align-items: stretch !important;
  }

  .xl\:u-content-center{
    align-content: center !important;
  }

  .xl\:u-content-start{
    align-content: flex-start !important;
  }

  .xl\:u-content-end{
    align-content: flex-end !important;
  }

  .xl\:u-content-between{
    align-content: space-between !important;
  }

  .xl\:u-content-around{
    align-content: space-around !important;
  }

  .xl\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .xl\:u-self-auto{
    align-self: auto !important;
  }

  .xl\:u-self-start{
    align-self: flex-start !important;
  }

  .xl\:u-self-end{
    align-self: flex-end !important;
  }

  .xl\:u-self-center{
    align-self: center !important;
  }

  .xl\:u-self-stretch{
    align-self: stretch !important;
  }

  .xl\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .xl\:u-justify-items-start{
    justify-items: start !important;
  }

  .xl\:u-justify-items-end{
    justify-items: end !important;
  }

  .xl\:u-justify-items-center{
    justify-items: center !important;
  }

  .xl\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .xl\:u-justify-start{
    justify-content: flex-start !important;
  }

  .xl\:u-justify-end{
    justify-content: flex-end !important;
  }

  .xl\:u-justify-center{
    justify-content: center !important;
  }

  .xl\:u-justify-between{
    justify-content: space-between !important;
  }

  .xl\:u-justify-around{
    justify-content: space-around !important;
  }

  .xl\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .xl\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .xl\:u-justify-self-start{
    justify-self: start !important;
  }

  .xl\:u-justify-self-end{
    justify-self: end !important;
  }

  .xl\:u-justify-self-center{
    justify-self: center !important;
  }

  .xl\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .xl\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .xl\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .xl\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .xl\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .xl\:u-flex-none{
    flex: none !important;
  }

  .xl\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .xl\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .xl\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .xl\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .xl\:u-order-1{
    order: 1 !important;
  }

  .xl\:u-order-2{
    order: 2 !important;
  }

  .xl\:u-order-3{
    order: 3 !important;
  }

  .xl\:u-order-4{
    order: 4 !important;
  }

  .xl\:u-order-5{
    order: 5 !important;
  }

  .xl\:u-order-6{
    order: 6 !important;
  }

  .xl\:u-order-7{
    order: 7 !important;
  }

  .xl\:u-order-8{
    order: 8 !important;
  }

  .xl\:u-order-9{
    order: 9 !important;
  }

  .xl\:u-order-10{
    order: 10 !important;
  }

  .xl\:u-order-11{
    order: 11 !important;
  }

  .xl\:u-order-12{
    order: 12 !important;
  }

  .xl\:u-order-first{
    order: -9999 !important;
  }

  .xl\:u-order-last{
    order: 9999 !important;
  }

  .xl\:u-order-none{
    order: 0 !important;
  }

  .xl\:u-float-right{
    float: right !important;
  }

  .xl\:u-float-left{
    float: left !important;
  }

  .xl\:u-float-none{
    float: none !important;
  }

  .xl\:u-clear-left{
    clear: left !important;
  }

  .xl\:u-clear-right{
    clear: right !important;
  }

  .xl\:u-clear-both{
    clear: both !important;
  }

  .xl\:u-clear-none{
    clear: none !important;
  }

  .xl\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .xl\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .xl\:u-font-thin{
    font-weight: 100 !important;
  }

  .xl\:u-font-extralight{
    font-weight: 200 !important;
  }

  .xl\:u-font-light{
    font-weight: 300 !important;
  }

  .xl\:u-font-normal{
    font-weight: 400 !important;
  }

  .xl\:u-font-medium{
    font-weight: 500 !important;
  }

  .xl\:u-font-semibold{
    font-weight: 600 !important;
  }

  .xl\:u-font-bold{
    font-weight: 700 !important;
  }

  .xl\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .xl\:u-font-black{
    font-weight: 900 !important;
  }

  .xl\:u-h-0{
    height: 0px !important;
  }

  .xl\:u-h-1{
    height: 0.25rem !important;
  }

  .xl\:u-h-2{
    height: 0.5rem !important;
  }

  .xl\:u-h-3{
    height: 0.75rem !important;
  }

  .xl\:u-h-4{
    height: 1rem !important;
  }

  .xl\:u-h-5{
    height: 1.25rem !important;
  }

  .xl\:u-h-6{
    height: 1.5rem !important;
  }

  .xl\:u-h-7{
    height: 1.75rem !important;
  }

  .xl\:u-h-8{
    height: 2rem !important;
  }

  .xl\:u-h-9{
    height: 2.25rem !important;
  }

  .xl\:u-h-10{
    height: 2.5rem !important;
  }

  .xl\:u-h-11{
    height: 2.75rem !important;
  }

  .xl\:u-h-12{
    height: 3rem !important;
  }

  .xl\:u-h-14{
    height: 3.5rem !important;
  }

  .xl\:u-h-16{
    height: 4rem !important;
  }

  .xl\:u-h-20{
    height: 5rem !important;
  }

  .xl\:u-h-24{
    height: 6rem !important;
  }

  .xl\:u-h-28{
    height: 7rem !important;
  }

  .xl\:u-h-32{
    height: 8rem !important;
  }

  .xl\:u-h-36{
    height: 9rem !important;
  }

  .xl\:u-h-40{
    height: 10rem !important;
  }

  .xl\:u-h-44{
    height: 11rem !important;
  }

  .xl\:u-h-48{
    height: 12rem !important;
  }

  .xl\:u-h-52{
    height: 13rem !important;
  }

  .xl\:u-h-56{
    height: 14rem !important;
  }

  .xl\:u-h-60{
    height: 15rem !important;
  }

  .xl\:u-h-64{
    height: 16rem !important;
  }

  .xl\:u-h-72{
    height: 18rem !important;
  }

  .xl\:u-h-80{
    height: 20rem !important;
  }

  .xl\:u-h-96{
    height: 24rem !important;
  }

  .xl\:u-h-auto{
    height: auto !important;
  }

  .xl\:u-h-px{
    height: 1px !important;
  }

  .xl\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .xl\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .xl\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .xl\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .xl\:u-h-1\/2{
    height: 50% !important;
  }

  .xl\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .xl\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .xl\:u-h-1\/4{
    height: 25% !important;
  }

  .xl\:u-h-2\/4{
    height: 50% !important;
  }

  .xl\:u-h-3\/4{
    height: 75% !important;
  }

  .xl\:u-h-1\/5{
    height: 20% !important;
  }

  .xl\:u-h-2\/5{
    height: 40% !important;
  }

  .xl\:u-h-3\/5{
    height: 60% !important;
  }

  .xl\:u-h-4\/5{
    height: 80% !important;
  }

  .xl\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .xl\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .xl\:u-h-3\/6{
    height: 50% !important;
  }

  .xl\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .xl\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .xl\:u-h-full{
    height: 100% !important;
  }

  .xl\:u-h-screen{
    height: 100vh !important;
  }

  .xl\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .xl\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .xl\:u-text-base{
    font-size: 1rem !important;
  }

  .xl\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .xl\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .xl\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .xl\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .xl\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .xl\:u-text-5xl{
    font-size: 3rem !important;
  }

  .xl\:u-text-6xl{
    font-size: 4rem !important;
  }

  .xl\:u-text-7xl{
    font-size: 5rem !important;
  }

  .xl\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .xl\:u-leading-3{
    line-height: .75rem !important;
  }

  .xl\:u-leading-4{
    line-height: 1rem !important;
  }

  .xl\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .xl\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .xl\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .xl\:u-leading-8{
    line-height: 2rem !important;
  }

  .xl\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .xl\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .xl\:u-leading-none{
    line-height: 1 !important;
  }

  .xl\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .xl\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .xl\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .xl\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .xl\:u-leading-loose{
    line-height: 2 !important;
  }

  .xl\:u-list-inside{
    list-style-position: inside !important;
  }

  .xl\:u-list-outside{
    list-style-position: outside !important;
  }

  .xl\:u-list-none{
    list-style-type: none !important;
  }

  .xl\:u-list-disc{
    list-style-type: disc !important;
  }

  .xl\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .xl\:u-m-0{
    margin: 0px !important;
  }

  .xl\:u-m-1{
    margin: 0.25rem !important;
  }

  .xl\:u-m-2{
    margin: 0.5rem !important;
  }

  .xl\:u-m-3{
    margin: 0.75rem !important;
  }

  .xl\:u-m-4{
    margin: 1rem !important;
  }

  .xl\:u-m-5{
    margin: 1.25rem !important;
  }

  .xl\:u-m-6{
    margin: 1.5rem !important;
  }

  .xl\:u-m-7{
    margin: 1.75rem !important;
  }

  .xl\:u-m-8{
    margin: 2rem !important;
  }

  .xl\:u-m-9{
    margin: 2.25rem !important;
  }

  .xl\:u-m-10{
    margin: 2.5rem !important;
  }

  .xl\:u-m-11{
    margin: 2.75rem !important;
  }

  .xl\:u-m-12{
    margin: 3rem !important;
  }

  .xl\:u-m-14{
    margin: 3.5rem !important;
  }

  .xl\:u-m-16{
    margin: 4rem !important;
  }

  .xl\:u-m-20{
    margin: 5rem !important;
  }

  .xl\:u-m-24{
    margin: 6rem !important;
  }

  .xl\:u-m-28{
    margin: 7rem !important;
  }

  .xl\:u-m-32{
    margin: 8rem !important;
  }

  .xl\:u-m-36{
    margin: 9rem !important;
  }

  .xl\:u-m-40{
    margin: 10rem !important;
  }

  .xl\:u-m-44{
    margin: 11rem !important;
  }

  .xl\:u-m-48{
    margin: 12rem !important;
  }

  .xl\:u-m-52{
    margin: 13rem !important;
  }

  .xl\:u-m-56{
    margin: 14rem !important;
  }

  .xl\:u-m-60{
    margin: 15rem !important;
  }

  .xl\:u-m-64{
    margin: 16rem !important;
  }

  .xl\:u-m-72{
    margin: 18rem !important;
  }

  .xl\:u-m-80{
    margin: 20rem !important;
  }

  .xl\:u-m-96{
    margin: 24rem !important;
  }

  .xl\:u-m-auto{
    margin: auto !important;
  }

  .xl\:u-m-px{
    margin: 1px !important;
  }

  .xl\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .xl\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .xl\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .xl\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .xl\:u--m-0{
    margin: 0px !important;
  }

  .xl\:u--m-1{
    margin: -0.25rem !important;
  }

  .xl\:u--m-2{
    margin: -0.5rem !important;
  }

  .xl\:u--m-3{
    margin: -0.75rem !important;
  }

  .xl\:u--m-4{
    margin: -1rem !important;
  }

  .xl\:u--m-5{
    margin: -1.25rem !important;
  }

  .xl\:u--m-6{
    margin: -1.5rem !important;
  }

  .xl\:u--m-7{
    margin: -1.75rem !important;
  }

  .xl\:u--m-8{
    margin: -2rem !important;
  }

  .xl\:u--m-9{
    margin: -2.25rem !important;
  }

  .xl\:u--m-10{
    margin: -2.5rem !important;
  }

  .xl\:u--m-11{
    margin: -2.75rem !important;
  }

  .xl\:u--m-12{
    margin: -3rem !important;
  }

  .xl\:u--m-14{
    margin: -3.5rem !important;
  }

  .xl\:u--m-16{
    margin: -4rem !important;
  }

  .xl\:u--m-20{
    margin: -5rem !important;
  }

  .xl\:u--m-24{
    margin: -6rem !important;
  }

  .xl\:u--m-28{
    margin: -7rem !important;
  }

  .xl\:u--m-32{
    margin: -8rem !important;
  }

  .xl\:u--m-36{
    margin: -9rem !important;
  }

  .xl\:u--m-40{
    margin: -10rem !important;
  }

  .xl\:u--m-44{
    margin: -11rem !important;
  }

  .xl\:u--m-48{
    margin: -12rem !important;
  }

  .xl\:u--m-52{
    margin: -13rem !important;
  }

  .xl\:u--m-56{
    margin: -14rem !important;
  }

  .xl\:u--m-60{
    margin: -15rem !important;
  }

  .xl\:u--m-64{
    margin: -16rem !important;
  }

  .xl\:u--m-72{
    margin: -18rem !important;
  }

  .xl\:u--m-80{
    margin: -20rem !important;
  }

  .xl\:u--m-96{
    margin: -24rem !important;
  }

  .xl\:u--m-px{
    margin: -1px !important;
  }

  .xl\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .xl\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .xl\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .xl\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .xl\:u-m-full{
    margin: 100% !important;
  }

  .xl\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .xl\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .xl\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .xl\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .xl\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .xl\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .xl\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .xl\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .xl\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .xl\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .xl\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .xl\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .xl\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .xl\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .xl\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .xl\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .xl\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .xl\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .xl\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .xl\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .xl\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .xl\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .xl\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .xl\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .xl\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .xl\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .xl\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .xl\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .xl\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .xl\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .xl\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .xl\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .xl\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .xl\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .xl\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .xl\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .xl\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .xl\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .xl\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .xl\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .xl\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .xl\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .xl\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .xl\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .xl\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .xl\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .xl\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .xl\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .xl\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .xl\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .xl\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .xl\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .xl\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .xl\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .xl\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .xl\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .xl\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .xl\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .xl\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .xl\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .xl\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .xl\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .xl\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .xl\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .xl\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .xl\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .xl\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .xl\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .xl\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .xl\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .xl\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .xl\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .xl\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .xl\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .xl\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .xl\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .xl\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .xl\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .xl\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .xl\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .xl\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .xl\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .xl\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .xl\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .xl\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .xl\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .xl\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .xl\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .xl\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .xl\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .xl\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .xl\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .xl\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .xl\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .xl\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .xl\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .xl\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .xl\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .xl\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .xl\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .xl\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .xl\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .xl\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .xl\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .xl\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .xl\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .xl\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .xl\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .xl\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .xl\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .xl\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .xl\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .xl\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .xl\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .xl\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .xl\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .xl\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .xl\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .xl\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .xl\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .xl\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .xl\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .xl\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .xl\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .xl\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .xl\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .xl\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .xl\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .xl\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .xl\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .xl\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .xl\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .xl\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .xl\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .xl\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .xl\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .xl\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .xl\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .xl\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .xl\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .xl\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .xl\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .xl\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .xl\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .xl\:u-mt-0{
    margin-top: 0px !important;
  }

  .xl\:u-mr-0{
    margin-right: 0px !important;
  }

  .xl\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .xl\:u-ml-0{
    margin-left: 0px !important;
  }

  .xl\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .xl\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .xl\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .xl\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .xl\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .xl\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .xl\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .xl\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .xl\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .xl\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .xl\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .xl\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .xl\:u-mt-4{
    margin-top: 1rem !important;
  }

  .xl\:u-mr-4{
    margin-right: 1rem !important;
  }

  .xl\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .xl\:u-ml-4{
    margin-left: 1rem !important;
  }

  .xl\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .xl\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .xl\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .xl\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .xl\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .xl\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .xl\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .xl\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .xl\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .xl\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .xl\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .xl\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .xl\:u-mt-8{
    margin-top: 2rem !important;
  }

  .xl\:u-mr-8{
    margin-right: 2rem !important;
  }

  .xl\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .xl\:u-ml-8{
    margin-left: 2rem !important;
  }

  .xl\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .xl\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .xl\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .xl\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .xl\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .xl\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .xl\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .xl\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .xl\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .xl\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .xl\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .xl\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .xl\:u-mt-12{
    margin-top: 3rem !important;
  }

  .xl\:u-mr-12{
    margin-right: 3rem !important;
  }

  .xl\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .xl\:u-ml-12{
    margin-left: 3rem !important;
  }

  .xl\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .xl\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .xl\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .xl\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .xl\:u-mt-16{
    margin-top: 4rem !important;
  }

  .xl\:u-mr-16{
    margin-right: 4rem !important;
  }

  .xl\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .xl\:u-ml-16{
    margin-left: 4rem !important;
  }

  .xl\:u-mt-20{
    margin-top: 5rem !important;
  }

  .xl\:u-mr-20{
    margin-right: 5rem !important;
  }

  .xl\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .xl\:u-ml-20{
    margin-left: 5rem !important;
  }

  .xl\:u-mt-24{
    margin-top: 6rem !important;
  }

  .xl\:u-mr-24{
    margin-right: 6rem !important;
  }

  .xl\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .xl\:u-ml-24{
    margin-left: 6rem !important;
  }

  .xl\:u-mt-28{
    margin-top: 7rem !important;
  }

  .xl\:u-mr-28{
    margin-right: 7rem !important;
  }

  .xl\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .xl\:u-ml-28{
    margin-left: 7rem !important;
  }

  .xl\:u-mt-32{
    margin-top: 8rem !important;
  }

  .xl\:u-mr-32{
    margin-right: 8rem !important;
  }

  .xl\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .xl\:u-ml-32{
    margin-left: 8rem !important;
  }

  .xl\:u-mt-36{
    margin-top: 9rem !important;
  }

  .xl\:u-mr-36{
    margin-right: 9rem !important;
  }

  .xl\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .xl\:u-ml-36{
    margin-left: 9rem !important;
  }

  .xl\:u-mt-40{
    margin-top: 10rem !important;
  }

  .xl\:u-mr-40{
    margin-right: 10rem !important;
  }

  .xl\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .xl\:u-ml-40{
    margin-left: 10rem !important;
  }

  .xl\:u-mt-44{
    margin-top: 11rem !important;
  }

  .xl\:u-mr-44{
    margin-right: 11rem !important;
  }

  .xl\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .xl\:u-ml-44{
    margin-left: 11rem !important;
  }

  .xl\:u-mt-48{
    margin-top: 12rem !important;
  }

  .xl\:u-mr-48{
    margin-right: 12rem !important;
  }

  .xl\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .xl\:u-ml-48{
    margin-left: 12rem !important;
  }

  .xl\:u-mt-52{
    margin-top: 13rem !important;
  }

  .xl\:u-mr-52{
    margin-right: 13rem !important;
  }

  .xl\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .xl\:u-ml-52{
    margin-left: 13rem !important;
  }

  .xl\:u-mt-56{
    margin-top: 14rem !important;
  }

  .xl\:u-mr-56{
    margin-right: 14rem !important;
  }

  .xl\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .xl\:u-ml-56{
    margin-left: 14rem !important;
  }

  .xl\:u-mt-60{
    margin-top: 15rem !important;
  }

  .xl\:u-mr-60{
    margin-right: 15rem !important;
  }

  .xl\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .xl\:u-ml-60{
    margin-left: 15rem !important;
  }

  .xl\:u-mt-64{
    margin-top: 16rem !important;
  }

  .xl\:u-mr-64{
    margin-right: 16rem !important;
  }

  .xl\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .xl\:u-ml-64{
    margin-left: 16rem !important;
  }

  .xl\:u-mt-72{
    margin-top: 18rem !important;
  }

  .xl\:u-mr-72{
    margin-right: 18rem !important;
  }

  .xl\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .xl\:u-ml-72{
    margin-left: 18rem !important;
  }

  .xl\:u-mt-80{
    margin-top: 20rem !important;
  }

  .xl\:u-mr-80{
    margin-right: 20rem !important;
  }

  .xl\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .xl\:u-ml-80{
    margin-left: 20rem !important;
  }

  .xl\:u-mt-96{
    margin-top: 24rem !important;
  }

  .xl\:u-mr-96{
    margin-right: 24rem !important;
  }

  .xl\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .xl\:u-ml-96{
    margin-left: 24rem !important;
  }

  .xl\:u-mt-auto{
    margin-top: auto !important;
  }

  .xl\:u-mr-auto{
    margin-right: auto !important;
  }

  .xl\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .xl\:u-ml-auto{
    margin-left: auto !important;
  }

  .xl\:u-mt-px{
    margin-top: 1px !important;
  }

  .xl\:u-mr-px{
    margin-right: 1px !important;
  }

  .xl\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .xl\:u-ml-px{
    margin-left: 1px !important;
  }

  .xl\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .xl\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .xl\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .xl\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .xl\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .xl\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .xl\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .xl\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .xl\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .xl\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .xl\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .xl\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .xl\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .xl\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .xl\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .xl\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .xl\:u--mt-0{
    margin-top: 0px !important;
  }

  .xl\:u--mr-0{
    margin-right: 0px !important;
  }

  .xl\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .xl\:u--ml-0{
    margin-left: 0px !important;
  }

  .xl\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .xl\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .xl\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .xl\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .xl\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .xl\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .xl\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .xl\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .xl\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .xl\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .xl\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .xl\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .xl\:u--mt-4{
    margin-top: -1rem !important;
  }

  .xl\:u--mr-4{
    margin-right: -1rem !important;
  }

  .xl\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .xl\:u--ml-4{
    margin-left: -1rem !important;
  }

  .xl\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .xl\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .xl\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .xl\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .xl\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .xl\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .xl\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .xl\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .xl\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .xl\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .xl\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .xl\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .xl\:u--mt-8{
    margin-top: -2rem !important;
  }

  .xl\:u--mr-8{
    margin-right: -2rem !important;
  }

  .xl\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .xl\:u--ml-8{
    margin-left: -2rem !important;
  }

  .xl\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .xl\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .xl\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .xl\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .xl\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .xl\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .xl\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .xl\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .xl\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .xl\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .xl\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .xl\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .xl\:u--mt-12{
    margin-top: -3rem !important;
  }

  .xl\:u--mr-12{
    margin-right: -3rem !important;
  }

  .xl\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .xl\:u--ml-12{
    margin-left: -3rem !important;
  }

  .xl\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .xl\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .xl\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .xl\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .xl\:u--mt-16{
    margin-top: -4rem !important;
  }

  .xl\:u--mr-16{
    margin-right: -4rem !important;
  }

  .xl\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .xl\:u--ml-16{
    margin-left: -4rem !important;
  }

  .xl\:u--mt-20{
    margin-top: -5rem !important;
  }

  .xl\:u--mr-20{
    margin-right: -5rem !important;
  }

  .xl\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .xl\:u--ml-20{
    margin-left: -5rem !important;
  }

  .xl\:u--mt-24{
    margin-top: -6rem !important;
  }

  .xl\:u--mr-24{
    margin-right: -6rem !important;
  }

  .xl\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .xl\:u--ml-24{
    margin-left: -6rem !important;
  }

  .xl\:u--mt-28{
    margin-top: -7rem !important;
  }

  .xl\:u--mr-28{
    margin-right: -7rem !important;
  }

  .xl\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .xl\:u--ml-28{
    margin-left: -7rem !important;
  }

  .xl\:u--mt-32{
    margin-top: -8rem !important;
  }

  .xl\:u--mr-32{
    margin-right: -8rem !important;
  }

  .xl\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .xl\:u--ml-32{
    margin-left: -8rem !important;
  }

  .xl\:u--mt-36{
    margin-top: -9rem !important;
  }

  .xl\:u--mr-36{
    margin-right: -9rem !important;
  }

  .xl\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .xl\:u--ml-36{
    margin-left: -9rem !important;
  }

  .xl\:u--mt-40{
    margin-top: -10rem !important;
  }

  .xl\:u--mr-40{
    margin-right: -10rem !important;
  }

  .xl\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .xl\:u--ml-40{
    margin-left: -10rem !important;
  }

  .xl\:u--mt-44{
    margin-top: -11rem !important;
  }

  .xl\:u--mr-44{
    margin-right: -11rem !important;
  }

  .xl\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .xl\:u--ml-44{
    margin-left: -11rem !important;
  }

  .xl\:u--mt-48{
    margin-top: -12rem !important;
  }

  .xl\:u--mr-48{
    margin-right: -12rem !important;
  }

  .xl\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .xl\:u--ml-48{
    margin-left: -12rem !important;
  }

  .xl\:u--mt-52{
    margin-top: -13rem !important;
  }

  .xl\:u--mr-52{
    margin-right: -13rem !important;
  }

  .xl\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .xl\:u--ml-52{
    margin-left: -13rem !important;
  }

  .xl\:u--mt-56{
    margin-top: -14rem !important;
  }

  .xl\:u--mr-56{
    margin-right: -14rem !important;
  }

  .xl\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .xl\:u--ml-56{
    margin-left: -14rem !important;
  }

  .xl\:u--mt-60{
    margin-top: -15rem !important;
  }

  .xl\:u--mr-60{
    margin-right: -15rem !important;
  }

  .xl\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .xl\:u--ml-60{
    margin-left: -15rem !important;
  }

  .xl\:u--mt-64{
    margin-top: -16rem !important;
  }

  .xl\:u--mr-64{
    margin-right: -16rem !important;
  }

  .xl\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .xl\:u--ml-64{
    margin-left: -16rem !important;
  }

  .xl\:u--mt-72{
    margin-top: -18rem !important;
  }

  .xl\:u--mr-72{
    margin-right: -18rem !important;
  }

  .xl\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .xl\:u--ml-72{
    margin-left: -18rem !important;
  }

  .xl\:u--mt-80{
    margin-top: -20rem !important;
  }

  .xl\:u--mr-80{
    margin-right: -20rem !important;
  }

  .xl\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .xl\:u--ml-80{
    margin-left: -20rem !important;
  }

  .xl\:u--mt-96{
    margin-top: -24rem !important;
  }

  .xl\:u--mr-96{
    margin-right: -24rem !important;
  }

  .xl\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .xl\:u--ml-96{
    margin-left: -24rem !important;
  }

  .xl\:u--mt-px{
    margin-top: -1px !important;
  }

  .xl\:u--mr-px{
    margin-right: -1px !important;
  }

  .xl\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .xl\:u--ml-px{
    margin-left: -1px !important;
  }

  .xl\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .xl\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .xl\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .xl\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .xl\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .xl\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .xl\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .xl\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .xl\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .xl\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .xl\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .xl\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .xl\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .xl\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .xl\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .xl\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .xl\:u-mt-full{
    margin-top: 100% !important;
  }

  .xl\:u-mr-full{
    margin-right: 100% !important;
  }

  .xl\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .xl\:u-ml-full{
    margin-left: 100% !important;
  }

  .xl\:u-max-h-0{
    max-height: 0px !important;
  }

  .xl\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .xl\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .xl\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .xl\:u-max-h-4{
    max-height: 1rem !important;
  }

  .xl\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .xl\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .xl\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .xl\:u-max-h-8{
    max-height: 2rem !important;
  }

  .xl\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .xl\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .xl\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .xl\:u-max-h-12{
    max-height: 3rem !important;
  }

  .xl\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .xl\:u-max-h-16{
    max-height: 4rem !important;
  }

  .xl\:u-max-h-20{
    max-height: 5rem !important;
  }

  .xl\:u-max-h-24{
    max-height: 6rem !important;
  }

  .xl\:u-max-h-28{
    max-height: 7rem !important;
  }

  .xl\:u-max-h-32{
    max-height: 8rem !important;
  }

  .xl\:u-max-h-36{
    max-height: 9rem !important;
  }

  .xl\:u-max-h-40{
    max-height: 10rem !important;
  }

  .xl\:u-max-h-44{
    max-height: 11rem !important;
  }

  .xl\:u-max-h-48{
    max-height: 12rem !important;
  }

  .xl\:u-max-h-52{
    max-height: 13rem !important;
  }

  .xl\:u-max-h-56{
    max-height: 14rem !important;
  }

  .xl\:u-max-h-60{
    max-height: 15rem !important;
  }

  .xl\:u-max-h-64{
    max-height: 16rem !important;
  }

  .xl\:u-max-h-72{
    max-height: 18rem !important;
  }

  .xl\:u-max-h-80{
    max-height: 20rem !important;
  }

  .xl\:u-max-h-96{
    max-height: 24rem !important;
  }

  .xl\:u-max-h-px{
    max-height: 1px !important;
  }

  .xl\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .xl\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .xl\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .xl\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .xl\:u-max-h-full{
    max-height: 100% !important;
  }

  .xl\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .xl\:u-max-w-none{
    max-width: none !important;
  }

  .xl\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .xl\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .xl\:u-max-w-md{
    max-width: 24rem !important;
  }

  .xl\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .xl\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .xl\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .xl\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .xl\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .xl\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .xl\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .xl\:u-max-w-full{
    max-width: 100% !important;
  }

  .xl\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .xl\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .xl\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .xl\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .xl\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .xl\:u-min-h-none{
    min-height: none !important;
  }

  .xl\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .xl\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .xl\:u-min-h-md{
    min-height: 24rem !important;
  }

  .xl\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .xl\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .xl\:u-min-w-sm{
    min-width: 320px !important;
  }

  .xl\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .xl\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .xl\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .xl\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .xl\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .xl\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .xl\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .xl\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .xl\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .xl\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .xl\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .xl\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .xl\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .xl\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .xl\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .xl\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .xl\:u-opacity-0{
    opacity: 0 !important;
  }

  .xl\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .xl\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .xl\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .xl\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .xl\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .xl\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .xl\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .xl\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .xl\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .xl\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .xl\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .xl\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .xl\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .xl\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .xl\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .xl\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .xl\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .xl\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .xl\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .xl\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .xl\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .xl\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .xl\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .xl\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .xl\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .xl\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .xl\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .xl\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .xl\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .xl\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .xl\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .xl\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .xl\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .xl\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .xl\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .xl\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .xl\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .xl\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .xl\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .xl\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .xl\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .xl\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .xl\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .xl\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .xl\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .xl\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .xl\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .xl\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .xl\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .xl\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .xl\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .xl\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .xl\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .xl\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .xl\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .xl\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .xl\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .xl\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .xl\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .xl\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .xl\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .xl\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .xl\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .xl\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .xl\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .xl\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .xl\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .xl\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .xl\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .xl\:u-overflow-auto{
    overflow: auto !important;
  }

  .xl\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .xl\:u-overflow-visible{
    overflow: visible !important;
  }

  .xl\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .xl\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .xl\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .xl\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .xl\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .xl\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .xl\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .xl\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .xl\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .xl\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .xl\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .xl\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .xl\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .xl\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .xl\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .xl\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .xl\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .xl\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .xl\:u-p-0{
    padding: 0px !important;
  }

  .xl\:u-p-1{
    padding: 0.25rem !important;
  }

  .xl\:u-p-2{
    padding: 0.5rem !important;
  }

  .xl\:u-p-3{
    padding: 0.75rem !important;
  }

  .xl\:u-p-4{
    padding: 1rem !important;
  }

  .xl\:u-p-5{
    padding: 1.25rem !important;
  }

  .xl\:u-p-6{
    padding: 1.5rem !important;
  }

  .xl\:u-p-7{
    padding: 1.75rem !important;
  }

  .xl\:u-p-8{
    padding: 2rem !important;
  }

  .xl\:u-p-9{
    padding: 2.25rem !important;
  }

  .xl\:u-p-10{
    padding: 2.5rem !important;
  }

  .xl\:u-p-11{
    padding: 2.75rem !important;
  }

  .xl\:u-p-12{
    padding: 3rem !important;
  }

  .xl\:u-p-14{
    padding: 3.5rem !important;
  }

  .xl\:u-p-16{
    padding: 4rem !important;
  }

  .xl\:u-p-20{
    padding: 5rem !important;
  }

  .xl\:u-p-24{
    padding: 6rem !important;
  }

  .xl\:u-p-28{
    padding: 7rem !important;
  }

  .xl\:u-p-32{
    padding: 8rem !important;
  }

  .xl\:u-p-36{
    padding: 9rem !important;
  }

  .xl\:u-p-40{
    padding: 10rem !important;
  }

  .xl\:u-p-44{
    padding: 11rem !important;
  }

  .xl\:u-p-48{
    padding: 12rem !important;
  }

  .xl\:u-p-52{
    padding: 13rem !important;
  }

  .xl\:u-p-56{
    padding: 14rem !important;
  }

  .xl\:u-p-60{
    padding: 15rem !important;
  }

  .xl\:u-p-64{
    padding: 16rem !important;
  }

  .xl\:u-p-72{
    padding: 18rem !important;
  }

  .xl\:u-p-80{
    padding: 20rem !important;
  }

  .xl\:u-p-96{
    padding: 24rem !important;
  }

  .xl\:u-p-px{
    padding: 1px !important;
  }

  .xl\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .xl\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .xl\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .xl\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .xl\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .xl\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .xl\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .xl\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .xl\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .xl\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .xl\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .xl\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .xl\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .xl\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .xl\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .xl\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .xl\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .xl\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .xl\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .xl\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .xl\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .xl\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .xl\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .xl\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .xl\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .xl\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .xl\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .xl\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .xl\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .xl\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .xl\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .xl\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .xl\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .xl\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .xl\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .xl\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .xl\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .xl\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .xl\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .xl\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .xl\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .xl\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .xl\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .xl\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .xl\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .xl\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .xl\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .xl\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .xl\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .xl\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .xl\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .xl\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .xl\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .xl\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .xl\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .xl\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .xl\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .xl\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .xl\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .xl\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .xl\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .xl\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .xl\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .xl\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .xl\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .xl\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .xl\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .xl\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .xl\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .xl\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .xl\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .xl\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .xl\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .xl\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .xl\:u-pt-0{
    padding-top: 0px !important;
  }

  .xl\:u-pr-0{
    padding-right: 0px !important;
  }

  .xl\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .xl\:u-pl-0{
    padding-left: 0px !important;
  }

  .xl\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .xl\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .xl\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .xl\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .xl\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .xl\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .xl\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .xl\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .xl\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .xl\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .xl\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .xl\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .xl\:u-pt-4{
    padding-top: 1rem !important;
  }

  .xl\:u-pr-4{
    padding-right: 1rem !important;
  }

  .xl\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .xl\:u-pl-4{
    padding-left: 1rem !important;
  }

  .xl\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .xl\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .xl\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .xl\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .xl\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .xl\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .xl\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .xl\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .xl\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .xl\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .xl\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .xl\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .xl\:u-pt-8{
    padding-top: 2rem !important;
  }

  .xl\:u-pr-8{
    padding-right: 2rem !important;
  }

  .xl\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .xl\:u-pl-8{
    padding-left: 2rem !important;
  }

  .xl\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .xl\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .xl\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .xl\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .xl\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .xl\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .xl\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .xl\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .xl\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .xl\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .xl\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .xl\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .xl\:u-pt-12{
    padding-top: 3rem !important;
  }

  .xl\:u-pr-12{
    padding-right: 3rem !important;
  }

  .xl\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .xl\:u-pl-12{
    padding-left: 3rem !important;
  }

  .xl\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .xl\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .xl\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .xl\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .xl\:u-pt-16{
    padding-top: 4rem !important;
  }

  .xl\:u-pr-16{
    padding-right: 4rem !important;
  }

  .xl\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .xl\:u-pl-16{
    padding-left: 4rem !important;
  }

  .xl\:u-pt-20{
    padding-top: 5rem !important;
  }

  .xl\:u-pr-20{
    padding-right: 5rem !important;
  }

  .xl\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .xl\:u-pl-20{
    padding-left: 5rem !important;
  }

  .xl\:u-pt-24{
    padding-top: 6rem !important;
  }

  .xl\:u-pr-24{
    padding-right: 6rem !important;
  }

  .xl\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .xl\:u-pl-24{
    padding-left: 6rem !important;
  }

  .xl\:u-pt-28{
    padding-top: 7rem !important;
  }

  .xl\:u-pr-28{
    padding-right: 7rem !important;
  }

  .xl\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .xl\:u-pl-28{
    padding-left: 7rem !important;
  }

  .xl\:u-pt-32{
    padding-top: 8rem !important;
  }

  .xl\:u-pr-32{
    padding-right: 8rem !important;
  }

  .xl\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .xl\:u-pl-32{
    padding-left: 8rem !important;
  }

  .xl\:u-pt-36{
    padding-top: 9rem !important;
  }

  .xl\:u-pr-36{
    padding-right: 9rem !important;
  }

  .xl\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .xl\:u-pl-36{
    padding-left: 9rem !important;
  }

  .xl\:u-pt-40{
    padding-top: 10rem !important;
  }

  .xl\:u-pr-40{
    padding-right: 10rem !important;
  }

  .xl\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .xl\:u-pl-40{
    padding-left: 10rem !important;
  }

  .xl\:u-pt-44{
    padding-top: 11rem !important;
  }

  .xl\:u-pr-44{
    padding-right: 11rem !important;
  }

  .xl\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .xl\:u-pl-44{
    padding-left: 11rem !important;
  }

  .xl\:u-pt-48{
    padding-top: 12rem !important;
  }

  .xl\:u-pr-48{
    padding-right: 12rem !important;
  }

  .xl\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .xl\:u-pl-48{
    padding-left: 12rem !important;
  }

  .xl\:u-pt-52{
    padding-top: 13rem !important;
  }

  .xl\:u-pr-52{
    padding-right: 13rem !important;
  }

  .xl\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .xl\:u-pl-52{
    padding-left: 13rem !important;
  }

  .xl\:u-pt-56{
    padding-top: 14rem !important;
  }

  .xl\:u-pr-56{
    padding-right: 14rem !important;
  }

  .xl\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .xl\:u-pl-56{
    padding-left: 14rem !important;
  }

  .xl\:u-pt-60{
    padding-top: 15rem !important;
  }

  .xl\:u-pr-60{
    padding-right: 15rem !important;
  }

  .xl\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .xl\:u-pl-60{
    padding-left: 15rem !important;
  }

  .xl\:u-pt-64{
    padding-top: 16rem !important;
  }

  .xl\:u-pr-64{
    padding-right: 16rem !important;
  }

  .xl\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .xl\:u-pl-64{
    padding-left: 16rem !important;
  }

  .xl\:u-pt-72{
    padding-top: 18rem !important;
  }

  .xl\:u-pr-72{
    padding-right: 18rem !important;
  }

  .xl\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .xl\:u-pl-72{
    padding-left: 18rem !important;
  }

  .xl\:u-pt-80{
    padding-top: 20rem !important;
  }

  .xl\:u-pr-80{
    padding-right: 20rem !important;
  }

  .xl\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .xl\:u-pl-80{
    padding-left: 20rem !important;
  }

  .xl\:u-pt-96{
    padding-top: 24rem !important;
  }

  .xl\:u-pr-96{
    padding-right: 24rem !important;
  }

  .xl\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .xl\:u-pl-96{
    padding-left: 24rem !important;
  }

  .xl\:u-pt-px{
    padding-top: 1px !important;
  }

  .xl\:u-pr-px{
    padding-right: 1px !important;
  }

  .xl\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .xl\:u-pl-px{
    padding-left: 1px !important;
  }

  .xl\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .xl\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .xl\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .xl\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .xl\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .xl\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .xl\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .xl\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .xl\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .xl\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .xl\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .xl\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .xl\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .xl\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .xl\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .xl\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .xl\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .xl\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .xl\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .xl\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .xl\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .xl\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .xl\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .xl\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .xl\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .xl\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .xl\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .xl\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .xl\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .xl\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .xl\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .xl\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .xl\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .xl\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .xl\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .xl\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .xl\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .xl\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .xl\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .xl\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .xl\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .xl\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .xl\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .xl\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .xl\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .xl\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .xl\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .xl\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .xl\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .xl\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .xl\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .xl\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .xl\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .xl\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .xl\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .xl\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .xl\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .xl\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .xl\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .xl\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .xl\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .xl\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .xl\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .xl\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .xl\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .xl\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .xl\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .xl\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .xl\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .xl\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .xl\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .xl\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .xl\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .xl\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .xl\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .xl\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .xl\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .xl\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .xl\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .xl\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .xl\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .xl\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .xl\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .xl\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .xl\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .xl\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .xl\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .xl\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .xl\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .xl\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .xl\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .xl\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .xl\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .xl\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .xl\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .xl\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .xl\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .xl\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .xl\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .xl\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .xl\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .xl\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .xl\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .xl\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .xl\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .xl\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .xl\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .xl\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .xl\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .xl\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .xl\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .xl\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .xl\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .xl\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .xl\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .xl\:u-static{
    position: static !important;
  }

  .xl\:u-fixed{
    position: fixed !important;
  }

  .xl\:u-absolute{
    position: absolute !important;
  }

  .xl\:u-relative{
    position: relative !important;
  }

  .xl\:u-sticky{
    position: sticky !important;
  }

  .xl\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .xl\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .xl\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .xl\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .xl\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .xl\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .xl\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .xl\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .xl\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .xl\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .xl\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .xl\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .xl\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .xl\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .xl\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .xl\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .xl\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .xl\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .xl\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .xl\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .xl\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .xl\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .xl\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .xl\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .xl\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .xl\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .xl\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .xl\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .xl\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .xl\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .xl\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .xl\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .xl\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .xl\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .xl\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .xl\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .xl\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .xl\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .xl\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .xl\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .xl\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .xl\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .xl\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .xl\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .xl\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .xl\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .xl\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .xl\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .xl\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .xl\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .xl\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .xl\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .xl\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .xl\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .xl\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .xl\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .xl\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .xl\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .xl\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .xl\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .xl\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .xl\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .xl\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .xl\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .xl\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .xl\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .xl\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .xl\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .xl\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .xl\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .xl\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .xl\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xl\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .xl\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .xl\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .xl\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .xl\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .xl\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .xl\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .xl\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .xl\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .xl\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .xl\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .xl\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .xl\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .xl\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .xl\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .xl\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .xl\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .xl\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .xl\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .xl\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .xl\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .xl\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .xl\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .xl\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .xl\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .xl\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .xl\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .xl\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .xl\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .xl\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .xl\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .xl\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .xl\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .xl\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .xl\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .xl\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .xl\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .xl\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .xl\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .xl\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .xl\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .xl\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .xl\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .xl\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .xl\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .xl\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .xl\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .xl\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .xl\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .xl\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .xl\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .xl\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .xl\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .xl\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .xl\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .xl\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .xl\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .xl\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .xl\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .xl\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .xl\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .xl\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .xl\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .xl\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .xl\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .xl\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .xl\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .xl\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .xl\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .xl\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .xl\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .xl\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .xl\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .xl\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .xl\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .xl\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .xl\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .xl\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .xl\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .xl\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .xl\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .xl\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .xl\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .xl\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .xl\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .xl\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .xl\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .xl\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .xl\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .xl\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .xl\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .xl\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .xl\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .xl\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .xl\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .xl\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .xl\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .xl\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .xl\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .xl\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .xl\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .xl\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .xl\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .xl\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .xl\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .xl\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .xl\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .xl\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .xl\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .xl\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .xl\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .xl\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .xl\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .xl\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .xl\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .xl\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .xl\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .xl\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .xl\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .xl\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .xl\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .xl\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .xl\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .xl\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .xl\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .xl\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .xl\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .xl\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .xl\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .xl\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .xl\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .xl\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .xl\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .xl\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .xl\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .xl\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .xl\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .xl\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .xl\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .xl\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .xl\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .xl\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .xl\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .xl\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .xl\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .xl\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .xl\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .xl\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .xl\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .xl\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .xl\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .xl\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .xl\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .xl\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .xl\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .xl\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .xl\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .xl\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .xl\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .xl\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .xl\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .xl\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .xl\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .xl\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .xl\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .xl\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .xl\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .xl\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .xl\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .xl\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .xl\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .xl\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .xl\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .xl\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .xl\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .xl\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .xl\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .xl\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .xl\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .xl\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .xl\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .xl\:u-top-0{
    top: 0px !important;
  }

  .xl\:u-right-0{
    right: 0px !important;
  }

  .xl\:u-bottom-0{
    bottom: 0px !important;
  }

  .xl\:u-left-0{
    left: 0px !important;
  }

  .xl\:u-top-1{
    top: 0.25rem !important;
  }

  .xl\:u-right-1{
    right: 0.25rem !important;
  }

  .xl\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .xl\:u-left-1{
    left: 0.25rem !important;
  }

  .xl\:u-top-2{
    top: 0.5rem !important;
  }

  .xl\:u-right-2{
    right: 0.5rem !important;
  }

  .xl\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .xl\:u-left-2{
    left: 0.5rem !important;
  }

  .xl\:u-top-3{
    top: 0.75rem !important;
  }

  .xl\:u-right-3{
    right: 0.75rem !important;
  }

  .xl\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .xl\:u-left-3{
    left: 0.75rem !important;
  }

  .xl\:u-top-4{
    top: 1rem !important;
  }

  .xl\:u-right-4{
    right: 1rem !important;
  }

  .xl\:u-bottom-4{
    bottom: 1rem !important;
  }

  .xl\:u-left-4{
    left: 1rem !important;
  }

  .xl\:u-top-5{
    top: 1.25rem !important;
  }

  .xl\:u-right-5{
    right: 1.25rem !important;
  }

  .xl\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .xl\:u-left-5{
    left: 1.25rem !important;
  }

  .xl\:u-top-6{
    top: 1.5rem !important;
  }

  .xl\:u-right-6{
    right: 1.5rem !important;
  }

  .xl\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .xl\:u-left-6{
    left: 1.5rem !important;
  }

  .xl\:u-top-7{
    top: 1.75rem !important;
  }

  .xl\:u-right-7{
    right: 1.75rem !important;
  }

  .xl\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .xl\:u-left-7{
    left: 1.75rem !important;
  }

  .xl\:u-top-8{
    top: 2rem !important;
  }

  .xl\:u-right-8{
    right: 2rem !important;
  }

  .xl\:u-bottom-8{
    bottom: 2rem !important;
  }

  .xl\:u-left-8{
    left: 2rem !important;
  }

  .xl\:u-top-9{
    top: 2.25rem !important;
  }

  .xl\:u-right-9{
    right: 2.25rem !important;
  }

  .xl\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .xl\:u-left-9{
    left: 2.25rem !important;
  }

  .xl\:u-top-10{
    top: 2.5rem !important;
  }

  .xl\:u-right-10{
    right: 2.5rem !important;
  }

  .xl\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .xl\:u-left-10{
    left: 2.5rem !important;
  }

  .xl\:u-top-11{
    top: 2.75rem !important;
  }

  .xl\:u-right-11{
    right: 2.75rem !important;
  }

  .xl\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .xl\:u-left-11{
    left: 2.75rem !important;
  }

  .xl\:u-top-12{
    top: 3rem !important;
  }

  .xl\:u-right-12{
    right: 3rem !important;
  }

  .xl\:u-bottom-12{
    bottom: 3rem !important;
  }

  .xl\:u-left-12{
    left: 3rem !important;
  }

  .xl\:u-top-14{
    top: 3.5rem !important;
  }

  .xl\:u-right-14{
    right: 3.5rem !important;
  }

  .xl\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .xl\:u-left-14{
    left: 3.5rem !important;
  }

  .xl\:u-top-16{
    top: 4rem !important;
  }

  .xl\:u-right-16{
    right: 4rem !important;
  }

  .xl\:u-bottom-16{
    bottom: 4rem !important;
  }

  .xl\:u-left-16{
    left: 4rem !important;
  }

  .xl\:u-top-20{
    top: 5rem !important;
  }

  .xl\:u-right-20{
    right: 5rem !important;
  }

  .xl\:u-bottom-20{
    bottom: 5rem !important;
  }

  .xl\:u-left-20{
    left: 5rem !important;
  }

  .xl\:u-top-24{
    top: 6rem !important;
  }

  .xl\:u-right-24{
    right: 6rem !important;
  }

  .xl\:u-bottom-24{
    bottom: 6rem !important;
  }

  .xl\:u-left-24{
    left: 6rem !important;
  }

  .xl\:u-top-28{
    top: 7rem !important;
  }

  .xl\:u-right-28{
    right: 7rem !important;
  }

  .xl\:u-bottom-28{
    bottom: 7rem !important;
  }

  .xl\:u-left-28{
    left: 7rem !important;
  }

  .xl\:u-top-32{
    top: 8rem !important;
  }

  .xl\:u-right-32{
    right: 8rem !important;
  }

  .xl\:u-bottom-32{
    bottom: 8rem !important;
  }

  .xl\:u-left-32{
    left: 8rem !important;
  }

  .xl\:u-top-36{
    top: 9rem !important;
  }

  .xl\:u-right-36{
    right: 9rem !important;
  }

  .xl\:u-bottom-36{
    bottom: 9rem !important;
  }

  .xl\:u-left-36{
    left: 9rem !important;
  }

  .xl\:u-top-40{
    top: 10rem !important;
  }

  .xl\:u-right-40{
    right: 10rem !important;
  }

  .xl\:u-bottom-40{
    bottom: 10rem !important;
  }

  .xl\:u-left-40{
    left: 10rem !important;
  }

  .xl\:u-top-44{
    top: 11rem !important;
  }

  .xl\:u-right-44{
    right: 11rem !important;
  }

  .xl\:u-bottom-44{
    bottom: 11rem !important;
  }

  .xl\:u-left-44{
    left: 11rem !important;
  }

  .xl\:u-top-48{
    top: 12rem !important;
  }

  .xl\:u-right-48{
    right: 12rem !important;
  }

  .xl\:u-bottom-48{
    bottom: 12rem !important;
  }

  .xl\:u-left-48{
    left: 12rem !important;
  }

  .xl\:u-top-52{
    top: 13rem !important;
  }

  .xl\:u-right-52{
    right: 13rem !important;
  }

  .xl\:u-bottom-52{
    bottom: 13rem !important;
  }

  .xl\:u-left-52{
    left: 13rem !important;
  }

  .xl\:u-top-56{
    top: 14rem !important;
  }

  .xl\:u-right-56{
    right: 14rem !important;
  }

  .xl\:u-bottom-56{
    bottom: 14rem !important;
  }

  .xl\:u-left-56{
    left: 14rem !important;
  }

  .xl\:u-top-60{
    top: 15rem !important;
  }

  .xl\:u-right-60{
    right: 15rem !important;
  }

  .xl\:u-bottom-60{
    bottom: 15rem !important;
  }

  .xl\:u-left-60{
    left: 15rem !important;
  }

  .xl\:u-top-64{
    top: 16rem !important;
  }

  .xl\:u-right-64{
    right: 16rem !important;
  }

  .xl\:u-bottom-64{
    bottom: 16rem !important;
  }

  .xl\:u-left-64{
    left: 16rem !important;
  }

  .xl\:u-top-72{
    top: 18rem !important;
  }

  .xl\:u-right-72{
    right: 18rem !important;
  }

  .xl\:u-bottom-72{
    bottom: 18rem !important;
  }

  .xl\:u-left-72{
    left: 18rem !important;
  }

  .xl\:u-top-80{
    top: 20rem !important;
  }

  .xl\:u-right-80{
    right: 20rem !important;
  }

  .xl\:u-bottom-80{
    bottom: 20rem !important;
  }

  .xl\:u-left-80{
    left: 20rem !important;
  }

  .xl\:u-top-96{
    top: 24rem !important;
  }

  .xl\:u-right-96{
    right: 24rem !important;
  }

  .xl\:u-bottom-96{
    bottom: 24rem !important;
  }

  .xl\:u-left-96{
    left: 24rem !important;
  }

  .xl\:u-top-auto{
    top: auto !important;
  }

  .xl\:u-right-auto{
    right: auto !important;
  }

  .xl\:u-bottom-auto{
    bottom: auto !important;
  }

  .xl\:u-left-auto{
    left: auto !important;
  }

  .xl\:u-top-px{
    top: 1px !important;
  }

  .xl\:u-right-px{
    right: 1px !important;
  }

  .xl\:u-bottom-px{
    bottom: 1px !important;
  }

  .xl\:u-left-px{
    left: 1px !important;
  }

  .xl\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .xl\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .xl\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .xl\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .xl\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .xl\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .xl\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .xl\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .xl\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .xl\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .xl\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .xl\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .xl\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .xl\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .xl\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .xl\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .xl\:u--top-0{
    top: 0px !important;
  }

  .xl\:u--right-0{
    right: 0px !important;
  }

  .xl\:u--bottom-0{
    bottom: 0px !important;
  }

  .xl\:u--left-0{
    left: 0px !important;
  }

  .xl\:u--top-1{
    top: -0.25rem !important;
  }

  .xl\:u--right-1{
    right: -0.25rem !important;
  }

  .xl\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .xl\:u--left-1{
    left: -0.25rem !important;
  }

  .xl\:u--top-2{
    top: -0.5rem !important;
  }

  .xl\:u--right-2{
    right: -0.5rem !important;
  }

  .xl\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .xl\:u--left-2{
    left: -0.5rem !important;
  }

  .xl\:u--top-3{
    top: -0.75rem !important;
  }

  .xl\:u--right-3{
    right: -0.75rem !important;
  }

  .xl\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .xl\:u--left-3{
    left: -0.75rem !important;
  }

  .xl\:u--top-4{
    top: -1rem !important;
  }

  .xl\:u--right-4{
    right: -1rem !important;
  }

  .xl\:u--bottom-4{
    bottom: -1rem !important;
  }

  .xl\:u--left-4{
    left: -1rem !important;
  }

  .xl\:u--top-5{
    top: -1.25rem !important;
  }

  .xl\:u--right-5{
    right: -1.25rem !important;
  }

  .xl\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .xl\:u--left-5{
    left: -1.25rem !important;
  }

  .xl\:u--top-6{
    top: -1.5rem !important;
  }

  .xl\:u--right-6{
    right: -1.5rem !important;
  }

  .xl\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .xl\:u--left-6{
    left: -1.5rem !important;
  }

  .xl\:u--top-7{
    top: -1.75rem !important;
  }

  .xl\:u--right-7{
    right: -1.75rem !important;
  }

  .xl\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .xl\:u--left-7{
    left: -1.75rem !important;
  }

  .xl\:u--top-8{
    top: -2rem !important;
  }

  .xl\:u--right-8{
    right: -2rem !important;
  }

  .xl\:u--bottom-8{
    bottom: -2rem !important;
  }

  .xl\:u--left-8{
    left: -2rem !important;
  }

  .xl\:u--top-9{
    top: -2.25rem !important;
  }

  .xl\:u--right-9{
    right: -2.25rem !important;
  }

  .xl\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .xl\:u--left-9{
    left: -2.25rem !important;
  }

  .xl\:u--top-10{
    top: -2.5rem !important;
  }

  .xl\:u--right-10{
    right: -2.5rem !important;
  }

  .xl\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .xl\:u--left-10{
    left: -2.5rem !important;
  }

  .xl\:u--top-11{
    top: -2.75rem !important;
  }

  .xl\:u--right-11{
    right: -2.75rem !important;
  }

  .xl\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .xl\:u--left-11{
    left: -2.75rem !important;
  }

  .xl\:u--top-12{
    top: -3rem !important;
  }

  .xl\:u--right-12{
    right: -3rem !important;
  }

  .xl\:u--bottom-12{
    bottom: -3rem !important;
  }

  .xl\:u--left-12{
    left: -3rem !important;
  }

  .xl\:u--top-14{
    top: -3.5rem !important;
  }

  .xl\:u--right-14{
    right: -3.5rem !important;
  }

  .xl\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .xl\:u--left-14{
    left: -3.5rem !important;
  }

  .xl\:u--top-16{
    top: -4rem !important;
  }

  .xl\:u--right-16{
    right: -4rem !important;
  }

  .xl\:u--bottom-16{
    bottom: -4rem !important;
  }

  .xl\:u--left-16{
    left: -4rem !important;
  }

  .xl\:u--top-20{
    top: -5rem !important;
  }

  .xl\:u--right-20{
    right: -5rem !important;
  }

  .xl\:u--bottom-20{
    bottom: -5rem !important;
  }

  .xl\:u--left-20{
    left: -5rem !important;
  }

  .xl\:u--top-24{
    top: -6rem !important;
  }

  .xl\:u--right-24{
    right: -6rem !important;
  }

  .xl\:u--bottom-24{
    bottom: -6rem !important;
  }

  .xl\:u--left-24{
    left: -6rem !important;
  }

  .xl\:u--top-28{
    top: -7rem !important;
  }

  .xl\:u--right-28{
    right: -7rem !important;
  }

  .xl\:u--bottom-28{
    bottom: -7rem !important;
  }

  .xl\:u--left-28{
    left: -7rem !important;
  }

  .xl\:u--top-32{
    top: -8rem !important;
  }

  .xl\:u--right-32{
    right: -8rem !important;
  }

  .xl\:u--bottom-32{
    bottom: -8rem !important;
  }

  .xl\:u--left-32{
    left: -8rem !important;
  }

  .xl\:u--top-36{
    top: -9rem !important;
  }

  .xl\:u--right-36{
    right: -9rem !important;
  }

  .xl\:u--bottom-36{
    bottom: -9rem !important;
  }

  .xl\:u--left-36{
    left: -9rem !important;
  }

  .xl\:u--top-40{
    top: -10rem !important;
  }

  .xl\:u--right-40{
    right: -10rem !important;
  }

  .xl\:u--bottom-40{
    bottom: -10rem !important;
  }

  .xl\:u--left-40{
    left: -10rem !important;
  }

  .xl\:u--top-44{
    top: -11rem !important;
  }

  .xl\:u--right-44{
    right: -11rem !important;
  }

  .xl\:u--bottom-44{
    bottom: -11rem !important;
  }

  .xl\:u--left-44{
    left: -11rem !important;
  }

  .xl\:u--top-48{
    top: -12rem !important;
  }

  .xl\:u--right-48{
    right: -12rem !important;
  }

  .xl\:u--bottom-48{
    bottom: -12rem !important;
  }

  .xl\:u--left-48{
    left: -12rem !important;
  }

  .xl\:u--top-52{
    top: -13rem !important;
  }

  .xl\:u--right-52{
    right: -13rem !important;
  }

  .xl\:u--bottom-52{
    bottom: -13rem !important;
  }

  .xl\:u--left-52{
    left: -13rem !important;
  }

  .xl\:u--top-56{
    top: -14rem !important;
  }

  .xl\:u--right-56{
    right: -14rem !important;
  }

  .xl\:u--bottom-56{
    bottom: -14rem !important;
  }

  .xl\:u--left-56{
    left: -14rem !important;
  }

  .xl\:u--top-60{
    top: -15rem !important;
  }

  .xl\:u--right-60{
    right: -15rem !important;
  }

  .xl\:u--bottom-60{
    bottom: -15rem !important;
  }

  .xl\:u--left-60{
    left: -15rem !important;
  }

  .xl\:u--top-64{
    top: -16rem !important;
  }

  .xl\:u--right-64{
    right: -16rem !important;
  }

  .xl\:u--bottom-64{
    bottom: -16rem !important;
  }

  .xl\:u--left-64{
    left: -16rem !important;
  }

  .xl\:u--top-72{
    top: -18rem !important;
  }

  .xl\:u--right-72{
    right: -18rem !important;
  }

  .xl\:u--bottom-72{
    bottom: -18rem !important;
  }

  .xl\:u--left-72{
    left: -18rem !important;
  }

  .xl\:u--top-80{
    top: -20rem !important;
  }

  .xl\:u--right-80{
    right: -20rem !important;
  }

  .xl\:u--bottom-80{
    bottom: -20rem !important;
  }

  .xl\:u--left-80{
    left: -20rem !important;
  }

  .xl\:u--top-96{
    top: -24rem !important;
  }

  .xl\:u--right-96{
    right: -24rem !important;
  }

  .xl\:u--bottom-96{
    bottom: -24rem !important;
  }

  .xl\:u--left-96{
    left: -24rem !important;
  }

  .xl\:u--top-px{
    top: -1px !important;
  }

  .xl\:u--right-px{
    right: -1px !important;
  }

  .xl\:u--bottom-px{
    bottom: -1px !important;
  }

  .xl\:u--left-px{
    left: -1px !important;
  }

  .xl\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .xl\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .xl\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .xl\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .xl\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .xl\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .xl\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .xl\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .xl\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .xl\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .xl\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .xl\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .xl\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .xl\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .xl\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .xl\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .xl\:u-top-1\/2{
    top: 50% !important;
  }

  .xl\:u-right-1\/2{
    right: 50% !important;
  }

  .xl\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .xl\:u-left-1\/2{
    left: 50% !important;
  }

  .xl\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .xl\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .xl\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .xl\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .xl\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .xl\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .xl\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .xl\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .xl\:u-top-1\/4{
    top: 25% !important;
  }

  .xl\:u-right-1\/4{
    right: 25% !important;
  }

  .xl\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .xl\:u-left-1\/4{
    left: 25% !important;
  }

  .xl\:u-top-2\/4{
    top: 50% !important;
  }

  .xl\:u-right-2\/4{
    right: 50% !important;
  }

  .xl\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .xl\:u-left-2\/4{
    left: 50% !important;
  }

  .xl\:u-top-3\/4{
    top: 75% !important;
  }

  .xl\:u-right-3\/4{
    right: 75% !important;
  }

  .xl\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .xl\:u-left-3\/4{
    left: 75% !important;
  }

  .xl\:u-top-full{
    top: 100% !important;
  }

  .xl\:u-right-full{
    right: 100% !important;
  }

  .xl\:u-bottom-full{
    bottom: 100% !important;
  }

  .xl\:u-left-full{
    left: 100% !important;
  }

  .xl\:u--top-1\/2{
    top: -50% !important;
  }

  .xl\:u--right-1\/2{
    right: -50% !important;
  }

  .xl\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .xl\:u--left-1\/2{
    left: -50% !important;
  }

  .xl\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .xl\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .xl\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .xl\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .xl\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .xl\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .xl\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .xl\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .xl\:u--top-1\/4{
    top: -25% !important;
  }

  .xl\:u--right-1\/4{
    right: -25% !important;
  }

  .xl\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .xl\:u--left-1\/4{
    left: -25% !important;
  }

  .xl\:u--top-2\/4{
    top: -50% !important;
  }

  .xl\:u--right-2\/4{
    right: -50% !important;
  }

  .xl\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .xl\:u--left-2\/4{
    left: -50% !important;
  }

  .xl\:u--top-3\/4{
    top: -75% !important;
  }

  .xl\:u--right-3\/4{
    right: -75% !important;
  }

  .xl\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .xl\:u--left-3\/4{
    left: -75% !important;
  }

  .xl\:u--top-full{
    top: -100% !important;
  }

  .xl\:u--right-full{
    right: -100% !important;
  }

  .xl\:u--bottom-full{
    bottom: -100% !important;
  }

  .xl\:u--left-full{
    left: -100% !important;
  }

  .xl\:u-resize-none{
    resize: none !important;
  }

  .xl\:u-resize-y{
    resize: vertical !important;
  }

  .xl\:u-resize-x{
    resize: horizontal !important;
  }

  .xl\:u-resize{
    resize: both !important;
  }

  .xl\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .xl\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .xl\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .xl\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .xl\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .xl\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .xl\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .xl\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .xl\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .xl\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .xl\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .xl\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .xl\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .xl\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .xl\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .xl\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .xl\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .xl\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .xl\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .xl\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .xl\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .xl\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .xl\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .xl\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .xl\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .xl\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .xl\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .xl\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .xl\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .xl\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .xl\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .xl\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .xl\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .xl\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .xl\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .xl\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .xl\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .xl\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .xl\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .xl\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .xl\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .xl\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .xl\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .xl\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .xl\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .xl\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .xl\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .xl\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .xl\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .xl\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .xl\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .xl\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .xl\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .xl\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .xl\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .xl\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .xl\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .xl\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .xl\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .xl\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .xl\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .xl\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .xl\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .xl\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .xl\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .xl\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .xl\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .xl\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .xl\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .xl\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .xl\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .xl\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .xl\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .xl\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .xl\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .xl\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .xl\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .xl\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .xl\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .xl\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .xl\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .xl\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .xl\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .xl\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .xl\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .xl\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .xl\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .xl\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .xl\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .xl\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .xl\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .xl\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .xl\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .xl\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .xl\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .xl\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .xl\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .xl\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .xl\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .xl\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .xl\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .xl\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .xl\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .xl\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .xl\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .xl\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .xl\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .xl\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .xl\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .xl\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .xl\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .xl\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .xl\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .xl\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .xl\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .xl\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .xl\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .xl\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .xl\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .xl\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .xl\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .xl\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .xl\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .xl\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .xl\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .xl\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .xl\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .xl\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .xl\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .xl\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .xl\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .xl\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .xl\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .xl\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .xl\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .xl\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .xl\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .xl\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .xl\:u-fill-current{
    fill: currentColor !important;
  }

  .xl\:u-stroke-current{
    stroke: currentColor !important;
  }

  .xl\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .xl\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .xl\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .xl\:u-table-auto{
    table-layout: auto !important;
  }

  .xl\:u-table-fixed{
    table-layout: fixed !important;
  }

  .xl\:u-text-left{
    text-align: left !important;
  }

  .xl\:u-text-center{
    text-align: center !important;
  }

  .xl\:u-text-right{
    text-align: right !important;
  }

  .xl\:u-text-justify{
    text-align: justify !important;
  }

  .xl\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-transparent{
    color: transparent !important;
  }

  .xl\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .xl\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .xl\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .xl\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .xl\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .xl\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .xl\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .xl\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .xl\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .xl\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .xl\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .xl\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .xl\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .xl\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .xl\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .xl\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .xl\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .xl\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .xl\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .xl\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .xl\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .xl\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .xl\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .xl\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .xl\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .xl\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .xl\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .xl\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .xl\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .xl\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .xl\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .xl\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .xl\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .xl\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .xl\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .xl\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .xl\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .xl\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .xl\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .xl\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .xl\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .xl\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .xl\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .xl\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .xl\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .xl\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .xl\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .xl\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .xl\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .xl\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .xl\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .xl\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .xl\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .xl\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .xl\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .xl\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .xl\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .xl\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .xl\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .xl\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .xl\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .xl\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .xl\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .xl\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .xl\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .xl\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .xl\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .xl\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .xl\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .xl\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .xl\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .xl\:u-italic{
    font-style: italic !important;
  }

  .xl\:u-not-italic{
    font-style: normal !important;
  }

  .xl\:u-uppercase{
    text-transform: uppercase !important;
  }

  .xl\:u-lowercase{
    text-transform: lowercase !important;
  }

  .xl\:u-capitalize{
    text-transform: capitalize !important;
  }

  .xl\:u-normal-case{
    text-transform: none !important;
  }

  .xl\:u-underline{
    text-decoration: underline !important;
  }

  .xl\:u-line-through{
    text-decoration: line-through !important;
  }

  .xl\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .xl\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .xl\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .xl\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .xl\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .xl\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .xl\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .xl\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .xl\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .xl\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .xl\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .xl\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .xl\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .xl\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .xl\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .xl\:u-ordinal, .xl\:u-slashed-zero, .xl\:u-lining-nums, .xl\:u-oldstyle-nums, .xl\:u-proportional-nums, .xl\:u-tabular-nums, .xl\:u-diagonal-fractions, .xl\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .xl\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .xl\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .xl\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .xl\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .xl\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .xl\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .xl\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .xl\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .xl\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .xl\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .xl\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .xl\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .xl\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .xl\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .xl\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .xl\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .xl\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .xl\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .xl\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .xl\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .xl\:u-align-top{
    vertical-align: top !important;
  }

  .xl\:u-align-middle{
    vertical-align: middle !important;
  }

  .xl\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .xl\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .xl\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .xl\:u-visible{
    visibility: visible !important;
  }

  .xl\:u-invisible{
    visibility: hidden !important;
  }

  .xl\:u-whitespace-normal{
    white-space: normal !important;
  }

  .xl\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .xl\:u-whitespace-pre{
    white-space: pre !important;
  }

  .xl\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .xl\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .xl\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .xl\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .xl\:u-break-all{
    word-break: break-all !important;
  }

  .xl\:u-w-0{
    width: 0px !important;
  }

  .xl\:u-w-1{
    width: 0.25rem !important;
  }

  .xl\:u-w-2{
    width: 0.5rem !important;
  }

  .xl\:u-w-3{
    width: 0.75rem !important;
  }

  .xl\:u-w-4{
    width: 1rem !important;
  }

  .xl\:u-w-5{
    width: 1.25rem !important;
  }

  .xl\:u-w-6{
    width: 1.5rem !important;
  }

  .xl\:u-w-7{
    width: 1.75rem !important;
  }

  .xl\:u-w-8{
    width: 2rem !important;
  }

  .xl\:u-w-9{
    width: 2.25rem !important;
  }

  .xl\:u-w-10{
    width: 2.5rem !important;
  }

  .xl\:u-w-11{
    width: 2.75rem !important;
  }

  .xl\:u-w-12{
    width: 3rem !important;
  }

  .xl\:u-w-14{
    width: 3.5rem !important;
  }

  .xl\:u-w-16{
    width: 4rem !important;
  }

  .xl\:u-w-20{
    width: 5rem !important;
  }

  .xl\:u-w-24{
    width: 6rem !important;
  }

  .xl\:u-w-28{
    width: 7rem !important;
  }

  .xl\:u-w-32{
    width: 8rem !important;
  }

  .xl\:u-w-36{
    width: 9rem !important;
  }

  .xl\:u-w-40{
    width: 10rem !important;
  }

  .xl\:u-w-44{
    width: 11rem !important;
  }

  .xl\:u-w-48{
    width: 12rem !important;
  }

  .xl\:u-w-52{
    width: 13rem !important;
  }

  .xl\:u-w-56{
    width: 14rem !important;
  }

  .xl\:u-w-60{
    width: 15rem !important;
  }

  .xl\:u-w-64{
    width: 16rem !important;
  }

  .xl\:u-w-72{
    width: 18rem !important;
  }

  .xl\:u-w-80{
    width: 20rem !important;
  }

  .xl\:u-w-96{
    width: 24rem !important;
  }

  .xl\:u-w-auto{
    width: auto !important;
  }

  .xl\:u-w-px{
    width: 1px !important;
  }

  .xl\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .xl\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .xl\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .xl\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .xl\:u-w-1\/2{
    width: 50% !important;
  }

  .xl\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .xl\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .xl\:u-w-1\/4{
    width: 25% !important;
  }

  .xl\:u-w-2\/4{
    width: 50% !important;
  }

  .xl\:u-w-3\/4{
    width: 75% !important;
  }

  .xl\:u-w-1\/5{
    width: 20% !important;
  }

  .xl\:u-w-2\/5{
    width: 40% !important;
  }

  .xl\:u-w-3\/5{
    width: 60% !important;
  }

  .xl\:u-w-4\/5{
    width: 80% !important;
  }

  .xl\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .xl\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .xl\:u-w-3\/6{
    width: 50% !important;
  }

  .xl\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .xl\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .xl\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .xl\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .xl\:u-w-3\/12{
    width: 25% !important;
  }

  .xl\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .xl\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .xl\:u-w-6\/12{
    width: 50% !important;
  }

  .xl\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .xl\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .xl\:u-w-9\/12{
    width: 75% !important;
  }

  .xl\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .xl\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .xl\:u-w-full{
    width: 100% !important;
  }

  .xl\:u-w-screen{
    width: 100vw !important;
  }

  .xl\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .xl\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .xl\:u-z-0{
    z-index: 0 !important;
  }

  .xl\:u-z-10{
    z-index: 10 !important;
  }

  .xl\:u-z-20{
    z-index: 20 !important;
  }

  .xl\:u-z-30{
    z-index: 30 !important;
  }

  .xl\:u-z-40{
    z-index: 40 !important;
  }

  .xl\:u-z-50{
    z-index: 50 !important;
  }

  .xl\:u-z-auto{
    z-index: auto !important;
  }

  .xl\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .xl\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .xl\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .xl\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .xl\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .xl\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .xl\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .xl\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .xl\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .xl\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .xl\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .xl\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .xl\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .xl\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .xl\:u-gap-0{
    gap: 0px !important;
  }

  .xl\:u-gap-1{
    gap: 0.25rem !important;
  }

  .xl\:u-gap-2{
    gap: 0.5rem !important;
  }

  .xl\:u-gap-3{
    gap: 0.75rem !important;
  }

  .xl\:u-gap-4{
    gap: 1rem !important;
  }

  .xl\:u-gap-5{
    gap: 1.25rem !important;
  }

  .xl\:u-gap-6{
    gap: 1.5rem !important;
  }

  .xl\:u-gap-7{
    gap: 1.75rem !important;
  }

  .xl\:u-gap-8{
    gap: 2rem !important;
  }

  .xl\:u-gap-9{
    gap: 2.25rem !important;
  }

  .xl\:u-gap-10{
    gap: 2.5rem !important;
  }

  .xl\:u-gap-11{
    gap: 2.75rem !important;
  }

  .xl\:u-gap-12{
    gap: 3rem !important;
  }

  .xl\:u-gap-14{
    gap: 3.5rem !important;
  }

  .xl\:u-gap-16{
    gap: 4rem !important;
  }

  .xl\:u-gap-20{
    gap: 5rem !important;
  }

  .xl\:u-gap-24{
    gap: 6rem !important;
  }

  .xl\:u-gap-28{
    gap: 7rem !important;
  }

  .xl\:u-gap-32{
    gap: 8rem !important;
  }

  .xl\:u-gap-36{
    gap: 9rem !important;
  }

  .xl\:u-gap-40{
    gap: 10rem !important;
  }

  .xl\:u-gap-44{
    gap: 11rem !important;
  }

  .xl\:u-gap-48{
    gap: 12rem !important;
  }

  .xl\:u-gap-52{
    gap: 13rem !important;
  }

  .xl\:u-gap-56{
    gap: 14rem !important;
  }

  .xl\:u-gap-60{
    gap: 15rem !important;
  }

  .xl\:u-gap-64{
    gap: 16rem !important;
  }

  .xl\:u-gap-72{
    gap: 18rem !important;
  }

  .xl\:u-gap-80{
    gap: 20rem !important;
  }

  .xl\:u-gap-96{
    gap: 24rem !important;
  }

  .xl\:u-gap-px{
    gap: 1px !important;
  }

  .xl\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .xl\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .xl\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .xl\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .xl\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .xl\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .xl\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .xl\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .xl\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .xl\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .xl\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .xl\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .xl\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .xl\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .xl\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .xl\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .xl\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .xl\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .xl\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .xl\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .xl\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .xl\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .xl\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .xl\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .xl\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .xl\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .xl\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .xl\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .xl\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .xl\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .xl\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .xl\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .xl\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .xl\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .xl\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .xl\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .xl\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .xl\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .xl\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .xl\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .xl\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .xl\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .xl\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .xl\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .xl\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .xl\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .xl\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .xl\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .xl\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .xl\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .xl\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .xl\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .xl\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .xl\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .xl\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .xl\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .xl\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .xl\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .xl\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .xl\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .xl\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .xl\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .xl\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .xl\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .xl\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .xl\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .xl\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .xl\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .xl\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .xl\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .xl\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .xl\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .xl\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .xl\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .xl\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .xl\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .xl\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .xl\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .xl\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .xl\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .xl\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .xl\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .xl\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .xl\:u-col-auto{
    grid-column: auto !important;
  }

  .xl\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .xl\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .xl\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .xl\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .xl\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .xl\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .xl\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .xl\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .xl\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .xl\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .xl\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .xl\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .xl\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .xl\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .xl\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .xl\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .xl\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .xl\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .xl\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .xl\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .xl\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .xl\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .xl\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .xl\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .xl\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .xl\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .xl\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .xl\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .xl\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .xl\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .xl\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .xl\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .xl\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .xl\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .xl\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .xl\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .xl\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .xl\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .xl\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .xl\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .xl\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .xl\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .xl\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .xl\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .xl\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .xl\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .xl\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .xl\:u-row-auto{
    grid-row: auto !important;
  }

  .xl\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .xl\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .xl\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .xl\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .xl\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .xl\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .xl\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .xl\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .xl\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .xl\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .xl\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .xl\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .xl\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .xl\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .xl\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .xl\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .xl\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .xl\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .xl\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .xl\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .xl\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .xl\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .xl\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .xl\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .xl\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .xl\:u-transform-none{
    transform: none !important;
  }

  .xl\:u-origin-center{
    transform-origin: center !important;
  }

  .xl\:u-origin-top{
    transform-origin: top !important;
  }

  .xl\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .xl\:u-origin-right{
    transform-origin: right !important;
  }

  .xl\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .xl\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .xl\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .xl\:u-origin-left{
    transform-origin: left !important;
  }

  .xl\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .xl\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .xl\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .xl\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .xl\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .xl\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .xl\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .xl\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .xl\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .xl\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .xl\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .xl\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .xl\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .xl\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .xl\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .xl\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .xl\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .xl\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .xl\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .xl\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .xl\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .xl\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .xl\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .xl\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .xl\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .xl\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .xl\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .xl\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .xl\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .xl\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .xl\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .xl\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .xl\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .xl\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .xl\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .xl\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .xl\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .xl\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .xl\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .xl\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .xl\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .xl\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .xl\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .xl\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .xl\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .xl\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .xl\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .xl\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .xl\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .xl\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .xl\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .xl\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .xl\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .xl\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .xl\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .xl\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .xl\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .xl\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .xl\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .xl\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .xl\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .xl\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .xl\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .xl\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .xl\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .xl\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .xl\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .xl\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .xl\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .xl\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .xl\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .xl\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .xl\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .xl\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .xl\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .xl\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .xl\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .xl\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .xl\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .xl\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .xl\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .xl\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .xl\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .xl\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .xl\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .xl\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .xl\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .xl\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .xl\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .xl\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .xl\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .xl\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .xl\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .xl\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .xl\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .xl\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .xl\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .xl\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .xl\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .xl\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .xl\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .xl\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .xl\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .xl\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .xl\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .xl\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .xl\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .xl\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .xl\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .xl\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .xl\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .xl\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .xl\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .xl\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .xl\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .xl\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .xl\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .xl\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .xl\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .xl\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .xl\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .xl\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .xl\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .xl\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .xl\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .xl\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .xl\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .xl\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .xl\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .xl\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .xl\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .xl\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .xl\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .xl\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .xl\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .xl\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .xl\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .xl\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .xl\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .xl\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .xl\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .xl\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .xl\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .xl\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .xl\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .xl\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .xl\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .xl\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .xl\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .xl\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .xl\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .xl\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .xl\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .xl\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .xl\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .xl\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .xl\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .xl\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .xl\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .xl\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .xl\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .xl\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .xl\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .xl\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .xl\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .xl\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .xl\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .xl\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .xl\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .xl\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .xl\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .xl\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .xl\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .xl\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .xl\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .xl\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .xl\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .xl\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .xl\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .xl\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .xl\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .xl\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .xl\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .xl\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .xl\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .xl\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .xl\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .xl\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .xl\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .xl\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .xl\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .xl\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .xl\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .xl\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .xl\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .xl\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .xl\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .xl\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .xl\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .xl\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .xl\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .xl\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .xl\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .xl\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .xl\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .xl\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .xl\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .xl\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .xl\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .xl\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .xl\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .xl\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .xl\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .xl\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .xl\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .xl\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .xl\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .xl\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .xl\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .xl\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .xl\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .xl\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .xl\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .xl\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .xl\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .xl\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .xl\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .xl\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .xl\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .xl\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .xl\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .xl\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .xl\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .xl\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .xl\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .xl\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .xl\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .xl\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .xl\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .xl\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .xl\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .xl\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .xl\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .xl\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .xl\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .xl\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .xl\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .xl\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .xl\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .xl\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .xl\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .xl\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .xl\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .xl\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .xl\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .xl\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .xl\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .xl\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .xl\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .xl\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .xl\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .xl\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .xl\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .xl\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .xl\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .xl\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .xl\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .xl\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .xl\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .xl\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .xl\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .xl\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .xl\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .xl\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .xl\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .xl\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .xl\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .xl\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .xl\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .xl\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .xl\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .xl\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .xl\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .xl\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .xl\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .xl\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .xl\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .xl\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .xl\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .xl\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .xl\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .xl\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .xl\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .xl\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .xl\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .xl\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .xl\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .xl\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .xl\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .xl\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .xl\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .xl\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .xl\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .xl\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .xl\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .xl\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .xl\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .xl\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .xl\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .xl\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .xl\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .xl\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .xl\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .xl\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .xl\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .xl\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .xl\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .xl\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .xl\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .xl\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .xl\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .xl\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .xl\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .xl\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .xl\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .xl\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .xl\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .xl\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .xl\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .xl\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .xl\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .xl\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .xl\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .xl\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .xl\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .xl\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .xl\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .xl\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .xl\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .xl\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .xl\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .xl\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .xl\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .xl\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .xl\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .xl\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .xl\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .xl\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .xl\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .xl\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .xl\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .xl\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .xl\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .xl\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .xl\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .xl\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .xl\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .xl\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .xl\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .xl\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .xl\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .xl\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .xl\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .xl\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .xl\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .xl\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .xl\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .xl\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .xl\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .xl\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .xl\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .xl\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .xl\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .xl\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .xl\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .xl\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .xl\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .xl\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .xl\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .xl\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .xl\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .xl\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .xl\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .xl\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .xl\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .xl\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .xl\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .xl\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .xl\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .xl\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .xl\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .xl\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .xl\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .xl\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .xl\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .xl\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .xl\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .xl\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .xl\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .xl\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .xl\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .xl\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .xl\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .xl\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .xl\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .xl\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .xl\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .xl\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .xl\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .xl\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .xl\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .xl\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .xl\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .xl\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .xl\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .xl\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .xl\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .xl\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .xl\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .xl\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .xl\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .xl\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .xl\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .xl\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .xl\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .xl\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .xl\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .xl\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .xl\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .xl\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .xl\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .xl\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .xl\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .xl\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .xl\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .xl\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .xl\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .xl\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .xl\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .xl\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .xl\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .xl\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .xl\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .xl\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .xl\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .xl\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .xl\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .xl\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .xl\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .xl\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .xl\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .xl\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .xl\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .xl\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .xl\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .xl\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .xl\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .xl\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .xl\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .xl\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .xl\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .xl\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .xl\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .xl\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .xl\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .xl\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .xl\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .xl\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .xl\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .xl\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .xl\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .xl\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .xl\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .xl\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .xl\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .xl\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .xl\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .xl\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .xl\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .xl\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .xl\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .xl\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .xl\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .xl\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .xl\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .xl\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .xl\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .xl\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .xl\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .xl\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .xl\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .xl\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .xl\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .xl\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .xl\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .xl\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .xl\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .xl\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .xl\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .xl\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .xl\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .xl\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .xl\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .xl\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .xl\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .xl\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .xl\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .xl\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .xl\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .xl\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .xl\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .xl\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .xl\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .xl\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .xl\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .xl\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .xl\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .xl\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .xl\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .xl\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .xl\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .xl\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .xl\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .xl\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .xl\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .xl\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .xl\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .xl\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .xl\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .xl\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .xl\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .xl\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .xl\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .xl\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .xl\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .xl\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .xl\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .xl\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .xl\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .xl\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .xl\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .xl\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .xl\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .xl\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .xl\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .xl\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .xl\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .xl\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .xl\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .xl\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .xl\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .xl\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .xl\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .xl\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .xl\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .xl\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .xl\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .xl\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .xl\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .xl\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .xl\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .xl\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .xl\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .xl\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .xl\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .xl\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .xl\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .xl\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .xl\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .xl\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .xl\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .xl\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .xl\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .xl\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .xl\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .xl\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .xl\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .xl\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .xl\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .xl\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .xl\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .xl\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .xl\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .xl\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .xl\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .xl\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .xl\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .xl\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .xl\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .xl\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .xl\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .xl\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .xl\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .xl\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .xl\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .xl\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .xl\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .xl\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .xl\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .xl\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .xl\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .xl\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .xl\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .xl\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .xl\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .xl\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .xl\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .xl\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .xl\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .xl\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .xl\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .xl\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .xl\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .xl\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .xl\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .xl\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .xl\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .xl\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .xl\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .xl\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .xl\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .xl\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .xl\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .xl\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .xl\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .xl\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .xl\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .xl\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .xl\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .xl\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .xl\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .xl\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .xl\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .xl\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .xl\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .xl\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .xl\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .xl\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .xl\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .xl\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .xl\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .xl\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .xl\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .xl\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .xl\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .xl\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .xl\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .xl\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .xl\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .xl\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .xl\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .xl\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .xl\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .xl\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .xl\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .xl\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .xl\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .xl\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .xl\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .xl\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .xl\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .xl\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .xl\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .xl\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .xl\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .xl\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .xl\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .xl\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .xl\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .xl\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .xl\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .xl\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .xl\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .xl\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .xl\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .xl\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .xl\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .xl\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .xl\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .xl\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .xl\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .xl\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .xl\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .xl\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .xl\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .xl\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .xl\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .xl\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .xl\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .xl\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .xl\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .xl\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .xl\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .xl\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .xl\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .xl\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .xl\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .xl\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .xl\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .xl\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .xl\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .xl\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .xl\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .xl\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .xl\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .xl\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .xl\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .xl\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .xl\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .xl\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .xl\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .xl\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .xl\:u-transition-none{
    transition-property: none !important;
  }

  .xl\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .xl\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .xl\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .xl\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .xl\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .xl\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .xl\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .xl\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .xl\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .xl\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .xl\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .xl\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .xl\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .xl\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .xl\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .xl\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .xl\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .xl\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .xl\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .xl\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .xl\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .xl\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .xl\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .xl\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .xl\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .xl\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .xl\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .xl\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .xl\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .xl\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .xl\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}

@media (prefers-color-scheme: dark){
  .dark\:u-container{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  @media (min-width: 450px){
    .dark\:u-container{
      max-width: 450px;
    }
  }

  @media (min-width: 600px){
    .dark\:u-container{
      max-width: 600px;
    }
  }

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

  @media (min-width: 900px){
    .dark\:u-container{
      max-width: 900px;
    }
  }

  @media (min-width: 1120px){
    .dark\:u-container{
      max-width: 1120px;
    }
  }

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

  .dark\:u-space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(4rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(6rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(7rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(8rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(9rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(10rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(11rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(12rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(13rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(14rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(15rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(16rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(18rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(20rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(24rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(1px * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u-space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(0px * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(0px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(0px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-1 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-3 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-6 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-7 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.25rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.25rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-9 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.25rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.25rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-10 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-2.75rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-2.75rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-11 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-2.75rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-2.75rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-12 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-3.5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-3.5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-14 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-3.5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-3.5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-4rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-4rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-16 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-4rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-4rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-5rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-5rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-20 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-5rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-5rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-6rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-6rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-24 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-6rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-6rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-7rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-7rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-28 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-7rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-7rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-8rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-8rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-32 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-8rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-8rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-9rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-9rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-36 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-9rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-9rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-10rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-10rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-40 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-10rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-10rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-11rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-11rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-44 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-11rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-11rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-12rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-12rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-48 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-12rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-12rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-13rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-13rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-52 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-13rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-13rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-14rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-14rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-56 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-14rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-14rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-15rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-15rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-60 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-15rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-15rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-16rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-16rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-64 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-16rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-16rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-18rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-18rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-72 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-18rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-18rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-20rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-20rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-80 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-20rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-20rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-24rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-24rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-96 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-24rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-24rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-1px * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-1px * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-px > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-1px * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-1px * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.125rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.125rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-0\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.125rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.125rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.375rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.375rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-1\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.375rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.375rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.625rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.625rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-2\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.625rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.625rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u--space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 0 !important;
    margin-top: calc(-0.875rem * calc(1 - var(--tw-space-y-reverse))) !important;
    margin-bottom: calc(-0.875rem * var(--tw-space-y-reverse)) !important;
  }

  .dark\:u--space-x-3\.5 > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 0 !important;
    margin-right: calc(-0.875rem * var(--tw-space-x-reverse)) !important;
    margin-left: calc(-0.875rem * calc(1 - var(--tw-space-x-reverse))) !important;
  }

  .dark\:u-space-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-y-reverse: 1 !important;
  }

  .dark\:u-space-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-space-x-reverse: 1 !important;
  }

  .dark\:u-divide-y-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(0px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(0px * var(--tw-divide-y-reverse)) !important;
  }

  .dark\:u-divide-x-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(0px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(0px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark\:u-divide-y-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(2px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(2px * var(--tw-divide-y-reverse)) !important;
  }

  .dark\:u-divide-x-2 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(2px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(2px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark\:u-divide-y-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(4px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(4px * var(--tw-divide-y-reverse)) !important;
  }

  .dark\:u-divide-x-4 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(4px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(4px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark\:u-divide-y-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(8px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(8px * var(--tw-divide-y-reverse)) !important;
  }

  .dark\:u-divide-x-8 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(8px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(8px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark\:u-divide-y > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 0 !important;
    border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse))) !important;
    border-bottom-width: calc(1px * var(--tw-divide-y-reverse)) !important;
  }

  .dark\:u-divide-x > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 0 !important;
    border-right-width: calc(1px * var(--tw-divide-x-reverse)) !important;
    border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse))) !important;
  }

  .dark\:u-divide-y-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-y-reverse: 1 !important;
  }

  .dark\:u-divide-x-reverse > :not([hidden]) ~ :not([hidden]){
    --tw-divide-x-reverse: 1 !important;
  }

  .dark\:u-divide-black > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-white > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-faded > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-transparent > :not([hidden]) ~ :not([hidden]){
    border-color: transparent !important;
  }

  .dark\:u-divide-neutral-1 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-15 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-45 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-neutral-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-primary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-secundary-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-success > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-danger > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-divide-opacity)) !important;
  }

  .dark\:u-divide-solid > :not([hidden]) ~ :not([hidden]){
    border-style: solid !important;
  }

  .dark\:u-divide-dashed > :not([hidden]) ~ :not([hidden]){
    border-style: dashed !important;
  }

  .dark\:u-divide-dotted > :not([hidden]) ~ :not([hidden]){
    border-style: dotted !important;
  }

  .dark\:u-divide-double > :not([hidden]) ~ :not([hidden]){
    border-style: double !important;
  }

  .dark\:u-divide-none > :not([hidden]) ~ :not([hidden]){
    border-style: none !important;
  }

  .dark\:u-divide-opacity-0 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0 !important;
  }

  .dark\:u-divide-opacity-5 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.05 !important;
  }

  .dark\:u-divide-opacity-10 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.1 !important;
  }

  .dark\:u-divide-opacity-20 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.2 !important;
  }

  .dark\:u-divide-opacity-25 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.25 !important;
  }

  .dark\:u-divide-opacity-30 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.3 !important;
  }

  .dark\:u-divide-opacity-40 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.4 !important;
  }

  .dark\:u-divide-opacity-50 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.5 !important;
  }

  .dark\:u-divide-opacity-60 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.6 !important;
  }

  .dark\:u-divide-opacity-70 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.7 !important;
  }

  .dark\:u-divide-opacity-75 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.75 !important;
  }

  .dark\:u-divide-opacity-80 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.8 !important;
  }

  .dark\:u-divide-opacity-90 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.9 !important;
  }

  .dark\:u-divide-opacity-95 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 0.95 !important;
  }

  .dark\:u-divide-opacity-100 > :not([hidden]) ~ :not([hidden]){
    --tw-divide-opacity: 1 !important;
  }

  .dark\:u-sr-only{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .dark\:u-not-sr-only{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .dark\:focus-within\:u-sr-only:focus-within{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .dark\:focus-within\:u-not-sr-only:focus-within{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .dark\:focus\:u-sr-only:focus{
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border-width: 0 !important;
  }

  .dark\:focus\:u-not-sr-only:focus{
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
  }

  .dark\:u-appearance-none{
    -webkit-appearance: none !important;
       -moz-appearance: none !important;
            appearance: none !important;
  }

  .dark\:u-bg-fixed{
    background-attachment: fixed !important;
  }

  .dark\:u-bg-local{
    background-attachment: local !important;
  }

  .dark\:u-bg-scroll{
    background-attachment: scroll !important;
  }

  .dark\:u-bg-clip-border{
    background-clip: border-box !important;
  }

  .dark\:u-bg-clip-padding{
    background-clip: padding-box !important;
  }

  .dark\:u-bg-clip-content{
    background-clip: content-box !important;
  }

  .dark\:u-bg-clip-text{
    -webkit-background-clip: text !important;
            background-clip: text !important;
  }

  .dark\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-transparent{
    background-color: transparent !important;
  }

  .dark\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-black{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-white{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-faded{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-transparent{
    background-color: transparent !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-1{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-15{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-45{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-neutral-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-primary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-0{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-10{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-20{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-30{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-40{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-50{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-secundary-60{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-success{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-danger{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-black:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-white:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-faded:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-transparent:focus-within{
    background-color: transparent !important;
  }

  .dark\:focus-within\:u-bg-neutral-1:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-15:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-45:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-neutral-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-primary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-0:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-10:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-20:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-30:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-40:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-50:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-secundary-60:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-success:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus-within\:u-bg-danger:focus-within{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-black:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-white:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-faded:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-transparent:hover{
    background-color: transparent !important;
  }

  .dark\:hover\:u-bg-neutral-1:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-15:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-45:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-neutral-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-primary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-0:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-10:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-20:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-30:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-40:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-50:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-secundary-60:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-success:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .dark\:hover\:u-bg-danger:hover{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-black:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-white:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-faded:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(129, 129, 129, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-transparent:focus{
    background-color: transparent !important;
  }

  .dark\:focus\:u-bg-neutral-1:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(255, 255, 255, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(247, 247, 247, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-15:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(242, 242, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(227, 227, 227, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(217, 217, 217, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(193, 193, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-45:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(73, 73, 73, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(45, 45, 45, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-neutral-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(0, 0, 0, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(250, 252, 254, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(190, 221, 242, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(131, 190, 230, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(72, 159, 218, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(37, 123, 181, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(28, 94, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-primary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(20, 65, 96, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-0:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(246, 252, 246, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-10:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(196, 234, 193, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-20:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(147, 215, 139, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-30:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(97, 197, 86, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-40:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(64, 158, 54, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-50:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(49, 120, 41, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-secundary-60:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(33, 82, 28, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-success:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(41, 106, 51, var(--tw-bg-opacity)) !important;
  }

  .dark\:focus\:u-bg-danger:focus{
    --tw-bg-opacity: 1 !important;
    background-color: rgba(253, 98, 98, var(--tw-bg-opacity)) !important;
  }

  .dark\:u-bg-none{
    background-image: none !important;
  }

  .dark\:u-bg-gradient-to-t{
    background-image: linear-gradient(to top, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-tr{
    background-image: linear-gradient(to top right, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-r{
    background-image: linear-gradient(to right, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-br{
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-b{
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-bl{
    background-image: linear-gradient(to bottom left, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-l{
    background-image: linear-gradient(to left, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-bg-gradient-to-tl{
    background-image: linear-gradient(to top left, var(--tw-gradient-stops)) !important;
  }

  .dark\:u-from-black{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:u-from-white{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:u-from-faded{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark\:u-from-transparent{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:u-from-neutral-1{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:u-from-neutral-10{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .dark\:u-from-neutral-15{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .dark\:u-from-neutral-20{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark\:u-from-neutral-30{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark\:u-from-neutral-40{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark\:u-from-neutral-45{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark\:u-from-neutral-50{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .dark\:u-from-neutral-60{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:u-from-primary-0{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .dark\:u-from-primary-10{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .dark\:u-from-primary-20{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .dark\:u-from-primary-30{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .dark\:u-from-primary-40{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .dark\:u-from-primary-50{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .dark\:u-from-primary-60{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .dark\:u-from-secundary-0{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .dark\:u-from-secundary-10{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .dark\:u-from-secundary-20{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .dark\:u-from-secundary-30{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .dark\:u-from-secundary-40{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .dark\:u-from-secundary-50{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .dark\:u-from-secundary-60{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .dark\:u-from-success{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .dark\:u-from-danger{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark\:u-via-black{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:u-via-white{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:u-via-faded{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark\:u-via-transparent{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:u-via-neutral-1{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:u-via-neutral-10{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .dark\:u-via-neutral-15{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .dark\:u-via-neutral-20{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark\:u-via-neutral-30{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark\:u-via-neutral-40{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark\:u-via-neutral-45{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark\:u-via-neutral-50{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .dark\:u-via-neutral-60{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:u-via-primary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .dark\:u-via-primary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .dark\:u-via-primary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .dark\:u-via-primary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .dark\:u-via-primary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .dark\:u-via-primary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .dark\:u-via-primary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .dark\:u-via-secundary-0{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .dark\:u-via-secundary-10{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .dark\:u-via-secundary-20{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .dark\:u-via-secundary-30{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .dark\:u-via-secundary-40{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .dark\:u-via-secundary-50{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .dark\:u-via-secundary-60{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .dark\:u-via-success{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .dark\:u-via-danger{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark\:u-to-black{
    --tw-gradient-to: #000 !important;
  }

  .dark\:u-to-white{
    --tw-gradient-to: #fff !important;
  }

  .dark\:u-to-faded{
    --tw-gradient-to: #818181 !important;
  }

  .dark\:u-to-transparent{
    --tw-gradient-to: transparent !important;
  }

  .dark\:u-to-neutral-1{
    --tw-gradient-to: #FFFFFF !important;
  }

  .dark\:u-to-neutral-10{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .dark\:u-to-neutral-15{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .dark\:u-to-neutral-20{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .dark\:u-to-neutral-30{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .dark\:u-to-neutral-40{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .dark\:u-to-neutral-45{
    --tw-gradient-to: #494949 !important;
  }

  .dark\:u-to-neutral-50{
    --tw-gradient-to: #2d2d2d !important;
  }

  .dark\:u-to-neutral-60{
    --tw-gradient-to: #000000 !important;
  }

  .dark\:u-to-primary-0{
    --tw-gradient-to: #FAFCFE !important;
  }

  .dark\:u-to-primary-10{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .dark\:u-to-primary-20{
    --tw-gradient-to: #83BEE6 !important;
  }

  .dark\:u-to-primary-30{
    --tw-gradient-to: #489FDA !important;
  }

  .dark\:u-to-primary-40{
    --tw-gradient-to: #257BB5 !important;
  }

  .dark\:u-to-primary-50{
    --tw-gradient-to: #1C5E8B !important;
  }

  .dark\:u-to-primary-60{
    --tw-gradient-to: #144160 !important;
  }

  .dark\:u-to-secundary-0{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .dark\:u-to-secundary-10{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .dark\:u-to-secundary-20{
    --tw-gradient-to: #93D78B !important;
  }

  .dark\:u-to-secundary-30{
    --tw-gradient-to: #61C556 !important;
  }

  .dark\:u-to-secundary-40{
    --tw-gradient-to: #409E36 !important;
  }

  .dark\:u-to-secundary-50{
    --tw-gradient-to: #317829 !important;
  }

  .dark\:u-to-secundary-60{
    --tw-gradient-to: #21521C !important;
  }

  .dark\:u-to-success{
    --tw-gradient-to: #296A33 !important;
  }

  .dark\:u-to-danger{
    --tw-gradient-to: #FD6262 !important;
  }

  .dark\:hover\:u-from-black:hover{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:hover\:u-from-white:hover{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:hover\:u-from-faded:hover{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark\:hover\:u-from-transparent:hover{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-1:hover{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-10:hover{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-15:hover{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-20:hover{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-30:hover{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-40:hover{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-45:hover{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-50:hover{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .dark\:hover\:u-from-neutral-60:hover{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:hover\:u-from-primary-0:hover{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .dark\:hover\:u-from-primary-10:hover{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .dark\:hover\:u-from-primary-20:hover{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .dark\:hover\:u-from-primary-30:hover{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .dark\:hover\:u-from-primary-40:hover{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .dark\:hover\:u-from-primary-50:hover{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .dark\:hover\:u-from-primary-60:hover{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-0:hover{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-10:hover{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-20:hover{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-30:hover{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-40:hover{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-50:hover{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .dark\:hover\:u-from-secundary-60:hover{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .dark\:hover\:u-from-success:hover{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .dark\:hover\:u-from-danger:hover{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark\:hover\:u-via-black:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:hover\:u-via-white:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:hover\:u-via-faded:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark\:hover\:u-via-transparent:hover{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-1:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-15:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-45:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .dark\:hover\:u-via-neutral-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:hover\:u-via-primary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .dark\:hover\:u-via-primary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .dark\:hover\:u-via-primary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .dark\:hover\:u-via-primary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .dark\:hover\:u-via-primary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .dark\:hover\:u-via-primary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .dark\:hover\:u-via-primary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-0:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-10:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-20:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-30:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-40:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-50:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .dark\:hover\:u-via-secundary-60:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .dark\:hover\:u-via-success:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .dark\:hover\:u-via-danger:hover{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark\:hover\:u-to-black:hover{
    --tw-gradient-to: #000 !important;
  }

  .dark\:hover\:u-to-white:hover{
    --tw-gradient-to: #fff !important;
  }

  .dark\:hover\:u-to-faded:hover{
    --tw-gradient-to: #818181 !important;
  }

  .dark\:hover\:u-to-transparent:hover{
    --tw-gradient-to: transparent !important;
  }

  .dark\:hover\:u-to-neutral-1:hover{
    --tw-gradient-to: #FFFFFF !important;
  }

  .dark\:hover\:u-to-neutral-10:hover{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .dark\:hover\:u-to-neutral-15:hover{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .dark\:hover\:u-to-neutral-20:hover{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .dark\:hover\:u-to-neutral-30:hover{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .dark\:hover\:u-to-neutral-40:hover{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .dark\:hover\:u-to-neutral-45:hover{
    --tw-gradient-to: #494949 !important;
  }

  .dark\:hover\:u-to-neutral-50:hover{
    --tw-gradient-to: #2d2d2d !important;
  }

  .dark\:hover\:u-to-neutral-60:hover{
    --tw-gradient-to: #000000 !important;
  }

  .dark\:hover\:u-to-primary-0:hover{
    --tw-gradient-to: #FAFCFE !important;
  }

  .dark\:hover\:u-to-primary-10:hover{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .dark\:hover\:u-to-primary-20:hover{
    --tw-gradient-to: #83BEE6 !important;
  }

  .dark\:hover\:u-to-primary-30:hover{
    --tw-gradient-to: #489FDA !important;
  }

  .dark\:hover\:u-to-primary-40:hover{
    --tw-gradient-to: #257BB5 !important;
  }

  .dark\:hover\:u-to-primary-50:hover{
    --tw-gradient-to: #1C5E8B !important;
  }

  .dark\:hover\:u-to-primary-60:hover{
    --tw-gradient-to: #144160 !important;
  }

  .dark\:hover\:u-to-secundary-0:hover{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .dark\:hover\:u-to-secundary-10:hover{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .dark\:hover\:u-to-secundary-20:hover{
    --tw-gradient-to: #93D78B !important;
  }

  .dark\:hover\:u-to-secundary-30:hover{
    --tw-gradient-to: #61C556 !important;
  }

  .dark\:hover\:u-to-secundary-40:hover{
    --tw-gradient-to: #409E36 !important;
  }

  .dark\:hover\:u-to-secundary-50:hover{
    --tw-gradient-to: #317829 !important;
  }

  .dark\:hover\:u-to-secundary-60:hover{
    --tw-gradient-to: #21521C !important;
  }

  .dark\:hover\:u-to-success:hover{
    --tw-gradient-to: #296A33 !important;
  }

  .dark\:hover\:u-to-danger:hover{
    --tw-gradient-to: #FD6262 !important;
  }

  .dark\:focus\:u-from-black:focus{
    --tw-gradient-from: #000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:focus\:u-from-white:focus{
    --tw-gradient-from: #fff !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:focus\:u-from-faded:focus{
    --tw-gradient-from: #818181 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark\:focus\:u-from-transparent:focus{
    --tw-gradient-from: transparent !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-1:focus{
    --tw-gradient-from: #FFFFFF !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-10:focus{
    --tw-gradient-from: #F7F7F7 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-15:focus{
    --tw-gradient-from: #F2F2F2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-20:focus{
    --tw-gradient-from: #e3e3e3 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-30:focus{
    --tw-gradient-from: #D9D9D9 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-40:focus{
    --tw-gradient-from: #C1C1C1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-45:focus{
    --tw-gradient-from: #494949 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-50:focus{
    --tw-gradient-from: #2d2d2d !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .dark\:focus\:u-from-neutral-60:focus{
    --tw-gradient-from: #000000 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:focus\:u-from-primary-0:focus{
    --tw-gradient-from: #FAFCFE !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .dark\:focus\:u-from-primary-10:focus{
    --tw-gradient-from: #BEDDF2 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .dark\:focus\:u-from-primary-20:focus{
    --tw-gradient-from: #83BEE6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .dark\:focus\:u-from-primary-30:focus{
    --tw-gradient-from: #489FDA !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .dark\:focus\:u-from-primary-40:focus{
    --tw-gradient-from: #257BB5 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .dark\:focus\:u-from-primary-50:focus{
    --tw-gradient-from: #1C5E8B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .dark\:focus\:u-from-primary-60:focus{
    --tw-gradient-from: #144160 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-0:focus{
    --tw-gradient-from: #F6FCF6 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-10:focus{
    --tw-gradient-from: #C4EAC1 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-20:focus{
    --tw-gradient-from: #93D78B !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-30:focus{
    --tw-gradient-from: #61C556 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-40:focus{
    --tw-gradient-from: #409E36 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-50:focus{
    --tw-gradient-from: #317829 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .dark\:focus\:u-from-secundary-60:focus{
    --tw-gradient-from: #21521C !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .dark\:focus\:u-from-success:focus{
    --tw-gradient-from: #296A33 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .dark\:focus\:u-from-danger:focus{
    --tw-gradient-from: #FD6262 !important;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark\:focus\:u-via-black:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:focus\:u-via-white:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #fff, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:focus\:u-via-faded:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #818181, var(--tw-gradient-to, rgba(129, 129, 129, 0)) !important;
  }

  .dark\:focus\:u-via-transparent:focus{
    --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-1:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FFFFFF, var(--tw-gradient-to, rgba(255, 255, 255, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F7F7F7, var(--tw-gradient-to, rgba(247, 247, 247, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-15:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F2F2F2, var(--tw-gradient-to, rgba(242, 242, 242, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #e3e3e3, var(--tw-gradient-to, rgba(227, 227, 227, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #D9D9D9, var(--tw-gradient-to, rgba(217, 217, 217, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C1C1C1, var(--tw-gradient-to, rgba(193, 193, 193, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-45:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #494949, var(--tw-gradient-to, rgba(73, 73, 73, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #2d2d2d, var(--tw-gradient-to, rgba(45, 45, 45, 0)) !important;
  }

  .dark\:focus\:u-via-neutral-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #000000, var(--tw-gradient-to, rgba(0, 0, 0, 0)) !important;
  }

  .dark\:focus\:u-via-primary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FAFCFE, var(--tw-gradient-to, rgba(250, 252, 254, 0)) !important;
  }

  .dark\:focus\:u-via-primary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #BEDDF2, var(--tw-gradient-to, rgba(190, 221, 242, 0)) !important;
  }

  .dark\:focus\:u-via-primary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #83BEE6, var(--tw-gradient-to, rgba(131, 190, 230, 0)) !important;
  }

  .dark\:focus\:u-via-primary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #489FDA, var(--tw-gradient-to, rgba(72, 159, 218, 0)) !important;
  }

  .dark\:focus\:u-via-primary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #257BB5, var(--tw-gradient-to, rgba(37, 123, 181, 0)) !important;
  }

  .dark\:focus\:u-via-primary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #1C5E8B, var(--tw-gradient-to, rgba(28, 94, 139, 0)) !important;
  }

  .dark\:focus\:u-via-primary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #144160, var(--tw-gradient-to, rgba(20, 65, 96, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-0:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #F6FCF6, var(--tw-gradient-to, rgba(246, 252, 246, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-10:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #C4EAC1, var(--tw-gradient-to, rgba(196, 234, 193, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-20:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #93D78B, var(--tw-gradient-to, rgba(147, 215, 139, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-30:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #61C556, var(--tw-gradient-to, rgba(97, 197, 86, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-40:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #409E36, var(--tw-gradient-to, rgba(64, 158, 54, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-50:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #317829, var(--tw-gradient-to, rgba(49, 120, 41, 0)) !important;
  }

  .dark\:focus\:u-via-secundary-60:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #21521C, var(--tw-gradient-to, rgba(33, 82, 28, 0)) !important;
  }

  .dark\:focus\:u-via-success:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #296A33, var(--tw-gradient-to, rgba(41, 106, 51, 0)) !important;
  }

  .dark\:focus\:u-via-danger:focus{
    --tw-gradient-stops: var(--tw-gradient-from), #FD6262, var(--tw-gradient-to, rgba(253, 98, 98, 0)) !important;
  }

  .dark\:focus\:u-to-black:focus{
    --tw-gradient-to: #000 !important;
  }

  .dark\:focus\:u-to-white:focus{
    --tw-gradient-to: #fff !important;
  }

  .dark\:focus\:u-to-faded:focus{
    --tw-gradient-to: #818181 !important;
  }

  .dark\:focus\:u-to-transparent:focus{
    --tw-gradient-to: transparent !important;
  }

  .dark\:focus\:u-to-neutral-1:focus{
    --tw-gradient-to: #FFFFFF !important;
  }

  .dark\:focus\:u-to-neutral-10:focus{
    --tw-gradient-to: #F7F7F7 !important;
  }

  .dark\:focus\:u-to-neutral-15:focus{
    --tw-gradient-to: #F2F2F2 !important;
  }

  .dark\:focus\:u-to-neutral-20:focus{
    --tw-gradient-to: #e3e3e3 !important;
  }

  .dark\:focus\:u-to-neutral-30:focus{
    --tw-gradient-to: #D9D9D9 !important;
  }

  .dark\:focus\:u-to-neutral-40:focus{
    --tw-gradient-to: #C1C1C1 !important;
  }

  .dark\:focus\:u-to-neutral-45:focus{
    --tw-gradient-to: #494949 !important;
  }

  .dark\:focus\:u-to-neutral-50:focus{
    --tw-gradient-to: #2d2d2d !important;
  }

  .dark\:focus\:u-to-neutral-60:focus{
    --tw-gradient-to: #000000 !important;
  }

  .dark\:focus\:u-to-primary-0:focus{
    --tw-gradient-to: #FAFCFE !important;
  }

  .dark\:focus\:u-to-primary-10:focus{
    --tw-gradient-to: #BEDDF2 !important;
  }

  .dark\:focus\:u-to-primary-20:focus{
    --tw-gradient-to: #83BEE6 !important;
  }

  .dark\:focus\:u-to-primary-30:focus{
    --tw-gradient-to: #489FDA !important;
  }

  .dark\:focus\:u-to-primary-40:focus{
    --tw-gradient-to: #257BB5 !important;
  }

  .dark\:focus\:u-to-primary-50:focus{
    --tw-gradient-to: #1C5E8B !important;
  }

  .dark\:focus\:u-to-primary-60:focus{
    --tw-gradient-to: #144160 !important;
  }

  .dark\:focus\:u-to-secundary-0:focus{
    --tw-gradient-to: #F6FCF6 !important;
  }

  .dark\:focus\:u-to-secundary-10:focus{
    --tw-gradient-to: #C4EAC1 !important;
  }

  .dark\:focus\:u-to-secundary-20:focus{
    --tw-gradient-to: #93D78B !important;
  }

  .dark\:focus\:u-to-secundary-30:focus{
    --tw-gradient-to: #61C556 !important;
  }

  .dark\:focus\:u-to-secundary-40:focus{
    --tw-gradient-to: #409E36 !important;
  }

  .dark\:focus\:u-to-secundary-50:focus{
    --tw-gradient-to: #317829 !important;
  }

  .dark\:focus\:u-to-secundary-60:focus{
    --tw-gradient-to: #21521C !important;
  }

  .dark\:focus\:u-to-success:focus{
    --tw-gradient-to: #296A33 !important;
  }

  .dark\:focus\:u-to-danger:focus{
    --tw-gradient-to: #FD6262 !important;
  }

  .dark\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .dark\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-0{
    --tw-bg-opacity: 0 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-5{
    --tw-bg-opacity: 0.05 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-10{
    --tw-bg-opacity: 0.1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-20{
    --tw-bg-opacity: 0.2 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-25{
    --tw-bg-opacity: 0.25 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-30{
    --tw-bg-opacity: 0.3 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-40{
    --tw-bg-opacity: 0.4 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-50{
    --tw-bg-opacity: 0.5 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-60{
    --tw-bg-opacity: 0.6 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-70{
    --tw-bg-opacity: 0.7 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-75{
    --tw-bg-opacity: 0.75 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-80{
    --tw-bg-opacity: 0.8 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-90{
    --tw-bg-opacity: 0.9 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-95{
    --tw-bg-opacity: 0.95 !important;
  }

  .u-group:hover .dark\:group-hover\:u-bg-opacity-100{
    --tw-bg-opacity: 1 !important;
  }

  .dark\:focus-within\:u-bg-opacity-0:focus-within{
    --tw-bg-opacity: 0 !important;
  }

  .dark\:focus-within\:u-bg-opacity-5:focus-within{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark\:focus-within\:u-bg-opacity-10:focus-within{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark\:focus-within\:u-bg-opacity-20:focus-within{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark\:focus-within\:u-bg-opacity-25:focus-within{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark\:focus-within\:u-bg-opacity-30:focus-within{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark\:focus-within\:u-bg-opacity-40:focus-within{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark\:focus-within\:u-bg-opacity-50:focus-within{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark\:focus-within\:u-bg-opacity-60:focus-within{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark\:focus-within\:u-bg-opacity-70:focus-within{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark\:focus-within\:u-bg-opacity-75:focus-within{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark\:focus-within\:u-bg-opacity-80:focus-within{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark\:focus-within\:u-bg-opacity-90:focus-within{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark\:focus-within\:u-bg-opacity-95:focus-within{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark\:focus-within\:u-bg-opacity-100:focus-within{
    --tw-bg-opacity: 1 !important;
  }

  .dark\:hover\:u-bg-opacity-0:hover{
    --tw-bg-opacity: 0 !important;
  }

  .dark\:hover\:u-bg-opacity-5:hover{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark\:hover\:u-bg-opacity-10:hover{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark\:hover\:u-bg-opacity-20:hover{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark\:hover\:u-bg-opacity-25:hover{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark\:hover\:u-bg-opacity-30:hover{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark\:hover\:u-bg-opacity-40:hover{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark\:hover\:u-bg-opacity-50:hover{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark\:hover\:u-bg-opacity-60:hover{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark\:hover\:u-bg-opacity-70:hover{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark\:hover\:u-bg-opacity-75:hover{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark\:hover\:u-bg-opacity-80:hover{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark\:hover\:u-bg-opacity-90:hover{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark\:hover\:u-bg-opacity-95:hover{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark\:hover\:u-bg-opacity-100:hover{
    --tw-bg-opacity: 1 !important;
  }

  .dark\:focus\:u-bg-opacity-0:focus{
    --tw-bg-opacity: 0 !important;
  }

  .dark\:focus\:u-bg-opacity-5:focus{
    --tw-bg-opacity: 0.05 !important;
  }

  .dark\:focus\:u-bg-opacity-10:focus{
    --tw-bg-opacity: 0.1 !important;
  }

  .dark\:focus\:u-bg-opacity-20:focus{
    --tw-bg-opacity: 0.2 !important;
  }

  .dark\:focus\:u-bg-opacity-25:focus{
    --tw-bg-opacity: 0.25 !important;
  }

  .dark\:focus\:u-bg-opacity-30:focus{
    --tw-bg-opacity: 0.3 !important;
  }

  .dark\:focus\:u-bg-opacity-40:focus{
    --tw-bg-opacity: 0.4 !important;
  }

  .dark\:focus\:u-bg-opacity-50:focus{
    --tw-bg-opacity: 0.5 !important;
  }

  .dark\:focus\:u-bg-opacity-60:focus{
    --tw-bg-opacity: 0.6 !important;
  }

  .dark\:focus\:u-bg-opacity-70:focus{
    --tw-bg-opacity: 0.7 !important;
  }

  .dark\:focus\:u-bg-opacity-75:focus{
    --tw-bg-opacity: 0.75 !important;
  }

  .dark\:focus\:u-bg-opacity-80:focus{
    --tw-bg-opacity: 0.8 !important;
  }

  .dark\:focus\:u-bg-opacity-90:focus{
    --tw-bg-opacity: 0.9 !important;
  }

  .dark\:focus\:u-bg-opacity-95:focus{
    --tw-bg-opacity: 0.95 !important;
  }

  .dark\:focus\:u-bg-opacity-100:focus{
    --tw-bg-opacity: 1 !important;
  }

  .dark\:u-bg-bottom{
    background-position: bottom !important;
  }

  .dark\:u-bg-center{
    background-position: center !important;
  }

  .dark\:u-bg-left{
    background-position: left !important;
  }

  .dark\:u-bg-left-bottom{
    background-position: left bottom !important;
  }

  .dark\:u-bg-left-top{
    background-position: left top !important;
  }

  .dark\:u-bg-right{
    background-position: right !important;
  }

  .dark\:u-bg-right-bottom{
    background-position: right bottom !important;
  }

  .dark\:u-bg-right-top{
    background-position: right top !important;
  }

  .dark\:u-bg-top{
    background-position: top !important;
  }

  .dark\:u-bg-repeat{
    background-repeat: repeat !important;
  }

  .dark\:u-bg-no-repeat{
    background-repeat: no-repeat !important;
  }

  .dark\:u-bg-repeat-x{
    background-repeat: repeat-x !important;
  }

  .dark\:u-bg-repeat-y{
    background-repeat: repeat-y !important;
  }

  .dark\:u-bg-repeat-round{
    background-repeat: round !important;
  }

  .dark\:u-bg-repeat-space{
    background-repeat: space !important;
  }

  .dark\:u-bg-auto{
    background-size: auto !important;
  }

  .dark\:u-bg-cover{
    background-size: cover !important;
  }

  .dark\:u-bg-contain{
    background-size: contain !important;
  }

  .dark\:u-bg-100\%{
    background-size: 100% auto !important;
  }

  .dark\:u-border-collapse{
    border-collapse: collapse !important;
  }

  .dark\:u-border-separate{
    border-collapse: separate !important;
  }

  .dark\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-transparent{
    border-color: transparent !important;
  }

  .dark\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-black{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-white{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-faded{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-transparent{
    border-color: transparent !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-1{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-15{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-45{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-neutral-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-primary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-0{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-10{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-20{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-30{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-40{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-50{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-secundary-60{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-success{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-danger{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-black:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-white:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-faded:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-transparent:focus-within{
    border-color: transparent !important;
  }

  .dark\:focus-within\:u-border-neutral-1:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-15:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-45:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-neutral-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-primary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-0:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-10:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-20:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-30:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-40:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-50:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-secundary-60:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-success:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .dark\:focus-within\:u-border-danger:focus-within{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-black:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-white:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-faded:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-transparent:hover{
    border-color: transparent !important;
  }

  .dark\:hover\:u-border-neutral-1:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-15:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-45:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-neutral-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-primary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-0:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-10:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-20:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-30:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-40:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-50:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-secundary-60:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-success:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .dark\:hover\:u-border-danger:hover{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-black:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-white:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-faded:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(129, 129, 129, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-transparent:focus{
    border-color: transparent !important;
  }

  .dark\:focus\:u-border-neutral-1:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(255, 255, 255, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(247, 247, 247, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-15:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(242, 242, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(227, 227, 227, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(217, 217, 217, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(193, 193, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-45:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(73, 73, 73, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(45, 45, 45, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-neutral-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(0, 0, 0, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(250, 252, 254, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(190, 221, 242, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(131, 190, 230, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(72, 159, 218, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(37, 123, 181, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(28, 94, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-primary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(20, 65, 96, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-0:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(246, 252, 246, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-10:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(196, 234, 193, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-20:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(147, 215, 139, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-30:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(97, 197, 86, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-40:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(64, 158, 54, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-50:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(49, 120, 41, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-secundary-60:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(33, 82, 28, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-success:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(41, 106, 51, var(--tw-border-opacity)) !important;
  }

  .dark\:focus\:u-border-danger:focus{
    --tw-border-opacity: 1 !important;
    border-color: rgba(253, 98, 98, var(--tw-border-opacity)) !important;
  }

  .dark\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .dark\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .dark\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .dark\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .dark\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .dark\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .dark\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .dark\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .dark\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .dark\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .dark\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .dark\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .dark\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .dark\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .dark\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-0{
    --tw-border-opacity: 0 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-5{
    --tw-border-opacity: 0.05 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-10{
    --tw-border-opacity: 0.1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-20{
    --tw-border-opacity: 0.2 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-25{
    --tw-border-opacity: 0.25 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-30{
    --tw-border-opacity: 0.3 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-40{
    --tw-border-opacity: 0.4 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-50{
    --tw-border-opacity: 0.5 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-60{
    --tw-border-opacity: 0.6 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-70{
    --tw-border-opacity: 0.7 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-75{
    --tw-border-opacity: 0.75 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-80{
    --tw-border-opacity: 0.8 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-90{
    --tw-border-opacity: 0.9 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-95{
    --tw-border-opacity: 0.95 !important;
  }

  .u-group:hover .dark\:group-hover\:u-border-opacity-100{
    --tw-border-opacity: 1 !important;
  }

  .dark\:focus-within\:u-border-opacity-0:focus-within{
    --tw-border-opacity: 0 !important;
  }

  .dark\:focus-within\:u-border-opacity-5:focus-within{
    --tw-border-opacity: 0.05 !important;
  }

  .dark\:focus-within\:u-border-opacity-10:focus-within{
    --tw-border-opacity: 0.1 !important;
  }

  .dark\:focus-within\:u-border-opacity-20:focus-within{
    --tw-border-opacity: 0.2 !important;
  }

  .dark\:focus-within\:u-border-opacity-25:focus-within{
    --tw-border-opacity: 0.25 !important;
  }

  .dark\:focus-within\:u-border-opacity-30:focus-within{
    --tw-border-opacity: 0.3 !important;
  }

  .dark\:focus-within\:u-border-opacity-40:focus-within{
    --tw-border-opacity: 0.4 !important;
  }

  .dark\:focus-within\:u-border-opacity-50:focus-within{
    --tw-border-opacity: 0.5 !important;
  }

  .dark\:focus-within\:u-border-opacity-60:focus-within{
    --tw-border-opacity: 0.6 !important;
  }

  .dark\:focus-within\:u-border-opacity-70:focus-within{
    --tw-border-opacity: 0.7 !important;
  }

  .dark\:focus-within\:u-border-opacity-75:focus-within{
    --tw-border-opacity: 0.75 !important;
  }

  .dark\:focus-within\:u-border-opacity-80:focus-within{
    --tw-border-opacity: 0.8 !important;
  }

  .dark\:focus-within\:u-border-opacity-90:focus-within{
    --tw-border-opacity: 0.9 !important;
  }

  .dark\:focus-within\:u-border-opacity-95:focus-within{
    --tw-border-opacity: 0.95 !important;
  }

  .dark\:focus-within\:u-border-opacity-100:focus-within{
    --tw-border-opacity: 1 !important;
  }

  .dark\:hover\:u-border-opacity-0:hover{
    --tw-border-opacity: 0 !important;
  }

  .dark\:hover\:u-border-opacity-5:hover{
    --tw-border-opacity: 0.05 !important;
  }

  .dark\:hover\:u-border-opacity-10:hover{
    --tw-border-opacity: 0.1 !important;
  }

  .dark\:hover\:u-border-opacity-20:hover{
    --tw-border-opacity: 0.2 !important;
  }

  .dark\:hover\:u-border-opacity-25:hover{
    --tw-border-opacity: 0.25 !important;
  }

  .dark\:hover\:u-border-opacity-30:hover{
    --tw-border-opacity: 0.3 !important;
  }

  .dark\:hover\:u-border-opacity-40:hover{
    --tw-border-opacity: 0.4 !important;
  }

  .dark\:hover\:u-border-opacity-50:hover{
    --tw-border-opacity: 0.5 !important;
  }

  .dark\:hover\:u-border-opacity-60:hover{
    --tw-border-opacity: 0.6 !important;
  }

  .dark\:hover\:u-border-opacity-70:hover{
    --tw-border-opacity: 0.7 !important;
  }

  .dark\:hover\:u-border-opacity-75:hover{
    --tw-border-opacity: 0.75 !important;
  }

  .dark\:hover\:u-border-opacity-80:hover{
    --tw-border-opacity: 0.8 !important;
  }

  .dark\:hover\:u-border-opacity-90:hover{
    --tw-border-opacity: 0.9 !important;
  }

  .dark\:hover\:u-border-opacity-95:hover{
    --tw-border-opacity: 0.95 !important;
  }

  .dark\:hover\:u-border-opacity-100:hover{
    --tw-border-opacity: 1 !important;
  }

  .dark\:focus\:u-border-opacity-0:focus{
    --tw-border-opacity: 0 !important;
  }

  .dark\:focus\:u-border-opacity-5:focus{
    --tw-border-opacity: 0.05 !important;
  }

  .dark\:focus\:u-border-opacity-10:focus{
    --tw-border-opacity: 0.1 !important;
  }

  .dark\:focus\:u-border-opacity-20:focus{
    --tw-border-opacity: 0.2 !important;
  }

  .dark\:focus\:u-border-opacity-25:focus{
    --tw-border-opacity: 0.25 !important;
  }

  .dark\:focus\:u-border-opacity-30:focus{
    --tw-border-opacity: 0.3 !important;
  }

  .dark\:focus\:u-border-opacity-40:focus{
    --tw-border-opacity: 0.4 !important;
  }

  .dark\:focus\:u-border-opacity-50:focus{
    --tw-border-opacity: 0.5 !important;
  }

  .dark\:focus\:u-border-opacity-60:focus{
    --tw-border-opacity: 0.6 !important;
  }

  .dark\:focus\:u-border-opacity-70:focus{
    --tw-border-opacity: 0.7 !important;
  }

  .dark\:focus\:u-border-opacity-75:focus{
    --tw-border-opacity: 0.75 !important;
  }

  .dark\:focus\:u-border-opacity-80:focus{
    --tw-border-opacity: 0.8 !important;
  }

  .dark\:focus\:u-border-opacity-90:focus{
    --tw-border-opacity: 0.9 !important;
  }

  .dark\:focus\:u-border-opacity-95:focus{
    --tw-border-opacity: 0.95 !important;
  }

  .dark\:focus\:u-border-opacity-100:focus{
    --tw-border-opacity: 1 !important;
  }

  .dark\:u-rounded-none{
    border-radius: 0 !important;
  }

  .dark\:u-rounded-sm{
    border-radius: 0.125rem !important;
  }

  .dark\:u-rounded-default{
    border-radius: 0.25rem !important;
  }

  .dark\:u-rounded-md{
    border-radius: 0.375rem !important;
  }

  .dark\:u-rounded-lg{
    border-radius: 4rem !important;
  }

  .dark\:u-rounded-full{
    border-radius: 9999px !important;
  }

  .dark\:u-rounded-t-none{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
  }

  .dark\:u-rounded-r-none{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .dark\:u-rounded-b-none{
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .dark\:u-rounded-l-none{
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  .dark\:u-rounded-t-sm{
    border-top-left-radius: 0.125rem !important;
    border-top-right-radius: 0.125rem !important;
  }

  .dark\:u-rounded-r-sm{
    border-top-right-radius: 0.125rem !important;
    border-bottom-right-radius: 0.125rem !important;
  }

  .dark\:u-rounded-b-sm{
    border-bottom-right-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .dark\:u-rounded-l-sm{
    border-top-left-radius: 0.125rem !important;
    border-bottom-left-radius: 0.125rem !important;
  }

  .dark\:u-rounded-t-default{
    border-top-left-radius: 0.25rem !important;
    border-top-right-radius: 0.25rem !important;
  }

  .dark\:u-rounded-r-default{
    border-top-right-radius: 0.25rem !important;
    border-bottom-right-radius: 0.25rem !important;
  }

  .dark\:u-rounded-b-default{
    border-bottom-right-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .dark\:u-rounded-l-default{
    border-top-left-radius: 0.25rem !important;
    border-bottom-left-radius: 0.25rem !important;
  }

  .dark\:u-rounded-t-md{
    border-top-left-radius: 0.375rem !important;
    border-top-right-radius: 0.375rem !important;
  }

  .dark\:u-rounded-r-md{
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
  }

  .dark\:u-rounded-b-md{
    border-bottom-right-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .dark\:u-rounded-l-md{
    border-top-left-radius: 0.375rem !important;
    border-bottom-left-radius: 0.375rem !important;
  }

  .dark\:u-rounded-t-lg{
    border-top-left-radius: 4rem !important;
    border-top-right-radius: 4rem !important;
  }

  .dark\:u-rounded-r-lg{
    border-top-right-radius: 4rem !important;
    border-bottom-right-radius: 4rem !important;
  }

  .dark\:u-rounded-b-lg{
    border-bottom-right-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .dark\:u-rounded-l-lg{
    border-top-left-radius: 4rem !important;
    border-bottom-left-radius: 4rem !important;
  }

  .dark\:u-rounded-t-full{
    border-top-left-radius: 9999px !important;
    border-top-right-radius: 9999px !important;
  }

  .dark\:u-rounded-r-full{
    border-top-right-radius: 9999px !important;
    border-bottom-right-radius: 9999px !important;
  }

  .dark\:u-rounded-b-full{
    border-bottom-right-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .dark\:u-rounded-l-full{
    border-top-left-radius: 9999px !important;
    border-bottom-left-radius: 9999px !important;
  }

  .dark\:u-rounded-tl-none{
    border-top-left-radius: 0 !important;
  }

  .dark\:u-rounded-tr-none{
    border-top-right-radius: 0 !important;
  }

  .dark\:u-rounded-br-none{
    border-bottom-right-radius: 0 !important;
  }

  .dark\:u-rounded-bl-none{
    border-bottom-left-radius: 0 !important;
  }

  .dark\:u-rounded-tl-sm{
    border-top-left-radius: 0.125rem !important;
  }

  .dark\:u-rounded-tr-sm{
    border-top-right-radius: 0.125rem !important;
  }

  .dark\:u-rounded-br-sm{
    border-bottom-right-radius: 0.125rem !important;
  }

  .dark\:u-rounded-bl-sm{
    border-bottom-left-radius: 0.125rem !important;
  }

  .dark\:u-rounded-tl-default{
    border-top-left-radius: 0.25rem !important;
  }

  .dark\:u-rounded-tr-default{
    border-top-right-radius: 0.25rem !important;
  }

  .dark\:u-rounded-br-default{
    border-bottom-right-radius: 0.25rem !important;
  }

  .dark\:u-rounded-bl-default{
    border-bottom-left-radius: 0.25rem !important;
  }

  .dark\:u-rounded-tl-md{
    border-top-left-radius: 0.375rem !important;
  }

  .dark\:u-rounded-tr-md{
    border-top-right-radius: 0.375rem !important;
  }

  .dark\:u-rounded-br-md{
    border-bottom-right-radius: 0.375rem !important;
  }

  .dark\:u-rounded-bl-md{
    border-bottom-left-radius: 0.375rem !important;
  }

  .dark\:u-rounded-tl-lg{
    border-top-left-radius: 4rem !important;
  }

  .dark\:u-rounded-tr-lg{
    border-top-right-radius: 4rem !important;
  }

  .dark\:u-rounded-br-lg{
    border-bottom-right-radius: 4rem !important;
  }

  .dark\:u-rounded-bl-lg{
    border-bottom-left-radius: 4rem !important;
  }

  .dark\:u-rounded-tl-full{
    border-top-left-radius: 9999px !important;
  }

  .dark\:u-rounded-tr-full{
    border-top-right-radius: 9999px !important;
  }

  .dark\:u-rounded-br-full{
    border-bottom-right-radius: 9999px !important;
  }

  .dark\:u-rounded-bl-full{
    border-bottom-left-radius: 9999px !important;
  }

  .dark\:u-border-solid{
    border-style: solid !important;
  }

  .dark\:u-border-dashed{
    border-style: dashed !important;
  }

  .dark\:u-border-dotted{
    border-style: dotted !important;
  }

  .dark\:u-border-double{
    border-style: double !important;
  }

  .dark\:u-border-none{
    border-style: none !important;
  }

  .dark\:u-border-0{
    border-width: 0px !important;
  }

  .dark\:u-border-2{
    border-width: 2px !important;
  }

  .dark\:u-border-4{
    border-width: 4px !important;
  }

  .dark\:u-border-8{
    border-width: 8px !important;
  }

  .dark\:u-border{
    border-width: 1px !important;
  }

  .dark\:u-border-t-0{
    border-top-width: 0px !important;
  }

  .dark\:u-border-r-0{
    border-right-width: 0px !important;
  }

  .dark\:u-border-b-0{
    border-bottom-width: 0px !important;
  }

  .dark\:u-border-l-0{
    border-left-width: 0px !important;
  }

  .dark\:u-border-t-2{
    border-top-width: 2px !important;
  }

  .dark\:u-border-r-2{
    border-right-width: 2px !important;
  }

  .dark\:u-border-b-2{
    border-bottom-width: 2px !important;
  }

  .dark\:u-border-l-2{
    border-left-width: 2px !important;
  }

  .dark\:u-border-t-4{
    border-top-width: 4px !important;
  }

  .dark\:u-border-r-4{
    border-right-width: 4px !important;
  }

  .dark\:u-border-b-4{
    border-bottom-width: 4px !important;
  }

  .dark\:u-border-l-4{
    border-left-width: 4px !important;
  }

  .dark\:u-border-t-8{
    border-top-width: 8px !important;
  }

  .dark\:u-border-r-8{
    border-right-width: 8px !important;
  }

  .dark\:u-border-b-8{
    border-bottom-width: 8px !important;
  }

  .dark\:u-border-l-8{
    border-left-width: 8px !important;
  }

  .dark\:u-border-t{
    border-top-width: 1px !important;
  }

  .dark\:u-border-r{
    border-right-width: 1px !important;
  }

  .dark\:u-border-b{
    border-bottom-width: 1px !important;
  }

  .dark\:u-border-l{
    border-left-width: 1px !important;
  }

  .dark\:u-box-border{
    box-sizing: border-box !important;
  }

  .dark\:u-box-content{
    box-sizing: content-box !important;
  }

  .dark\:u-cursor-auto{
    cursor: auto !important;
  }

  .dark\:u-cursor-default{
    cursor: default !important;
  }

  .dark\:u-cursor-pointer{
    cursor: pointer !important;
  }

  .dark\:u-cursor-wait{
    cursor: wait !important;
  }

  .dark\:u-cursor-text{
    cursor: text !important;
  }

  .dark\:u-cursor-move{
    cursor: move !important;
  }

  .dark\:u-cursor-help{
    cursor: help !important;
  }

  .dark\:u-cursor-not-allowed{
    cursor: not-allowed !important;
  }

  .dark\:u-block{
    display: block !important;
  }

  .dark\:u-inline-block{
    display: inline-block !important;
  }

  .dark\:u-inline{
    display: inline !important;
  }

  .dark\:u-flex{
    display: flex !important;
  }

  .dark\:u-inline-flex{
    display: inline-flex !important;
  }

  .dark\:u-table{
    display: table !important;
  }

  .dark\:u-table-caption{
    display: table-caption !important;
  }

  .dark\:u-table-cell{
    display: table-cell !important;
  }

  .dark\:u-table-column{
    display: table-column !important;
  }

  .dark\:u-table-column-group{
    display: table-column-group !important;
  }

  .dark\:u-table-footer-group{
    display: table-footer-group !important;
  }

  .dark\:u-table-header-group{
    display: table-header-group !important;
  }

  .dark\:u-table-row-group{
    display: table-row-group !important;
  }

  .dark\:u-table-row{
    display: table-row !important;
  }

  .dark\:u-flow-root{
    display: flow-root !important;
  }

  .dark\:u-grid{
    display: grid !important;
  }

  .dark\:u-inline-grid{
    display: inline-grid !important;
  }

  .dark\:u-contents{
    display: contents !important;
  }

  .dark\:u-hidden{
    display: none !important;
  }

  .dark\:u-flex-row{
    flex-direction: row !important;
  }

  .dark\:u-flex-row-reverse{
    flex-direction: row-reverse !important;
  }

  .dark\:u-flex-col{
    flex-direction: column !important;
  }

  .dark\:u-flex-col-reverse{
    flex-direction: column-reverse !important;
  }

  .dark\:u-flex-wrap{
    flex-wrap: wrap !important;
  }

  .dark\:u-flex-wrap-reverse{
    flex-wrap: wrap-reverse !important;
  }

  .dark\:u-flex-nowrap{
    flex-wrap: nowrap !important;
  }

  .dark\:u-place-items-auto{
    place-items: auto !important;
  }

  .dark\:u-place-items-start{
    place-items: start !important;
  }

  .dark\:u-place-items-end{
    place-items: end !important;
  }

  .dark\:u-place-items-center{
    place-items: center !important;
  }

  .dark\:u-place-items-stretch{
    place-items: stretch !important;
  }

  .dark\:u-place-content-center{
    place-content: center !important;
  }

  .dark\:u-place-content-start{
    place-content: start !important;
  }

  .dark\:u-place-content-end{
    place-content: end !important;
  }

  .dark\:u-place-content-between{
    place-content: space-between !important;
  }

  .dark\:u-place-content-around{
    place-content: space-around !important;
  }

  .dark\:u-place-content-evenly{
    place-content: space-evenly !important;
  }

  .dark\:u-place-content-stretch{
    place-content: stretch !important;
  }

  .dark\:u-place-self-auto{
    place-self: auto !important;
  }

  .dark\:u-place-self-start{
    place-self: start !important;
  }

  .dark\:u-place-self-end{
    place-self: end !important;
  }

  .dark\:u-place-self-center{
    place-self: center !important;
  }

  .dark\:u-place-self-stretch{
    place-self: stretch !important;
  }

  .dark\:u-items-start{
    align-items: flex-start !important;
  }

  .dark\:u-items-end{
    align-items: flex-end !important;
  }

  .dark\:u-items-center{
    align-items: center !important;
  }

  .dark\:u-items-baseline{
    align-items: baseline !important;
  }

  .dark\:u-items-stretch{
    align-items: stretch !important;
  }

  .dark\:u-content-center{
    align-content: center !important;
  }

  .dark\:u-content-start{
    align-content: flex-start !important;
  }

  .dark\:u-content-end{
    align-content: flex-end !important;
  }

  .dark\:u-content-between{
    align-content: space-between !important;
  }

  .dark\:u-content-around{
    align-content: space-around !important;
  }

  .dark\:u-content-evenly{
    align-content: space-evenly !important;
  }

  .dark\:u-self-auto{
    align-self: auto !important;
  }

  .dark\:u-self-start{
    align-self: flex-start !important;
  }

  .dark\:u-self-end{
    align-self: flex-end !important;
  }

  .dark\:u-self-center{
    align-self: center !important;
  }

  .dark\:u-self-stretch{
    align-self: stretch !important;
  }

  .dark\:u-justify-items-auto{
    justify-items: auto !important;
  }

  .dark\:u-justify-items-start{
    justify-items: start !important;
  }

  .dark\:u-justify-items-end{
    justify-items: end !important;
  }

  .dark\:u-justify-items-center{
    justify-items: center !important;
  }

  .dark\:u-justify-items-stretch{
    justify-items: stretch !important;
  }

  .dark\:u-justify-start{
    justify-content: flex-start !important;
  }

  .dark\:u-justify-end{
    justify-content: flex-end !important;
  }

  .dark\:u-justify-center{
    justify-content: center !important;
  }

  .dark\:u-justify-between{
    justify-content: space-between !important;
  }

  .dark\:u-justify-around{
    justify-content: space-around !important;
  }

  .dark\:u-justify-evenly{
    justify-content: space-evenly !important;
  }

  .dark\:u-justify-self-auto{
    justify-self: auto !important;
  }

  .dark\:u-justify-self-start{
    justify-self: start !important;
  }

  .dark\:u-justify-self-end{
    justify-self: end !important;
  }

  .dark\:u-justify-self-center{
    justify-self: center !important;
  }

  .dark\:u-justify-self-stretch{
    justify-self: stretch !important;
  }

  .dark\:u-flex-1{
    flex: 1 1 0% !important;
  }

  .dark\:u-flex-auto{
    flex: 1 1 auto !important;
  }

  .dark\:u-flex-initial{
    flex: 0 1 auto !important;
  }

  .dark\:u-flex-horizontal{
    flex: 1 0 320px !important;
  }

  .dark\:u-flex-none{
    flex: none !important;
  }

  .dark\:u-flex-grow-0{
    flex-grow: 0 !important;
  }

  .dark\:u-flex-grow{
    flex-grow: 1 !important;
  }

  .dark\:u-flex-shrink-0{
    flex-shrink: 0 !important;
  }

  .dark\:u-flex-shrink{
    flex-shrink: 1 !important;
  }

  .dark\:u-order-1{
    order: 1 !important;
  }

  .dark\:u-order-2{
    order: 2 !important;
  }

  .dark\:u-order-3{
    order: 3 !important;
  }

  .dark\:u-order-4{
    order: 4 !important;
  }

  .dark\:u-order-5{
    order: 5 !important;
  }

  .dark\:u-order-6{
    order: 6 !important;
  }

  .dark\:u-order-7{
    order: 7 !important;
  }

  .dark\:u-order-8{
    order: 8 !important;
  }

  .dark\:u-order-9{
    order: 9 !important;
  }

  .dark\:u-order-10{
    order: 10 !important;
  }

  .dark\:u-order-11{
    order: 11 !important;
  }

  .dark\:u-order-12{
    order: 12 !important;
  }

  .dark\:u-order-first{
    order: -9999 !important;
  }

  .dark\:u-order-last{
    order: 9999 !important;
  }

  .dark\:u-order-none{
    order: 0 !important;
  }

  .dark\:u-float-right{
    float: right !important;
  }

  .dark\:u-float-left{
    float: left !important;
  }

  .dark\:u-float-none{
    float: none !important;
  }

  .dark\:u-clear-left{
    clear: left !important;
  }

  .dark\:u-clear-right{
    clear: right !important;
  }

  .dark\:u-clear-both{
    clear: both !important;
  }

  .dark\:u-clear-none{
    clear: none !important;
  }

  .dark\:u-font-body{
    font-family: Raleway, sans-serif !important;
  }

  .dark\:u-font-heading{
    font-family: Raleway, serif !important;
  }

  .dark\:u-font-thin{
    font-weight: 100 !important;
  }

  .dark\:u-font-extralight{
    font-weight: 200 !important;
  }

  .dark\:u-font-light{
    font-weight: 300 !important;
  }

  .dark\:u-font-normal{
    font-weight: 400 !important;
  }

  .dark\:u-font-medium{
    font-weight: 500 !important;
  }

  .dark\:u-font-semibold{
    font-weight: 600 !important;
  }

  .dark\:u-font-bold{
    font-weight: 700 !important;
  }

  .dark\:u-font-extrabold{
    font-weight: 800 !important;
  }

  .dark\:u-font-black{
    font-weight: 900 !important;
  }

  .dark\:u-h-0{
    height: 0px !important;
  }

  .dark\:u-h-1{
    height: 0.25rem !important;
  }

  .dark\:u-h-2{
    height: 0.5rem !important;
  }

  .dark\:u-h-3{
    height: 0.75rem !important;
  }

  .dark\:u-h-4{
    height: 1rem !important;
  }

  .dark\:u-h-5{
    height: 1.25rem !important;
  }

  .dark\:u-h-6{
    height: 1.5rem !important;
  }

  .dark\:u-h-7{
    height: 1.75rem !important;
  }

  .dark\:u-h-8{
    height: 2rem !important;
  }

  .dark\:u-h-9{
    height: 2.25rem !important;
  }

  .dark\:u-h-10{
    height: 2.5rem !important;
  }

  .dark\:u-h-11{
    height: 2.75rem !important;
  }

  .dark\:u-h-12{
    height: 3rem !important;
  }

  .dark\:u-h-14{
    height: 3.5rem !important;
  }

  .dark\:u-h-16{
    height: 4rem !important;
  }

  .dark\:u-h-20{
    height: 5rem !important;
  }

  .dark\:u-h-24{
    height: 6rem !important;
  }

  .dark\:u-h-28{
    height: 7rem !important;
  }

  .dark\:u-h-32{
    height: 8rem !important;
  }

  .dark\:u-h-36{
    height: 9rem !important;
  }

  .dark\:u-h-40{
    height: 10rem !important;
  }

  .dark\:u-h-44{
    height: 11rem !important;
  }

  .dark\:u-h-48{
    height: 12rem !important;
  }

  .dark\:u-h-52{
    height: 13rem !important;
  }

  .dark\:u-h-56{
    height: 14rem !important;
  }

  .dark\:u-h-60{
    height: 15rem !important;
  }

  .dark\:u-h-64{
    height: 16rem !important;
  }

  .dark\:u-h-72{
    height: 18rem !important;
  }

  .dark\:u-h-80{
    height: 20rem !important;
  }

  .dark\:u-h-96{
    height: 24rem !important;
  }

  .dark\:u-h-auto{
    height: auto !important;
  }

  .dark\:u-h-px{
    height: 1px !important;
  }

  .dark\:u-h-0\.5{
    height: 0.125rem !important;
  }

  .dark\:u-h-1\.5{
    height: 0.375rem !important;
  }

  .dark\:u-h-2\.5{
    height: 0.625rem !important;
  }

  .dark\:u-h-3\.5{
    height: 0.875rem !important;
  }

  .dark\:u-h-1\/2{
    height: 50% !important;
  }

  .dark\:u-h-1\/3{
    height: 33.333333% !important;
  }

  .dark\:u-h-2\/3{
    height: 66.666667% !important;
  }

  .dark\:u-h-1\/4{
    height: 25% !important;
  }

  .dark\:u-h-2\/4{
    height: 50% !important;
  }

  .dark\:u-h-3\/4{
    height: 75% !important;
  }

  .dark\:u-h-1\/5{
    height: 20% !important;
  }

  .dark\:u-h-2\/5{
    height: 40% !important;
  }

  .dark\:u-h-3\/5{
    height: 60% !important;
  }

  .dark\:u-h-4\/5{
    height: 80% !important;
  }

  .dark\:u-h-1\/6{
    height: 16.666667% !important;
  }

  .dark\:u-h-2\/6{
    height: 33.333333% !important;
  }

  .dark\:u-h-3\/6{
    height: 50% !important;
  }

  .dark\:u-h-4\/6{
    height: 66.666667% !important;
  }

  .dark\:u-h-5\/6{
    height: 83.333333% !important;
  }

  .dark\:u-h-full{
    height: 100% !important;
  }

  .dark\:u-h-screen{
    height: 100vh !important;
  }

  .dark\:u-text-xs{
    font-size: 0.75rem !important;
  }

  .dark\:u-text-sm{
    font-size: 0.875rem !important;
  }

  .dark\:u-text-base{
    font-size: 1rem !important;
  }

  .dark\:u-text-lg{
    font-size: 1.125rem !important;
  }

  .dark\:u-text-xl{
    font-size: 1.25rem !important;
  }

  .dark\:u-text-2xl{
    font-size: 1.5rem !important;
  }

  .dark\:u-text-3xl{
    font-size: 1.875rem !important;
  }

  .dark\:u-text-4xl{
    font-size: 2.25rem !important;
  }

  .dark\:u-text-5xl{
    font-size: 3rem !important;
  }

  .dark\:u-text-6xl{
    font-size: 4rem !important;
  }

  .dark\:u-text-7xl{
    font-size: 5rem !important;
  }

  .dark\:u-text-8xl{
    font-size: 5.5rem !important;
  }

  .dark\:u-leading-3{
    line-height: .75rem !important;
  }

  .dark\:u-leading-4{
    line-height: 1rem !important;
  }

  .dark\:u-leading-5{
    line-height: 1.25rem !important;
  }

  .dark\:u-leading-6{
    line-height: 1.5rem !important;
  }

  .dark\:u-leading-7{
    line-height: 1.75rem !important;
  }

  .dark\:u-leading-8{
    line-height: 2rem !important;
  }

  .dark\:u-leading-9{
    line-height: 2.25rem !important;
  }

  .dark\:u-leading-10{
    line-height: 2.5rem !important;
  }

  .dark\:u-leading-none{
    line-height: 1 !important;
  }

  .dark\:u-leading-tight{
    line-height: 1.25 !important;
  }

  .dark\:u-leading-snug{
    line-height: 1.375 !important;
  }

  .dark\:u-leading-normal{
    line-height: 1.75 !important;
  }

  .dark\:u-leading-relaxed{
    line-height: 1.85 !important;
  }

  .dark\:u-leading-loose{
    line-height: 2 !important;
  }

  .dark\:u-list-inside{
    list-style-position: inside !important;
  }

  .dark\:u-list-outside{
    list-style-position: outside !important;
  }

  .dark\:u-list-none{
    list-style-type: none !important;
  }

  .dark\:u-list-disc{
    list-style-type: disc !important;
  }

  .dark\:u-list-decimal{
    list-style-type: decimal !important;
  }

  .dark\:u-m-0{
    margin: 0px !important;
  }

  .dark\:u-m-1{
    margin: 0.25rem !important;
  }

  .dark\:u-m-2{
    margin: 0.5rem !important;
  }

  .dark\:u-m-3{
    margin: 0.75rem !important;
  }

  .dark\:u-m-4{
    margin: 1rem !important;
  }

  .dark\:u-m-5{
    margin: 1.25rem !important;
  }

  .dark\:u-m-6{
    margin: 1.5rem !important;
  }

  .dark\:u-m-7{
    margin: 1.75rem !important;
  }

  .dark\:u-m-8{
    margin: 2rem !important;
  }

  .dark\:u-m-9{
    margin: 2.25rem !important;
  }

  .dark\:u-m-10{
    margin: 2.5rem !important;
  }

  .dark\:u-m-11{
    margin: 2.75rem !important;
  }

  .dark\:u-m-12{
    margin: 3rem !important;
  }

  .dark\:u-m-14{
    margin: 3.5rem !important;
  }

  .dark\:u-m-16{
    margin: 4rem !important;
  }

  .dark\:u-m-20{
    margin: 5rem !important;
  }

  .dark\:u-m-24{
    margin: 6rem !important;
  }

  .dark\:u-m-28{
    margin: 7rem !important;
  }

  .dark\:u-m-32{
    margin: 8rem !important;
  }

  .dark\:u-m-36{
    margin: 9rem !important;
  }

  .dark\:u-m-40{
    margin: 10rem !important;
  }

  .dark\:u-m-44{
    margin: 11rem !important;
  }

  .dark\:u-m-48{
    margin: 12rem !important;
  }

  .dark\:u-m-52{
    margin: 13rem !important;
  }

  .dark\:u-m-56{
    margin: 14rem !important;
  }

  .dark\:u-m-60{
    margin: 15rem !important;
  }

  .dark\:u-m-64{
    margin: 16rem !important;
  }

  .dark\:u-m-72{
    margin: 18rem !important;
  }

  .dark\:u-m-80{
    margin: 20rem !important;
  }

  .dark\:u-m-96{
    margin: 24rem !important;
  }

  .dark\:u-m-auto{
    margin: auto !important;
  }

  .dark\:u-m-px{
    margin: 1px !important;
  }

  .dark\:u-m-0\.5{
    margin: 0.125rem !important;
  }

  .dark\:u-m-1\.5{
    margin: 0.375rem !important;
  }

  .dark\:u-m-2\.5{
    margin: 0.625rem !important;
  }

  .dark\:u-m-3\.5{
    margin: 0.875rem !important;
  }

  .dark\:u--m-0{
    margin: 0px !important;
  }

  .dark\:u--m-1{
    margin: -0.25rem !important;
  }

  .dark\:u--m-2{
    margin: -0.5rem !important;
  }

  .dark\:u--m-3{
    margin: -0.75rem !important;
  }

  .dark\:u--m-4{
    margin: -1rem !important;
  }

  .dark\:u--m-5{
    margin: -1.25rem !important;
  }

  .dark\:u--m-6{
    margin: -1.5rem !important;
  }

  .dark\:u--m-7{
    margin: -1.75rem !important;
  }

  .dark\:u--m-8{
    margin: -2rem !important;
  }

  .dark\:u--m-9{
    margin: -2.25rem !important;
  }

  .dark\:u--m-10{
    margin: -2.5rem !important;
  }

  .dark\:u--m-11{
    margin: -2.75rem !important;
  }

  .dark\:u--m-12{
    margin: -3rem !important;
  }

  .dark\:u--m-14{
    margin: -3.5rem !important;
  }

  .dark\:u--m-16{
    margin: -4rem !important;
  }

  .dark\:u--m-20{
    margin: -5rem !important;
  }

  .dark\:u--m-24{
    margin: -6rem !important;
  }

  .dark\:u--m-28{
    margin: -7rem !important;
  }

  .dark\:u--m-32{
    margin: -8rem !important;
  }

  .dark\:u--m-36{
    margin: -9rem !important;
  }

  .dark\:u--m-40{
    margin: -10rem !important;
  }

  .dark\:u--m-44{
    margin: -11rem !important;
  }

  .dark\:u--m-48{
    margin: -12rem !important;
  }

  .dark\:u--m-52{
    margin: -13rem !important;
  }

  .dark\:u--m-56{
    margin: -14rem !important;
  }

  .dark\:u--m-60{
    margin: -15rem !important;
  }

  .dark\:u--m-64{
    margin: -16rem !important;
  }

  .dark\:u--m-72{
    margin: -18rem !important;
  }

  .dark\:u--m-80{
    margin: -20rem !important;
  }

  .dark\:u--m-96{
    margin: -24rem !important;
  }

  .dark\:u--m-px{
    margin: -1px !important;
  }

  .dark\:u--m-0\.5{
    margin: -0.125rem !important;
  }

  .dark\:u--m-1\.5{
    margin: -0.375rem !important;
  }

  .dark\:u--m-2\.5{
    margin: -0.625rem !important;
  }

  .dark\:u--m-3\.5{
    margin: -0.875rem !important;
  }

  .dark\:u-m-full{
    margin: 100% !important;
  }

  .dark\:u-my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .dark\:u-mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .dark\:u-my-1{
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .dark\:u-mx-1{
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .dark\:u-my-2{
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .dark\:u-mx-2{
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .dark\:u-my-3{
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .dark\:u-mx-3{
    margin-left: 0.75rem !important;
    margin-right: 0.75rem !important;
  }

  .dark\:u-my-4{
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .dark\:u-mx-4{
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .dark\:u-my-5{
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .dark\:u-mx-5{
    margin-left: 1.25rem !important;
    margin-right: 1.25rem !important;
  }

  .dark\:u-my-6{
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .dark\:u-mx-6{
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .dark\:u-my-7{
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .dark\:u-mx-7{
    margin-left: 1.75rem !important;
    margin-right: 1.75rem !important;
  }

  .dark\:u-my-8{
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .dark\:u-mx-8{
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }

  .dark\:u-my-9{
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .dark\:u-mx-9{
    margin-left: 2.25rem !important;
    margin-right: 2.25rem !important;
  }

  .dark\:u-my-10{
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .dark\:u-mx-10{
    margin-left: 2.5rem !important;
    margin-right: 2.5rem !important;
  }

  .dark\:u-my-11{
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .dark\:u-mx-11{
    margin-left: 2.75rem !important;
    margin-right: 2.75rem !important;
  }

  .dark\:u-my-12{
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .dark\:u-mx-12{
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .dark\:u-my-14{
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .dark\:u-mx-14{
    margin-left: 3.5rem !important;
    margin-right: 3.5rem !important;
  }

  .dark\:u-my-16{
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .dark\:u-mx-16{
    margin-left: 4rem !important;
    margin-right: 4rem !important;
  }

  .dark\:u-my-20{
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .dark\:u-mx-20{
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .dark\:u-my-24{
    margin-top: 6rem !important;
    margin-bottom: 6rem !important;
  }

  .dark\:u-mx-24{
    margin-left: 6rem !important;
    margin-right: 6rem !important;
  }

  .dark\:u-my-28{
    margin-top: 7rem !important;
    margin-bottom: 7rem !important;
  }

  .dark\:u-mx-28{
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .dark\:u-my-32{
    margin-top: 8rem !important;
    margin-bottom: 8rem !important;
  }

  .dark\:u-mx-32{
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .dark\:u-my-36{
    margin-top: 9rem !important;
    margin-bottom: 9rem !important;
  }

  .dark\:u-mx-36{
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .dark\:u-my-40{
    margin-top: 10rem !important;
    margin-bottom: 10rem !important;
  }

  .dark\:u-mx-40{
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .dark\:u-my-44{
    margin-top: 11rem !important;
    margin-bottom: 11rem !important;
  }

  .dark\:u-mx-44{
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .dark\:u-my-48{
    margin-top: 12rem !important;
    margin-bottom: 12rem !important;
  }

  .dark\:u-mx-48{
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .dark\:u-my-52{
    margin-top: 13rem !important;
    margin-bottom: 13rem !important;
  }

  .dark\:u-mx-52{
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .dark\:u-my-56{
    margin-top: 14rem !important;
    margin-bottom: 14rem !important;
  }

  .dark\:u-mx-56{
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .dark\:u-my-60{
    margin-top: 15rem !important;
    margin-bottom: 15rem !important;
  }

  .dark\:u-mx-60{
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .dark\:u-my-64{
    margin-top: 16rem !important;
    margin-bottom: 16rem !important;
  }

  .dark\:u-mx-64{
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .dark\:u-my-72{
    margin-top: 18rem !important;
    margin-bottom: 18rem !important;
  }

  .dark\:u-mx-72{
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .dark\:u-my-80{
    margin-top: 20rem !important;
    margin-bottom: 20rem !important;
  }

  .dark\:u-mx-80{
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .dark\:u-my-96{
    margin-top: 24rem !important;
    margin-bottom: 24rem !important;
  }

  .dark\:u-mx-96{
    margin-left: 24rem !important;
    margin-right: 24rem !important;
  }

  .dark\:u-my-auto{
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .dark\:u-mx-auto{
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dark\:u-my-px{
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .dark\:u-mx-px{
    margin-left: 1px !important;
    margin-right: 1px !important;
  }

  .dark\:u-my-0\.5{
    margin-top: 0.125rem !important;
    margin-bottom: 0.125rem !important;
  }

  .dark\:u-mx-0\.5{
    margin-left: 0.125rem !important;
    margin-right: 0.125rem !important;
  }

  .dark\:u-my-1\.5{
    margin-top: 0.375rem !important;
    margin-bottom: 0.375rem !important;
  }

  .dark\:u-mx-1\.5{
    margin-left: 0.375rem !important;
    margin-right: 0.375rem !important;
  }

  .dark\:u-my-2\.5{
    margin-top: 0.625rem !important;
    margin-bottom: 0.625rem !important;
  }

  .dark\:u-mx-2\.5{
    margin-left: 0.625rem !important;
    margin-right: 0.625rem !important;
  }

  .dark\:u-my-3\.5{
    margin-top: 0.875rem !important;
    margin-bottom: 0.875rem !important;
  }

  .dark\:u-mx-3\.5{
    margin-left: 0.875rem !important;
    margin-right: 0.875rem !important;
  }

  .dark\:u--my-0{
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }

  .dark\:u--mx-0{
    margin-left: 0px !important;
    margin-right: 0px !important;
  }

  .dark\:u--my-1{
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .dark\:u--mx-1{
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .dark\:u--my-2{
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .dark\:u--mx-2{
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .dark\:u--my-3{
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .dark\:u--mx-3{
    margin-left: -0.75rem !important;
    margin-right: -0.75rem !important;
  }

  .dark\:u--my-4{
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .dark\:u--mx-4{
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .dark\:u--my-5{
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .dark\:u--mx-5{
    margin-left: -1.25rem !important;
    margin-right: -1.25rem !important;
  }

  .dark\:u--my-6{
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .dark\:u--mx-6{
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .dark\:u--my-7{
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .dark\:u--mx-7{
    margin-left: -1.75rem !important;
    margin-right: -1.75rem !important;
  }

  .dark\:u--my-8{
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .dark\:u--mx-8{
    margin-left: -2rem !important;
    margin-right: -2rem !important;
  }

  .dark\:u--my-9{
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .dark\:u--mx-9{
    margin-left: -2.25rem !important;
    margin-right: -2.25rem !important;
  }

  .dark\:u--my-10{
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .dark\:u--mx-10{
    margin-left: -2.5rem !important;
    margin-right: -2.5rem !important;
  }

  .dark\:u--my-11{
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .dark\:u--mx-11{
    margin-left: -2.75rem !important;
    margin-right: -2.75rem !important;
  }

  .dark\:u--my-12{
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .dark\:u--mx-12{
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .dark\:u--my-14{
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .dark\:u--mx-14{
    margin-left: -3.5rem !important;
    margin-right: -3.5rem !important;
  }

  .dark\:u--my-16{
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .dark\:u--mx-16{
    margin-left: -4rem !important;
    margin-right: -4rem !important;
  }

  .dark\:u--my-20{
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .dark\:u--mx-20{
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .dark\:u--my-24{
    margin-top: -6rem !important;
    margin-bottom: -6rem !important;
  }

  .dark\:u--mx-24{
    margin-left: -6rem !important;
    margin-right: -6rem !important;
  }

  .dark\:u--my-28{
    margin-top: -7rem !important;
    margin-bottom: -7rem !important;
  }

  .dark\:u--mx-28{
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .dark\:u--my-32{
    margin-top: -8rem !important;
    margin-bottom: -8rem !important;
  }

  .dark\:u--mx-32{
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .dark\:u--my-36{
    margin-top: -9rem !important;
    margin-bottom: -9rem !important;
  }

  .dark\:u--mx-36{
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .dark\:u--my-40{
    margin-top: -10rem !important;
    margin-bottom: -10rem !important;
  }

  .dark\:u--mx-40{
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .dark\:u--my-44{
    margin-top: -11rem !important;
    margin-bottom: -11rem !important;
  }

  .dark\:u--mx-44{
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .dark\:u--my-48{
    margin-top: -12rem !important;
    margin-bottom: -12rem !important;
  }

  .dark\:u--mx-48{
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .dark\:u--my-52{
    margin-top: -13rem !important;
    margin-bottom: -13rem !important;
  }

  .dark\:u--mx-52{
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .dark\:u--my-56{
    margin-top: -14rem !important;
    margin-bottom: -14rem !important;
  }

  .dark\:u--mx-56{
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .dark\:u--my-60{
    margin-top: -15rem !important;
    margin-bottom: -15rem !important;
  }

  .dark\:u--mx-60{
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .dark\:u--my-64{
    margin-top: -16rem !important;
    margin-bottom: -16rem !important;
  }

  .dark\:u--mx-64{
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .dark\:u--my-72{
    margin-top: -18rem !important;
    margin-bottom: -18rem !important;
  }

  .dark\:u--mx-72{
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .dark\:u--my-80{
    margin-top: -20rem !important;
    margin-bottom: -20rem !important;
  }

  .dark\:u--mx-80{
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .dark\:u--my-96{
    margin-top: -24rem !important;
    margin-bottom: -24rem !important;
  }

  .dark\:u--mx-96{
    margin-left: -24rem !important;
    margin-right: -24rem !important;
  }

  .dark\:u--my-px{
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .dark\:u--mx-px{
    margin-left: -1px !important;
    margin-right: -1px !important;
  }

  .dark\:u--my-0\.5{
    margin-top: -0.125rem !important;
    margin-bottom: -0.125rem !important;
  }

  .dark\:u--mx-0\.5{
    margin-left: -0.125rem !important;
    margin-right: -0.125rem !important;
  }

  .dark\:u--my-1\.5{
    margin-top: -0.375rem !important;
    margin-bottom: -0.375rem !important;
  }

  .dark\:u--mx-1\.5{
    margin-left: -0.375rem !important;
    margin-right: -0.375rem !important;
  }

  .dark\:u--my-2\.5{
    margin-top: -0.625rem !important;
    margin-bottom: -0.625rem !important;
  }

  .dark\:u--mx-2\.5{
    margin-left: -0.625rem !important;
    margin-right: -0.625rem !important;
  }

  .dark\:u--my-3\.5{
    margin-top: -0.875rem !important;
    margin-bottom: -0.875rem !important;
  }

  .dark\:u--mx-3\.5{
    margin-left: -0.875rem !important;
    margin-right: -0.875rem !important;
  }

  .dark\:u-my-full{
    margin-top: 100% !important;
    margin-bottom: 100% !important;
  }

  .dark\:u-mx-full{
    margin-left: 100% !important;
    margin-right: 100% !important;
  }

  .dark\:u-mt-0{
    margin-top: 0px !important;
  }

  .dark\:u-mr-0{
    margin-right: 0px !important;
  }

  .dark\:u-mb-0{
    margin-bottom: 0px !important;
  }

  .dark\:u-ml-0{
    margin-left: 0px !important;
  }

  .dark\:u-mt-1{
    margin-top: 0.25rem !important;
  }

  .dark\:u-mr-1{
    margin-right: 0.25rem !important;
  }

  .dark\:u-mb-1{
    margin-bottom: 0.25rem !important;
  }

  .dark\:u-ml-1{
    margin-left: 0.25rem !important;
  }

  .dark\:u-mt-2{
    margin-top: 0.5rem !important;
  }

  .dark\:u-mr-2{
    margin-right: 0.5rem !important;
  }

  .dark\:u-mb-2{
    margin-bottom: 0.5rem !important;
  }

  .dark\:u-ml-2{
    margin-left: 0.5rem !important;
  }

  .dark\:u-mt-3{
    margin-top: 0.75rem !important;
  }

  .dark\:u-mr-3{
    margin-right: 0.75rem !important;
  }

  .dark\:u-mb-3{
    margin-bottom: 0.75rem !important;
  }

  .dark\:u-ml-3{
    margin-left: 0.75rem !important;
  }

  .dark\:u-mt-4{
    margin-top: 1rem !important;
  }

  .dark\:u-mr-4{
    margin-right: 1rem !important;
  }

  .dark\:u-mb-4{
    margin-bottom: 1rem !important;
  }

  .dark\:u-ml-4{
    margin-left: 1rem !important;
  }

  .dark\:u-mt-5{
    margin-top: 1.25rem !important;
  }

  .dark\:u-mr-5{
    margin-right: 1.25rem !important;
  }

  .dark\:u-mb-5{
    margin-bottom: 1.25rem !important;
  }

  .dark\:u-ml-5{
    margin-left: 1.25rem !important;
  }

  .dark\:u-mt-6{
    margin-top: 1.5rem !important;
  }

  .dark\:u-mr-6{
    margin-right: 1.5rem !important;
  }

  .dark\:u-mb-6{
    margin-bottom: 1.5rem !important;
  }

  .dark\:u-ml-6{
    margin-left: 1.5rem !important;
  }

  .dark\:u-mt-7{
    margin-top: 1.75rem !important;
  }

  .dark\:u-mr-7{
    margin-right: 1.75rem !important;
  }

  .dark\:u-mb-7{
    margin-bottom: 1.75rem !important;
  }

  .dark\:u-ml-7{
    margin-left: 1.75rem !important;
  }

  .dark\:u-mt-8{
    margin-top: 2rem !important;
  }

  .dark\:u-mr-8{
    margin-right: 2rem !important;
  }

  .dark\:u-mb-8{
    margin-bottom: 2rem !important;
  }

  .dark\:u-ml-8{
    margin-left: 2rem !important;
  }

  .dark\:u-mt-9{
    margin-top: 2.25rem !important;
  }

  .dark\:u-mr-9{
    margin-right: 2.25rem !important;
  }

  .dark\:u-mb-9{
    margin-bottom: 2.25rem !important;
  }

  .dark\:u-ml-9{
    margin-left: 2.25rem !important;
  }

  .dark\:u-mt-10{
    margin-top: 2.5rem !important;
  }

  .dark\:u-mr-10{
    margin-right: 2.5rem !important;
  }

  .dark\:u-mb-10{
    margin-bottom: 2.5rem !important;
  }

  .dark\:u-ml-10{
    margin-left: 2.5rem !important;
  }

  .dark\:u-mt-11{
    margin-top: 2.75rem !important;
  }

  .dark\:u-mr-11{
    margin-right: 2.75rem !important;
  }

  .dark\:u-mb-11{
    margin-bottom: 2.75rem !important;
  }

  .dark\:u-ml-11{
    margin-left: 2.75rem !important;
  }

  .dark\:u-mt-12{
    margin-top: 3rem !important;
  }

  .dark\:u-mr-12{
    margin-right: 3rem !important;
  }

  .dark\:u-mb-12{
    margin-bottom: 3rem !important;
  }

  .dark\:u-ml-12{
    margin-left: 3rem !important;
  }

  .dark\:u-mt-14{
    margin-top: 3.5rem !important;
  }

  .dark\:u-mr-14{
    margin-right: 3.5rem !important;
  }

  .dark\:u-mb-14{
    margin-bottom: 3.5rem !important;
  }

  .dark\:u-ml-14{
    margin-left: 3.5rem !important;
  }

  .dark\:u-mt-16{
    margin-top: 4rem !important;
  }

  .dark\:u-mr-16{
    margin-right: 4rem !important;
  }

  .dark\:u-mb-16{
    margin-bottom: 4rem !important;
  }

  .dark\:u-ml-16{
    margin-left: 4rem !important;
  }

  .dark\:u-mt-20{
    margin-top: 5rem !important;
  }

  .dark\:u-mr-20{
    margin-right: 5rem !important;
  }

  .dark\:u-mb-20{
    margin-bottom: 5rem !important;
  }

  .dark\:u-ml-20{
    margin-left: 5rem !important;
  }

  .dark\:u-mt-24{
    margin-top: 6rem !important;
  }

  .dark\:u-mr-24{
    margin-right: 6rem !important;
  }

  .dark\:u-mb-24{
    margin-bottom: 6rem !important;
  }

  .dark\:u-ml-24{
    margin-left: 6rem !important;
  }

  .dark\:u-mt-28{
    margin-top: 7rem !important;
  }

  .dark\:u-mr-28{
    margin-right: 7rem !important;
  }

  .dark\:u-mb-28{
    margin-bottom: 7rem !important;
  }

  .dark\:u-ml-28{
    margin-left: 7rem !important;
  }

  .dark\:u-mt-32{
    margin-top: 8rem !important;
  }

  .dark\:u-mr-32{
    margin-right: 8rem !important;
  }

  .dark\:u-mb-32{
    margin-bottom: 8rem !important;
  }

  .dark\:u-ml-32{
    margin-left: 8rem !important;
  }

  .dark\:u-mt-36{
    margin-top: 9rem !important;
  }

  .dark\:u-mr-36{
    margin-right: 9rem !important;
  }

  .dark\:u-mb-36{
    margin-bottom: 9rem !important;
  }

  .dark\:u-ml-36{
    margin-left: 9rem !important;
  }

  .dark\:u-mt-40{
    margin-top: 10rem !important;
  }

  .dark\:u-mr-40{
    margin-right: 10rem !important;
  }

  .dark\:u-mb-40{
    margin-bottom: 10rem !important;
  }

  .dark\:u-ml-40{
    margin-left: 10rem !important;
  }

  .dark\:u-mt-44{
    margin-top: 11rem !important;
  }

  .dark\:u-mr-44{
    margin-right: 11rem !important;
  }

  .dark\:u-mb-44{
    margin-bottom: 11rem !important;
  }

  .dark\:u-ml-44{
    margin-left: 11rem !important;
  }

  .dark\:u-mt-48{
    margin-top: 12rem !important;
  }

  .dark\:u-mr-48{
    margin-right: 12rem !important;
  }

  .dark\:u-mb-48{
    margin-bottom: 12rem !important;
  }

  .dark\:u-ml-48{
    margin-left: 12rem !important;
  }

  .dark\:u-mt-52{
    margin-top: 13rem !important;
  }

  .dark\:u-mr-52{
    margin-right: 13rem !important;
  }

  .dark\:u-mb-52{
    margin-bottom: 13rem !important;
  }

  .dark\:u-ml-52{
    margin-left: 13rem !important;
  }

  .dark\:u-mt-56{
    margin-top: 14rem !important;
  }

  .dark\:u-mr-56{
    margin-right: 14rem !important;
  }

  .dark\:u-mb-56{
    margin-bottom: 14rem !important;
  }

  .dark\:u-ml-56{
    margin-left: 14rem !important;
  }

  .dark\:u-mt-60{
    margin-top: 15rem !important;
  }

  .dark\:u-mr-60{
    margin-right: 15rem !important;
  }

  .dark\:u-mb-60{
    margin-bottom: 15rem !important;
  }

  .dark\:u-ml-60{
    margin-left: 15rem !important;
  }

  .dark\:u-mt-64{
    margin-top: 16rem !important;
  }

  .dark\:u-mr-64{
    margin-right: 16rem !important;
  }

  .dark\:u-mb-64{
    margin-bottom: 16rem !important;
  }

  .dark\:u-ml-64{
    margin-left: 16rem !important;
  }

  .dark\:u-mt-72{
    margin-top: 18rem !important;
  }

  .dark\:u-mr-72{
    margin-right: 18rem !important;
  }

  .dark\:u-mb-72{
    margin-bottom: 18rem !important;
  }

  .dark\:u-ml-72{
    margin-left: 18rem !important;
  }

  .dark\:u-mt-80{
    margin-top: 20rem !important;
  }

  .dark\:u-mr-80{
    margin-right: 20rem !important;
  }

  .dark\:u-mb-80{
    margin-bottom: 20rem !important;
  }

  .dark\:u-ml-80{
    margin-left: 20rem !important;
  }

  .dark\:u-mt-96{
    margin-top: 24rem !important;
  }

  .dark\:u-mr-96{
    margin-right: 24rem !important;
  }

  .dark\:u-mb-96{
    margin-bottom: 24rem !important;
  }

  .dark\:u-ml-96{
    margin-left: 24rem !important;
  }

  .dark\:u-mt-auto{
    margin-top: auto !important;
  }

  .dark\:u-mr-auto{
    margin-right: auto !important;
  }

  .dark\:u-mb-auto{
    margin-bottom: auto !important;
  }

  .dark\:u-ml-auto{
    margin-left: auto !important;
  }

  .dark\:u-mt-px{
    margin-top: 1px !important;
  }

  .dark\:u-mr-px{
    margin-right: 1px !important;
  }

  .dark\:u-mb-px{
    margin-bottom: 1px !important;
  }

  .dark\:u-ml-px{
    margin-left: 1px !important;
  }

  .dark\:u-mt-0\.5{
    margin-top: 0.125rem !important;
  }

  .dark\:u-mr-0\.5{
    margin-right: 0.125rem !important;
  }

  .dark\:u-mb-0\.5{
    margin-bottom: 0.125rem !important;
  }

  .dark\:u-ml-0\.5{
    margin-left: 0.125rem !important;
  }

  .dark\:u-mt-1\.5{
    margin-top: 0.375rem !important;
  }

  .dark\:u-mr-1\.5{
    margin-right: 0.375rem !important;
  }

  .dark\:u-mb-1\.5{
    margin-bottom: 0.375rem !important;
  }

  .dark\:u-ml-1\.5{
    margin-left: 0.375rem !important;
  }

  .dark\:u-mt-2\.5{
    margin-top: 0.625rem !important;
  }

  .dark\:u-mr-2\.5{
    margin-right: 0.625rem !important;
  }

  .dark\:u-mb-2\.5{
    margin-bottom: 0.625rem !important;
  }

  .dark\:u-ml-2\.5{
    margin-left: 0.625rem !important;
  }

  .dark\:u-mt-3\.5{
    margin-top: 0.875rem !important;
  }

  .dark\:u-mr-3\.5{
    margin-right: 0.875rem !important;
  }

  .dark\:u-mb-3\.5{
    margin-bottom: 0.875rem !important;
  }

  .dark\:u-ml-3\.5{
    margin-left: 0.875rem !important;
  }

  .dark\:u--mt-0{
    margin-top: 0px !important;
  }

  .dark\:u--mr-0{
    margin-right: 0px !important;
  }

  .dark\:u--mb-0{
    margin-bottom: 0px !important;
  }

  .dark\:u--ml-0{
    margin-left: 0px !important;
  }

  .dark\:u--mt-1{
    margin-top: -0.25rem !important;
  }

  .dark\:u--mr-1{
    margin-right: -0.25rem !important;
  }

  .dark\:u--mb-1{
    margin-bottom: -0.25rem !important;
  }

  .dark\:u--ml-1{
    margin-left: -0.25rem !important;
  }

  .dark\:u--mt-2{
    margin-top: -0.5rem !important;
  }

  .dark\:u--mr-2{
    margin-right: -0.5rem !important;
  }

  .dark\:u--mb-2{
    margin-bottom: -0.5rem !important;
  }

  .dark\:u--ml-2{
    margin-left: -0.5rem !important;
  }

  .dark\:u--mt-3{
    margin-top: -0.75rem !important;
  }

  .dark\:u--mr-3{
    margin-right: -0.75rem !important;
  }

  .dark\:u--mb-3{
    margin-bottom: -0.75rem !important;
  }

  .dark\:u--ml-3{
    margin-left: -0.75rem !important;
  }

  .dark\:u--mt-4{
    margin-top: -1rem !important;
  }

  .dark\:u--mr-4{
    margin-right: -1rem !important;
  }

  .dark\:u--mb-4{
    margin-bottom: -1rem !important;
  }

  .dark\:u--ml-4{
    margin-left: -1rem !important;
  }

  .dark\:u--mt-5{
    margin-top: -1.25rem !important;
  }

  .dark\:u--mr-5{
    margin-right: -1.25rem !important;
  }

  .dark\:u--mb-5{
    margin-bottom: -1.25rem !important;
  }

  .dark\:u--ml-5{
    margin-left: -1.25rem !important;
  }

  .dark\:u--mt-6{
    margin-top: -1.5rem !important;
  }

  .dark\:u--mr-6{
    margin-right: -1.5rem !important;
  }

  .dark\:u--mb-6{
    margin-bottom: -1.5rem !important;
  }

  .dark\:u--ml-6{
    margin-left: -1.5rem !important;
  }

  .dark\:u--mt-7{
    margin-top: -1.75rem !important;
  }

  .dark\:u--mr-7{
    margin-right: -1.75rem !important;
  }

  .dark\:u--mb-7{
    margin-bottom: -1.75rem !important;
  }

  .dark\:u--ml-7{
    margin-left: -1.75rem !important;
  }

  .dark\:u--mt-8{
    margin-top: -2rem !important;
  }

  .dark\:u--mr-8{
    margin-right: -2rem !important;
  }

  .dark\:u--mb-8{
    margin-bottom: -2rem !important;
  }

  .dark\:u--ml-8{
    margin-left: -2rem !important;
  }

  .dark\:u--mt-9{
    margin-top: -2.25rem !important;
  }

  .dark\:u--mr-9{
    margin-right: -2.25rem !important;
  }

  .dark\:u--mb-9{
    margin-bottom: -2.25rem !important;
  }

  .dark\:u--ml-9{
    margin-left: -2.25rem !important;
  }

  .dark\:u--mt-10{
    margin-top: -2.5rem !important;
  }

  .dark\:u--mr-10{
    margin-right: -2.5rem !important;
  }

  .dark\:u--mb-10{
    margin-bottom: -2.5rem !important;
  }

  .dark\:u--ml-10{
    margin-left: -2.5rem !important;
  }

  .dark\:u--mt-11{
    margin-top: -2.75rem !important;
  }

  .dark\:u--mr-11{
    margin-right: -2.75rem !important;
  }

  .dark\:u--mb-11{
    margin-bottom: -2.75rem !important;
  }

  .dark\:u--ml-11{
    margin-left: -2.75rem !important;
  }

  .dark\:u--mt-12{
    margin-top: -3rem !important;
  }

  .dark\:u--mr-12{
    margin-right: -3rem !important;
  }

  .dark\:u--mb-12{
    margin-bottom: -3rem !important;
  }

  .dark\:u--ml-12{
    margin-left: -3rem !important;
  }

  .dark\:u--mt-14{
    margin-top: -3.5rem !important;
  }

  .dark\:u--mr-14{
    margin-right: -3.5rem !important;
  }

  .dark\:u--mb-14{
    margin-bottom: -3.5rem !important;
  }

  .dark\:u--ml-14{
    margin-left: -3.5rem !important;
  }

  .dark\:u--mt-16{
    margin-top: -4rem !important;
  }

  .dark\:u--mr-16{
    margin-right: -4rem !important;
  }

  .dark\:u--mb-16{
    margin-bottom: -4rem !important;
  }

  .dark\:u--ml-16{
    margin-left: -4rem !important;
  }

  .dark\:u--mt-20{
    margin-top: -5rem !important;
  }

  .dark\:u--mr-20{
    margin-right: -5rem !important;
  }

  .dark\:u--mb-20{
    margin-bottom: -5rem !important;
  }

  .dark\:u--ml-20{
    margin-left: -5rem !important;
  }

  .dark\:u--mt-24{
    margin-top: -6rem !important;
  }

  .dark\:u--mr-24{
    margin-right: -6rem !important;
  }

  .dark\:u--mb-24{
    margin-bottom: -6rem !important;
  }

  .dark\:u--ml-24{
    margin-left: -6rem !important;
  }

  .dark\:u--mt-28{
    margin-top: -7rem !important;
  }

  .dark\:u--mr-28{
    margin-right: -7rem !important;
  }

  .dark\:u--mb-28{
    margin-bottom: -7rem !important;
  }

  .dark\:u--ml-28{
    margin-left: -7rem !important;
  }

  .dark\:u--mt-32{
    margin-top: -8rem !important;
  }

  .dark\:u--mr-32{
    margin-right: -8rem !important;
  }

  .dark\:u--mb-32{
    margin-bottom: -8rem !important;
  }

  .dark\:u--ml-32{
    margin-left: -8rem !important;
  }

  .dark\:u--mt-36{
    margin-top: -9rem !important;
  }

  .dark\:u--mr-36{
    margin-right: -9rem !important;
  }

  .dark\:u--mb-36{
    margin-bottom: -9rem !important;
  }

  .dark\:u--ml-36{
    margin-left: -9rem !important;
  }

  .dark\:u--mt-40{
    margin-top: -10rem !important;
  }

  .dark\:u--mr-40{
    margin-right: -10rem !important;
  }

  .dark\:u--mb-40{
    margin-bottom: -10rem !important;
  }

  .dark\:u--ml-40{
    margin-left: -10rem !important;
  }

  .dark\:u--mt-44{
    margin-top: -11rem !important;
  }

  .dark\:u--mr-44{
    margin-right: -11rem !important;
  }

  .dark\:u--mb-44{
    margin-bottom: -11rem !important;
  }

  .dark\:u--ml-44{
    margin-left: -11rem !important;
  }

  .dark\:u--mt-48{
    margin-top: -12rem !important;
  }

  .dark\:u--mr-48{
    margin-right: -12rem !important;
  }

  .dark\:u--mb-48{
    margin-bottom: -12rem !important;
  }

  .dark\:u--ml-48{
    margin-left: -12rem !important;
  }

  .dark\:u--mt-52{
    margin-top: -13rem !important;
  }

  .dark\:u--mr-52{
    margin-right: -13rem !important;
  }

  .dark\:u--mb-52{
    margin-bottom: -13rem !important;
  }

  .dark\:u--ml-52{
    margin-left: -13rem !important;
  }

  .dark\:u--mt-56{
    margin-top: -14rem !important;
  }

  .dark\:u--mr-56{
    margin-right: -14rem !important;
  }

  .dark\:u--mb-56{
    margin-bottom: -14rem !important;
  }

  .dark\:u--ml-56{
    margin-left: -14rem !important;
  }

  .dark\:u--mt-60{
    margin-top: -15rem !important;
  }

  .dark\:u--mr-60{
    margin-right: -15rem !important;
  }

  .dark\:u--mb-60{
    margin-bottom: -15rem !important;
  }

  .dark\:u--ml-60{
    margin-left: -15rem !important;
  }

  .dark\:u--mt-64{
    margin-top: -16rem !important;
  }

  .dark\:u--mr-64{
    margin-right: -16rem !important;
  }

  .dark\:u--mb-64{
    margin-bottom: -16rem !important;
  }

  .dark\:u--ml-64{
    margin-left: -16rem !important;
  }

  .dark\:u--mt-72{
    margin-top: -18rem !important;
  }

  .dark\:u--mr-72{
    margin-right: -18rem !important;
  }

  .dark\:u--mb-72{
    margin-bottom: -18rem !important;
  }

  .dark\:u--ml-72{
    margin-left: -18rem !important;
  }

  .dark\:u--mt-80{
    margin-top: -20rem !important;
  }

  .dark\:u--mr-80{
    margin-right: -20rem !important;
  }

  .dark\:u--mb-80{
    margin-bottom: -20rem !important;
  }

  .dark\:u--ml-80{
    margin-left: -20rem !important;
  }

  .dark\:u--mt-96{
    margin-top: -24rem !important;
  }

  .dark\:u--mr-96{
    margin-right: -24rem !important;
  }

  .dark\:u--mb-96{
    margin-bottom: -24rem !important;
  }

  .dark\:u--ml-96{
    margin-left: -24rem !important;
  }

  .dark\:u--mt-px{
    margin-top: -1px !important;
  }

  .dark\:u--mr-px{
    margin-right: -1px !important;
  }

  .dark\:u--mb-px{
    margin-bottom: -1px !important;
  }

  .dark\:u--ml-px{
    margin-left: -1px !important;
  }

  .dark\:u--mt-0\.5{
    margin-top: -0.125rem !important;
  }

  .dark\:u--mr-0\.5{
    margin-right: -0.125rem !important;
  }

  .dark\:u--mb-0\.5{
    margin-bottom: -0.125rem !important;
  }

  .dark\:u--ml-0\.5{
    margin-left: -0.125rem !important;
  }

  .dark\:u--mt-1\.5{
    margin-top: -0.375rem !important;
  }

  .dark\:u--mr-1\.5{
    margin-right: -0.375rem !important;
  }

  .dark\:u--mb-1\.5{
    margin-bottom: -0.375rem !important;
  }

  .dark\:u--ml-1\.5{
    margin-left: -0.375rem !important;
  }

  .dark\:u--mt-2\.5{
    margin-top: -0.625rem !important;
  }

  .dark\:u--mr-2\.5{
    margin-right: -0.625rem !important;
  }

  .dark\:u--mb-2\.5{
    margin-bottom: -0.625rem !important;
  }

  .dark\:u--ml-2\.5{
    margin-left: -0.625rem !important;
  }

  .dark\:u--mt-3\.5{
    margin-top: -0.875rem !important;
  }

  .dark\:u--mr-3\.5{
    margin-right: -0.875rem !important;
  }

  .dark\:u--mb-3\.5{
    margin-bottom: -0.875rem !important;
  }

  .dark\:u--ml-3\.5{
    margin-left: -0.875rem !important;
  }

  .dark\:u-mt-full{
    margin-top: 100% !important;
  }

  .dark\:u-mr-full{
    margin-right: 100% !important;
  }

  .dark\:u-mb-full{
    margin-bottom: 100% !important;
  }

  .dark\:u-ml-full{
    margin-left: 100% !important;
  }

  .dark\:u-max-h-0{
    max-height: 0px !important;
  }

  .dark\:u-max-h-1{
    max-height: 0.25rem !important;
  }

  .dark\:u-max-h-2{
    max-height: 0.5rem !important;
  }

  .dark\:u-max-h-3{
    max-height: 0.75rem !important;
  }

  .dark\:u-max-h-4{
    max-height: 1rem !important;
  }

  .dark\:u-max-h-5{
    max-height: 1.25rem !important;
  }

  .dark\:u-max-h-6{
    max-height: 1.5rem !important;
  }

  .dark\:u-max-h-7{
    max-height: 1.75rem !important;
  }

  .dark\:u-max-h-8{
    max-height: 2rem !important;
  }

  .dark\:u-max-h-9{
    max-height: 2.25rem !important;
  }

  .dark\:u-max-h-10{
    max-height: 2.5rem !important;
  }

  .dark\:u-max-h-11{
    max-height: 2.75rem !important;
  }

  .dark\:u-max-h-12{
    max-height: 3rem !important;
  }

  .dark\:u-max-h-14{
    max-height: 3.5rem !important;
  }

  .dark\:u-max-h-16{
    max-height: 4rem !important;
  }

  .dark\:u-max-h-20{
    max-height: 5rem !important;
  }

  .dark\:u-max-h-24{
    max-height: 6rem !important;
  }

  .dark\:u-max-h-28{
    max-height: 7rem !important;
  }

  .dark\:u-max-h-32{
    max-height: 8rem !important;
  }

  .dark\:u-max-h-36{
    max-height: 9rem !important;
  }

  .dark\:u-max-h-40{
    max-height: 10rem !important;
  }

  .dark\:u-max-h-44{
    max-height: 11rem !important;
  }

  .dark\:u-max-h-48{
    max-height: 12rem !important;
  }

  .dark\:u-max-h-52{
    max-height: 13rem !important;
  }

  .dark\:u-max-h-56{
    max-height: 14rem !important;
  }

  .dark\:u-max-h-60{
    max-height: 15rem !important;
  }

  .dark\:u-max-h-64{
    max-height: 16rem !important;
  }

  .dark\:u-max-h-72{
    max-height: 18rem !important;
  }

  .dark\:u-max-h-80{
    max-height: 20rem !important;
  }

  .dark\:u-max-h-96{
    max-height: 24rem !important;
  }

  .dark\:u-max-h-px{
    max-height: 1px !important;
  }

  .dark\:u-max-h-0\.5{
    max-height: 0.125rem !important;
  }

  .dark\:u-max-h-1\.5{
    max-height: 0.375rem !important;
  }

  .dark\:u-max-h-2\.5{
    max-height: 0.625rem !important;
  }

  .dark\:u-max-h-3\.5{
    max-height: 0.875rem !important;
  }

  .dark\:u-max-h-full{
    max-height: 100% !important;
  }

  .dark\:u-max-h-screen{
    max-height: 100vh !important;
  }

  .dark\:u-max-w-none{
    max-width: none !important;
  }

  .dark\:u-max-w-xs{
    max-width: 10rem !important;
  }

  .dark\:u-max-w-sm{
    max-width: 12rem !important;
  }

  .dark\:u-max-w-md{
    max-width: 24rem !important;
  }

  .dark\:u-max-w-lg{
    max-width: 32rem !important;
  }

  .dark\:u-max-w-xl{
    max-width: 1280px !important;
  }

  .dark\:u-max-w-2xl{
    max-width: 42rem !important;
  }

  .dark\:u-max-w-3xl{
    max-width: 48rem !important;
  }

  .dark\:u-max-w-4xl{
    max-width: 56rem !important;
  }

  .dark\:u-max-w-5xl{
    max-width: 64rem !important;
  }

  .dark\:u-max-w-6xl{
    max-width: 72rem !important;
  }

  .dark\:u-max-w-full{
    max-width: 100% !important;
  }

  .dark\:u-max-w-mobile{
    max-width: 320px !important;
  }

  .dark\:u-max-w-tablet{
    max-width: 768px !important;
  }

  .dark\:u-max-w-tablet-large{
    max-width: 900px !important;
  }

  .dark\:u-max-w-mobile-large{
    max-width: 450px !important;
  }

  .dark\:u-max-w-desktop{
    max-width: 1120px !important;
  }

  .dark\:u-min-h-none{
    min-height: none !important;
  }

  .dark\:u-min-h-xs{
    min-height: 10rem !important;
  }

  .dark\:u-min-h-sm{
    min-height: 12rem !important;
  }

  .dark\:u-min-h-md{
    min-height: 24rem !important;
  }

  .dark\:u-min-h-lg{
    min-height: 32rem !important;
  }

  .dark\:u-min-h-xl{
    min-height: 36rem !important;
  }

  .dark\:u-min-w-sm{
    min-width: 320px !important;
  }

  .dark\:u-min-w-tablet{
    min-width: 768px !important;
  }

  .dark\:u-min-w-tablet-large{
    min-width: 900px !important;
  }

  .dark\:u-object-contain{
    -o-object-fit: contain !important;
       object-fit: contain !important;
  }

  .dark\:u-object-cover{
    -o-object-fit: cover !important;
       object-fit: cover !important;
  }

  .dark\:u-object-fill{
    -o-object-fit: fill !important;
       object-fit: fill !important;
  }

  .dark\:u-object-none{
    -o-object-fit: none !important;
       object-fit: none !important;
  }

  .dark\:u-object-scale-down{
    -o-object-fit: scale-down !important;
       object-fit: scale-down !important;
  }

  .dark\:u-object-bottom{
    -o-object-position: bottom !important;
       object-position: bottom !important;
  }

  .dark\:u-object-center{
    -o-object-position: center !important;
       object-position: center !important;
  }

  .dark\:u-object-left{
    -o-object-position: left !important;
       object-position: left !important;
  }

  .dark\:u-object-left-bottom{
    -o-object-position: left bottom !important;
       object-position: left bottom !important;
  }

  .dark\:u-object-left-top{
    -o-object-position: left top !important;
       object-position: left top !important;
  }

  .dark\:u-object-right{
    -o-object-position: right !important;
       object-position: right !important;
  }

  .dark\:u-object-right-bottom{
    -o-object-position: right bottom !important;
       object-position: right bottom !important;
  }

  .dark\:u-object-right-top{
    -o-object-position: right top !important;
       object-position: right top !important;
  }

  .dark\:u-object-top{
    -o-object-position: top !important;
       object-position: top !important;
  }

  .dark\:u-opacity-0{
    opacity: 0 !important;
  }

  .dark\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .dark\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .dark\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .dark\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .dark\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .dark\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .dark\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .dark\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .dark\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .dark\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .dark\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .dark\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .dark\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .dark\:u-opacity-100{
    opacity: 1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-0{
    opacity: 0 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-5{
    opacity: 0.05 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-10{
    opacity: 0.1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-20{
    opacity: 0.2 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-25{
    opacity: 0.25 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-30{
    opacity: 0.3 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-40{
    opacity: 0.4 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-50{
    opacity: 0.5 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-60{
    opacity: 0.6 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-70{
    opacity: 0.7 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-75{
    opacity: 0.75 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-80{
    opacity: 0.8 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-90{
    opacity: 0.9 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-95{
    opacity: 0.95 !important;
  }

  .u-group:hover .dark\:group-hover\:u-opacity-100{
    opacity: 1 !important;
  }

  .dark\:focus-within\:u-opacity-0:focus-within{
    opacity: 0 !important;
  }

  .dark\:focus-within\:u-opacity-5:focus-within{
    opacity: 0.05 !important;
  }

  .dark\:focus-within\:u-opacity-10:focus-within{
    opacity: 0.1 !important;
  }

  .dark\:focus-within\:u-opacity-20:focus-within{
    opacity: 0.2 !important;
  }

  .dark\:focus-within\:u-opacity-25:focus-within{
    opacity: 0.25 !important;
  }

  .dark\:focus-within\:u-opacity-30:focus-within{
    opacity: 0.3 !important;
  }

  .dark\:focus-within\:u-opacity-40:focus-within{
    opacity: 0.4 !important;
  }

  .dark\:focus-within\:u-opacity-50:focus-within{
    opacity: 0.5 !important;
  }

  .dark\:focus-within\:u-opacity-60:focus-within{
    opacity: 0.6 !important;
  }

  .dark\:focus-within\:u-opacity-70:focus-within{
    opacity: 0.7 !important;
  }

  .dark\:focus-within\:u-opacity-75:focus-within{
    opacity: 0.75 !important;
  }

  .dark\:focus-within\:u-opacity-80:focus-within{
    opacity: 0.8 !important;
  }

  .dark\:focus-within\:u-opacity-90:focus-within{
    opacity: 0.9 !important;
  }

  .dark\:focus-within\:u-opacity-95:focus-within{
    opacity: 0.95 !important;
  }

  .dark\:focus-within\:u-opacity-100:focus-within{
    opacity: 1 !important;
  }

  .dark\:hover\:u-opacity-0:hover{
    opacity: 0 !important;
  }

  .dark\:hover\:u-opacity-5:hover{
    opacity: 0.05 !important;
  }

  .dark\:hover\:u-opacity-10:hover{
    opacity: 0.1 !important;
  }

  .dark\:hover\:u-opacity-20:hover{
    opacity: 0.2 !important;
  }

  .dark\:hover\:u-opacity-25:hover{
    opacity: 0.25 !important;
  }

  .dark\:hover\:u-opacity-30:hover{
    opacity: 0.3 !important;
  }

  .dark\:hover\:u-opacity-40:hover{
    opacity: 0.4 !important;
  }

  .dark\:hover\:u-opacity-50:hover{
    opacity: 0.5 !important;
  }

  .dark\:hover\:u-opacity-60:hover{
    opacity: 0.6 !important;
  }

  .dark\:hover\:u-opacity-70:hover{
    opacity: 0.7 !important;
  }

  .dark\:hover\:u-opacity-75:hover{
    opacity: 0.75 !important;
  }

  .dark\:hover\:u-opacity-80:hover{
    opacity: 0.8 !important;
  }

  .dark\:hover\:u-opacity-90:hover{
    opacity: 0.9 !important;
  }

  .dark\:hover\:u-opacity-95:hover{
    opacity: 0.95 !important;
  }

  .dark\:hover\:u-opacity-100:hover{
    opacity: 1 !important;
  }

  .dark\:focus\:u-opacity-0:focus{
    opacity: 0 !important;
  }

  .dark\:focus\:u-opacity-5:focus{
    opacity: 0.05 !important;
  }

  .dark\:focus\:u-opacity-10:focus{
    opacity: 0.1 !important;
  }

  .dark\:focus\:u-opacity-20:focus{
    opacity: 0.2 !important;
  }

  .dark\:focus\:u-opacity-25:focus{
    opacity: 0.25 !important;
  }

  .dark\:focus\:u-opacity-30:focus{
    opacity: 0.3 !important;
  }

  .dark\:focus\:u-opacity-40:focus{
    opacity: 0.4 !important;
  }

  .dark\:focus\:u-opacity-50:focus{
    opacity: 0.5 !important;
  }

  .dark\:focus\:u-opacity-60:focus{
    opacity: 0.6 !important;
  }

  .dark\:focus\:u-opacity-70:focus{
    opacity: 0.7 !important;
  }

  .dark\:focus\:u-opacity-75:focus{
    opacity: 0.75 !important;
  }

  .dark\:focus\:u-opacity-80:focus{
    opacity: 0.8 !important;
  }

  .dark\:focus\:u-opacity-90:focus{
    opacity: 0.9 !important;
  }

  .dark\:focus\:u-opacity-95:focus{
    opacity: 0.95 !important;
  }

  .dark\:focus\:u-opacity-100:focus{
    opacity: 1 !important;
  }

  .dark\:u-outline-none{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .dark\:u-outline-white{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .dark\:u-outline-black{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .dark\:focus-within\:u-outline-none:focus-within{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .dark\:focus-within\:u-outline-white:focus-within{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .dark\:focus-within\:u-outline-black:focus-within{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .dark\:focus\:u-outline-none:focus{
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
  }

  .dark\:focus\:u-outline-white:focus{
    outline: 2px dotted white !important;
    outline-offset: 2px !important;
  }

  .dark\:focus\:u-outline-black:focus{
    outline: 2px dotted black !important;
    outline-offset: 2px !important;
  }

  .dark\:u-overflow-auto{
    overflow: auto !important;
  }

  .dark\:u-overflow-hidden{
    overflow: hidden !important;
  }

  .dark\:u-overflow-visible{
    overflow: visible !important;
  }

  .dark\:u-overflow-scroll{
    overflow: scroll !important;
  }

  .dark\:u-overflow-x-auto{
    overflow-x: auto !important;
  }

  .dark\:u-overflow-y-auto{
    overflow-y: auto !important;
  }

  .dark\:u-overflow-x-hidden{
    overflow-x: hidden !important;
  }

  .dark\:u-overflow-y-hidden{
    overflow-y: hidden !important;
  }

  .dark\:u-overflow-x-visible{
    overflow-x: visible !important;
  }

  .dark\:u-overflow-y-visible{
    overflow-y: visible !important;
  }

  .dark\:u-overflow-x-scroll{
    overflow-x: scroll !important;
  }

  .dark\:u-overflow-y-scroll{
    overflow-y: scroll !important;
  }

  .dark\:u-overscroll-auto{
    -ms-scroll-chaining: chained !important;
        overscroll-behavior: auto !important;
  }

  .dark\:u-overscroll-contain{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: contain !important;
  }

  .dark\:u-overscroll-none{
    -ms-scroll-chaining: none !important;
        overscroll-behavior: none !important;
  }

  .dark\:u-overscroll-y-auto{
    overscroll-behavior-y: auto !important;
  }

  .dark\:u-overscroll-y-contain{
    overscroll-behavior-y: contain !important;
  }

  .dark\:u-overscroll-y-none{
    overscroll-behavior-y: none !important;
  }

  .dark\:u-overscroll-x-auto{
    overscroll-behavior-x: auto !important;
  }

  .dark\:u-overscroll-x-contain{
    overscroll-behavior-x: contain !important;
  }

  .dark\:u-overscroll-x-none{
    overscroll-behavior-x: none !important;
  }

  .dark\:u-p-0{
    padding: 0px !important;
  }

  .dark\:u-p-1{
    padding: 0.25rem !important;
  }

  .dark\:u-p-2{
    padding: 0.5rem !important;
  }

  .dark\:u-p-3{
    padding: 0.75rem !important;
  }

  .dark\:u-p-4{
    padding: 1rem !important;
  }

  .dark\:u-p-5{
    padding: 1.25rem !important;
  }

  .dark\:u-p-6{
    padding: 1.5rem !important;
  }

  .dark\:u-p-7{
    padding: 1.75rem !important;
  }

  .dark\:u-p-8{
    padding: 2rem !important;
  }

  .dark\:u-p-9{
    padding: 2.25rem !important;
  }

  .dark\:u-p-10{
    padding: 2.5rem !important;
  }

  .dark\:u-p-11{
    padding: 2.75rem !important;
  }

  .dark\:u-p-12{
    padding: 3rem !important;
  }

  .dark\:u-p-14{
    padding: 3.5rem !important;
  }

  .dark\:u-p-16{
    padding: 4rem !important;
  }

  .dark\:u-p-20{
    padding: 5rem !important;
  }

  .dark\:u-p-24{
    padding: 6rem !important;
  }

  .dark\:u-p-28{
    padding: 7rem !important;
  }

  .dark\:u-p-32{
    padding: 8rem !important;
  }

  .dark\:u-p-36{
    padding: 9rem !important;
  }

  .dark\:u-p-40{
    padding: 10rem !important;
  }

  .dark\:u-p-44{
    padding: 11rem !important;
  }

  .dark\:u-p-48{
    padding: 12rem !important;
  }

  .dark\:u-p-52{
    padding: 13rem !important;
  }

  .dark\:u-p-56{
    padding: 14rem !important;
  }

  .dark\:u-p-60{
    padding: 15rem !important;
  }

  .dark\:u-p-64{
    padding: 16rem !important;
  }

  .dark\:u-p-72{
    padding: 18rem !important;
  }

  .dark\:u-p-80{
    padding: 20rem !important;
  }

  .dark\:u-p-96{
    padding: 24rem !important;
  }

  .dark\:u-p-px{
    padding: 1px !important;
  }

  .dark\:u-p-0\.5{
    padding: 0.125rem !important;
  }

  .dark\:u-p-1\.5{
    padding: 0.375rem !important;
  }

  .dark\:u-p-2\.5{
    padding: 0.625rem !important;
  }

  .dark\:u-p-3\.5{
    padding: 0.875rem !important;
  }

  .dark\:u-py-0{
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .dark\:u-px-0{
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .dark\:u-py-1{
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .dark\:u-px-1{
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .dark\:u-py-2{
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .dark\:u-px-2{
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .dark\:u-py-3{
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .dark\:u-px-3{
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .dark\:u-py-4{
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .dark\:u-px-4{
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .dark\:u-py-5{
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .dark\:u-px-5{
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .dark\:u-py-6{
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .dark\:u-px-6{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .dark\:u-py-7{
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .dark\:u-px-7{
    padding-left: 1.75rem !important;
    padding-right: 1.75rem !important;
  }

  .dark\:u-py-8{
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .dark\:u-px-8{
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .dark\:u-py-9{
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .dark\:u-px-9{
    padding-left: 2.25rem !important;
    padding-right: 2.25rem !important;
  }

  .dark\:u-py-10{
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .dark\:u-px-10{
    padding-left: 2.5rem !important;
    padding-right: 2.5rem !important;
  }

  .dark\:u-py-11{
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .dark\:u-px-11{
    padding-left: 2.75rem !important;
    padding-right: 2.75rem !important;
  }

  .dark\:u-py-12{
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .dark\:u-px-12{
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .dark\:u-py-14{
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .dark\:u-px-14{
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
  }

  .dark\:u-py-16{
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .dark\:u-px-16{
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }

  .dark\:u-py-20{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .dark\:u-px-20{
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .dark\:u-py-24{
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
  }

  .dark\:u-px-24{
    padding-left: 6rem !important;
    padding-right: 6rem !important;
  }

  .dark\:u-py-28{
    padding-top: 7rem !important;
    padding-bottom: 7rem !important;
  }

  .dark\:u-px-28{
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .dark\:u-py-32{
    padding-top: 8rem !important;
    padding-bottom: 8rem !important;
  }

  .dark\:u-px-32{
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .dark\:u-py-36{
    padding-top: 9rem !important;
    padding-bottom: 9rem !important;
  }

  .dark\:u-px-36{
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .dark\:u-py-40{
    padding-top: 10rem !important;
    padding-bottom: 10rem !important;
  }

  .dark\:u-px-40{
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .dark\:u-py-44{
    padding-top: 11rem !important;
    padding-bottom: 11rem !important;
  }

  .dark\:u-px-44{
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .dark\:u-py-48{
    padding-top: 12rem !important;
    padding-bottom: 12rem !important;
  }

  .dark\:u-px-48{
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .dark\:u-py-52{
    padding-top: 13rem !important;
    padding-bottom: 13rem !important;
  }

  .dark\:u-px-52{
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .dark\:u-py-56{
    padding-top: 14rem !important;
    padding-bottom: 14rem !important;
  }

  .dark\:u-px-56{
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .dark\:u-py-60{
    padding-top: 15rem !important;
    padding-bottom: 15rem !important;
  }

  .dark\:u-px-60{
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .dark\:u-py-64{
    padding-top: 16rem !important;
    padding-bottom: 16rem !important;
  }

  .dark\:u-px-64{
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .dark\:u-py-72{
    padding-top: 18rem !important;
    padding-bottom: 18rem !important;
  }

  .dark\:u-px-72{
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .dark\:u-py-80{
    padding-top: 20rem !important;
    padding-bottom: 20rem !important;
  }

  .dark\:u-px-80{
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .dark\:u-py-96{
    padding-top: 24rem !important;
    padding-bottom: 24rem !important;
  }

  .dark\:u-px-96{
    padding-left: 24rem !important;
    padding-right: 24rem !important;
  }

  .dark\:u-py-px{
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .dark\:u-px-px{
    padding-left: 1px !important;
    padding-right: 1px !important;
  }

  .dark\:u-py-0\.5{
    padding-top: 0.125rem !important;
    padding-bottom: 0.125rem !important;
  }

  .dark\:u-px-0\.5{
    padding-left: 0.125rem !important;
    padding-right: 0.125rem !important;
  }

  .dark\:u-py-1\.5{
    padding-top: 0.375rem !important;
    padding-bottom: 0.375rem !important;
  }

  .dark\:u-px-1\.5{
    padding-left: 0.375rem !important;
    padding-right: 0.375rem !important;
  }

  .dark\:u-py-2\.5{
    padding-top: 0.625rem !important;
    padding-bottom: 0.625rem !important;
  }

  .dark\:u-px-2\.5{
    padding-left: 0.625rem !important;
    padding-right: 0.625rem !important;
  }

  .dark\:u-py-3\.5{
    padding-top: 0.875rem !important;
    padding-bottom: 0.875rem !important;
  }

  .dark\:u-px-3\.5{
    padding-left: 0.875rem !important;
    padding-right: 0.875rem !important;
  }

  .dark\:u-pt-0{
    padding-top: 0px !important;
  }

  .dark\:u-pr-0{
    padding-right: 0px !important;
  }

  .dark\:u-pb-0{
    padding-bottom: 0px !important;
  }

  .dark\:u-pl-0{
    padding-left: 0px !important;
  }

  .dark\:u-pt-1{
    padding-top: 0.25rem !important;
  }

  .dark\:u-pr-1{
    padding-right: 0.25rem !important;
  }

  .dark\:u-pb-1{
    padding-bottom: 0.25rem !important;
  }

  .dark\:u-pl-1{
    padding-left: 0.25rem !important;
  }

  .dark\:u-pt-2{
    padding-top: 0.5rem !important;
  }

  .dark\:u-pr-2{
    padding-right: 0.5rem !important;
  }

  .dark\:u-pb-2{
    padding-bottom: 0.5rem !important;
  }

  .dark\:u-pl-2{
    padding-left: 0.5rem !important;
  }

  .dark\:u-pt-3{
    padding-top: 0.75rem !important;
  }

  .dark\:u-pr-3{
    padding-right: 0.75rem !important;
  }

  .dark\:u-pb-3{
    padding-bottom: 0.75rem !important;
  }

  .dark\:u-pl-3{
    padding-left: 0.75rem !important;
  }

  .dark\:u-pt-4{
    padding-top: 1rem !important;
  }

  .dark\:u-pr-4{
    padding-right: 1rem !important;
  }

  .dark\:u-pb-4{
    padding-bottom: 1rem !important;
  }

  .dark\:u-pl-4{
    padding-left: 1rem !important;
  }

  .dark\:u-pt-5{
    padding-top: 1.25rem !important;
  }

  .dark\:u-pr-5{
    padding-right: 1.25rem !important;
  }

  .dark\:u-pb-5{
    padding-bottom: 1.25rem !important;
  }

  .dark\:u-pl-5{
    padding-left: 1.25rem !important;
  }

  .dark\:u-pt-6{
    padding-top: 1.5rem !important;
  }

  .dark\:u-pr-6{
    padding-right: 1.5rem !important;
  }

  .dark\:u-pb-6{
    padding-bottom: 1.5rem !important;
  }

  .dark\:u-pl-6{
    padding-left: 1.5rem !important;
  }

  .dark\:u-pt-7{
    padding-top: 1.75rem !important;
  }

  .dark\:u-pr-7{
    padding-right: 1.75rem !important;
  }

  .dark\:u-pb-7{
    padding-bottom: 1.75rem !important;
  }

  .dark\:u-pl-7{
    padding-left: 1.75rem !important;
  }

  .dark\:u-pt-8{
    padding-top: 2rem !important;
  }

  .dark\:u-pr-8{
    padding-right: 2rem !important;
  }

  .dark\:u-pb-8{
    padding-bottom: 2rem !important;
  }

  .dark\:u-pl-8{
    padding-left: 2rem !important;
  }

  .dark\:u-pt-9{
    padding-top: 2.25rem !important;
  }

  .dark\:u-pr-9{
    padding-right: 2.25rem !important;
  }

  .dark\:u-pb-9{
    padding-bottom: 2.25rem !important;
  }

  .dark\:u-pl-9{
    padding-left: 2.25rem !important;
  }

  .dark\:u-pt-10{
    padding-top: 2.5rem !important;
  }

  .dark\:u-pr-10{
    padding-right: 2.5rem !important;
  }

  .dark\:u-pb-10{
    padding-bottom: 2.5rem !important;
  }

  .dark\:u-pl-10{
    padding-left: 2.5rem !important;
  }

  .dark\:u-pt-11{
    padding-top: 2.75rem !important;
  }

  .dark\:u-pr-11{
    padding-right: 2.75rem !important;
  }

  .dark\:u-pb-11{
    padding-bottom: 2.75rem !important;
  }

  .dark\:u-pl-11{
    padding-left: 2.75rem !important;
  }

  .dark\:u-pt-12{
    padding-top: 3rem !important;
  }

  .dark\:u-pr-12{
    padding-right: 3rem !important;
  }

  .dark\:u-pb-12{
    padding-bottom: 3rem !important;
  }

  .dark\:u-pl-12{
    padding-left: 3rem !important;
  }

  .dark\:u-pt-14{
    padding-top: 3.5rem !important;
  }

  .dark\:u-pr-14{
    padding-right: 3.5rem !important;
  }

  .dark\:u-pb-14{
    padding-bottom: 3.5rem !important;
  }

  .dark\:u-pl-14{
    padding-left: 3.5rem !important;
  }

  .dark\:u-pt-16{
    padding-top: 4rem !important;
  }

  .dark\:u-pr-16{
    padding-right: 4rem !important;
  }

  .dark\:u-pb-16{
    padding-bottom: 4rem !important;
  }

  .dark\:u-pl-16{
    padding-left: 4rem !important;
  }

  .dark\:u-pt-20{
    padding-top: 5rem !important;
  }

  .dark\:u-pr-20{
    padding-right: 5rem !important;
  }

  .dark\:u-pb-20{
    padding-bottom: 5rem !important;
  }

  .dark\:u-pl-20{
    padding-left: 5rem !important;
  }

  .dark\:u-pt-24{
    padding-top: 6rem !important;
  }

  .dark\:u-pr-24{
    padding-right: 6rem !important;
  }

  .dark\:u-pb-24{
    padding-bottom: 6rem !important;
  }

  .dark\:u-pl-24{
    padding-left: 6rem !important;
  }

  .dark\:u-pt-28{
    padding-top: 7rem !important;
  }

  .dark\:u-pr-28{
    padding-right: 7rem !important;
  }

  .dark\:u-pb-28{
    padding-bottom: 7rem !important;
  }

  .dark\:u-pl-28{
    padding-left: 7rem !important;
  }

  .dark\:u-pt-32{
    padding-top: 8rem !important;
  }

  .dark\:u-pr-32{
    padding-right: 8rem !important;
  }

  .dark\:u-pb-32{
    padding-bottom: 8rem !important;
  }

  .dark\:u-pl-32{
    padding-left: 8rem !important;
  }

  .dark\:u-pt-36{
    padding-top: 9rem !important;
  }

  .dark\:u-pr-36{
    padding-right: 9rem !important;
  }

  .dark\:u-pb-36{
    padding-bottom: 9rem !important;
  }

  .dark\:u-pl-36{
    padding-left: 9rem !important;
  }

  .dark\:u-pt-40{
    padding-top: 10rem !important;
  }

  .dark\:u-pr-40{
    padding-right: 10rem !important;
  }

  .dark\:u-pb-40{
    padding-bottom: 10rem !important;
  }

  .dark\:u-pl-40{
    padding-left: 10rem !important;
  }

  .dark\:u-pt-44{
    padding-top: 11rem !important;
  }

  .dark\:u-pr-44{
    padding-right: 11rem !important;
  }

  .dark\:u-pb-44{
    padding-bottom: 11rem !important;
  }

  .dark\:u-pl-44{
    padding-left: 11rem !important;
  }

  .dark\:u-pt-48{
    padding-top: 12rem !important;
  }

  .dark\:u-pr-48{
    padding-right: 12rem !important;
  }

  .dark\:u-pb-48{
    padding-bottom: 12rem !important;
  }

  .dark\:u-pl-48{
    padding-left: 12rem !important;
  }

  .dark\:u-pt-52{
    padding-top: 13rem !important;
  }

  .dark\:u-pr-52{
    padding-right: 13rem !important;
  }

  .dark\:u-pb-52{
    padding-bottom: 13rem !important;
  }

  .dark\:u-pl-52{
    padding-left: 13rem !important;
  }

  .dark\:u-pt-56{
    padding-top: 14rem !important;
  }

  .dark\:u-pr-56{
    padding-right: 14rem !important;
  }

  .dark\:u-pb-56{
    padding-bottom: 14rem !important;
  }

  .dark\:u-pl-56{
    padding-left: 14rem !important;
  }

  .dark\:u-pt-60{
    padding-top: 15rem !important;
  }

  .dark\:u-pr-60{
    padding-right: 15rem !important;
  }

  .dark\:u-pb-60{
    padding-bottom: 15rem !important;
  }

  .dark\:u-pl-60{
    padding-left: 15rem !important;
  }

  .dark\:u-pt-64{
    padding-top: 16rem !important;
  }

  .dark\:u-pr-64{
    padding-right: 16rem !important;
  }

  .dark\:u-pb-64{
    padding-bottom: 16rem !important;
  }

  .dark\:u-pl-64{
    padding-left: 16rem !important;
  }

  .dark\:u-pt-72{
    padding-top: 18rem !important;
  }

  .dark\:u-pr-72{
    padding-right: 18rem !important;
  }

  .dark\:u-pb-72{
    padding-bottom: 18rem !important;
  }

  .dark\:u-pl-72{
    padding-left: 18rem !important;
  }

  .dark\:u-pt-80{
    padding-top: 20rem !important;
  }

  .dark\:u-pr-80{
    padding-right: 20rem !important;
  }

  .dark\:u-pb-80{
    padding-bottom: 20rem !important;
  }

  .dark\:u-pl-80{
    padding-left: 20rem !important;
  }

  .dark\:u-pt-96{
    padding-top: 24rem !important;
  }

  .dark\:u-pr-96{
    padding-right: 24rem !important;
  }

  .dark\:u-pb-96{
    padding-bottom: 24rem !important;
  }

  .dark\:u-pl-96{
    padding-left: 24rem !important;
  }

  .dark\:u-pt-px{
    padding-top: 1px !important;
  }

  .dark\:u-pr-px{
    padding-right: 1px !important;
  }

  .dark\:u-pb-px{
    padding-bottom: 1px !important;
  }

  .dark\:u-pl-px{
    padding-left: 1px !important;
  }

  .dark\:u-pt-0\.5{
    padding-top: 0.125rem !important;
  }

  .dark\:u-pr-0\.5{
    padding-right: 0.125rem !important;
  }

  .dark\:u-pb-0\.5{
    padding-bottom: 0.125rem !important;
  }

  .dark\:u-pl-0\.5{
    padding-left: 0.125rem !important;
  }

  .dark\:u-pt-1\.5{
    padding-top: 0.375rem !important;
  }

  .dark\:u-pr-1\.5{
    padding-right: 0.375rem !important;
  }

  .dark\:u-pb-1\.5{
    padding-bottom: 0.375rem !important;
  }

  .dark\:u-pl-1\.5{
    padding-left: 0.375rem !important;
  }

  .dark\:u-pt-2\.5{
    padding-top: 0.625rem !important;
  }

  .dark\:u-pr-2\.5{
    padding-right: 0.625rem !important;
  }

  .dark\:u-pb-2\.5{
    padding-bottom: 0.625rem !important;
  }

  .dark\:u-pl-2\.5{
    padding-left: 0.625rem !important;
  }

  .dark\:u-pt-3\.5{
    padding-top: 0.875rem !important;
  }

  .dark\:u-pr-3\.5{
    padding-right: 0.875rem !important;
  }

  .dark\:u-pb-3\.5{
    padding-bottom: 0.875rem !important;
  }

  .dark\:u-pl-3\.5{
    padding-left: 0.875rem !important;
  }

  .dark\:u-placeholder-black::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-black:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-black::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-white::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-white:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-white::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-faded::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-faded:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-faded::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-transparent::-moz-placeholder{
    color: transparent !important;
  }

  .dark\:u-placeholder-transparent:-ms-input-placeholder{
    color: transparent !important;
  }

  .dark\:u-placeholder-transparent::placeholder{
    color: transparent !important;
  }

  .dark\:u-placeholder-neutral-1::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-1:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-1::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-15::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-15:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-15::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-45::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-45:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-45::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-neutral-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-primary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-0::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-0::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-10::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-10::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-20::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-20::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-30::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-30::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-40::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-40::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-50::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-50::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-60::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-secundary-60::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-success::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-success:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-success::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-danger::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-danger:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-danger::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-black:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-black:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-black:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-white:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-white:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-white:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-faded:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-faded:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-faded:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-transparent:focus::-moz-placeholder{
    color: transparent !important;
  }

  .dark\:focus\:u-placeholder-transparent:focus:-ms-input-placeholder{
    color: transparent !important;
  }

  .dark\:focus\:u-placeholder-transparent:focus::placeholder{
    color: transparent !important;
  }

  .dark\:focus\:u-placeholder-neutral-1:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-1:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-1:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-15:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-15:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-15:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-45:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-45:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-45:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-neutral-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-primary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-0:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-10:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-20:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-30:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-40:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-50:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-secundary-60:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-success:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-success:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-success:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-danger:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-danger:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:focus\:u-placeholder-danger:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-placeholder-opacity)) !important;
  }

  .dark\:u-placeholder-opacity-0::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark\:u-placeholder-opacity-0:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark\:u-placeholder-opacity-0::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark\:u-placeholder-opacity-5::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark\:u-placeholder-opacity-5:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark\:u-placeholder-opacity-5::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark\:u-placeholder-opacity-10::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark\:u-placeholder-opacity-10:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark\:u-placeholder-opacity-10::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark\:u-placeholder-opacity-20::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark\:u-placeholder-opacity-20:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark\:u-placeholder-opacity-20::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark\:u-placeholder-opacity-25::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark\:u-placeholder-opacity-25:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark\:u-placeholder-opacity-25::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark\:u-placeholder-opacity-30::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark\:u-placeholder-opacity-30:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark\:u-placeholder-opacity-30::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark\:u-placeholder-opacity-40::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark\:u-placeholder-opacity-40:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark\:u-placeholder-opacity-40::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark\:u-placeholder-opacity-50::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark\:u-placeholder-opacity-50:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark\:u-placeholder-opacity-50::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark\:u-placeholder-opacity-60::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark\:u-placeholder-opacity-60:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark\:u-placeholder-opacity-60::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark\:u-placeholder-opacity-70::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark\:u-placeholder-opacity-70:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark\:u-placeholder-opacity-70::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark\:u-placeholder-opacity-75::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark\:u-placeholder-opacity-75:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark\:u-placeholder-opacity-75::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark\:u-placeholder-opacity-80::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark\:u-placeholder-opacity-80:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark\:u-placeholder-opacity-80::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark\:u-placeholder-opacity-90::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark\:u-placeholder-opacity-90:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark\:u-placeholder-opacity-90::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark\:u-placeholder-opacity-95::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark\:u-placeholder-opacity-95:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark\:u-placeholder-opacity-95::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark\:u-placeholder-opacity-100::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark\:u-placeholder-opacity-100:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark\:u-placeholder-opacity-100::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark\:focus\:u-placeholder-opacity-0:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark\:focus\:u-placeholder-opacity-0:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark\:focus\:u-placeholder-opacity-0:focus::placeholder{
    --tw-placeholder-opacity: 0 !important;
  }

  .dark\:focus\:u-placeholder-opacity-5:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark\:focus\:u-placeholder-opacity-5:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark\:focus\:u-placeholder-opacity-5:focus::placeholder{
    --tw-placeholder-opacity: 0.05 !important;
  }

  .dark\:focus\:u-placeholder-opacity-10:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark\:focus\:u-placeholder-opacity-10:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark\:focus\:u-placeholder-opacity-10:focus::placeholder{
    --tw-placeholder-opacity: 0.1 !important;
  }

  .dark\:focus\:u-placeholder-opacity-20:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark\:focus\:u-placeholder-opacity-20:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark\:focus\:u-placeholder-opacity-20:focus::placeholder{
    --tw-placeholder-opacity: 0.2 !important;
  }

  .dark\:focus\:u-placeholder-opacity-25:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark\:focus\:u-placeholder-opacity-25:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark\:focus\:u-placeholder-opacity-25:focus::placeholder{
    --tw-placeholder-opacity: 0.25 !important;
  }

  .dark\:focus\:u-placeholder-opacity-30:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark\:focus\:u-placeholder-opacity-30:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark\:focus\:u-placeholder-opacity-30:focus::placeholder{
    --tw-placeholder-opacity: 0.3 !important;
  }

  .dark\:focus\:u-placeholder-opacity-40:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark\:focus\:u-placeholder-opacity-40:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark\:focus\:u-placeholder-opacity-40:focus::placeholder{
    --tw-placeholder-opacity: 0.4 !important;
  }

  .dark\:focus\:u-placeholder-opacity-50:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark\:focus\:u-placeholder-opacity-50:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark\:focus\:u-placeholder-opacity-50:focus::placeholder{
    --tw-placeholder-opacity: 0.5 !important;
  }

  .dark\:focus\:u-placeholder-opacity-60:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark\:focus\:u-placeholder-opacity-60:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark\:focus\:u-placeholder-opacity-60:focus::placeholder{
    --tw-placeholder-opacity: 0.6 !important;
  }

  .dark\:focus\:u-placeholder-opacity-70:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark\:focus\:u-placeholder-opacity-70:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark\:focus\:u-placeholder-opacity-70:focus::placeholder{
    --tw-placeholder-opacity: 0.7 !important;
  }

  .dark\:focus\:u-placeholder-opacity-75:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark\:focus\:u-placeholder-opacity-75:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark\:focus\:u-placeholder-opacity-75:focus::placeholder{
    --tw-placeholder-opacity: 0.75 !important;
  }

  .dark\:focus\:u-placeholder-opacity-80:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark\:focus\:u-placeholder-opacity-80:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark\:focus\:u-placeholder-opacity-80:focus::placeholder{
    --tw-placeholder-opacity: 0.8 !important;
  }

  .dark\:focus\:u-placeholder-opacity-90:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark\:focus\:u-placeholder-opacity-90:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark\:focus\:u-placeholder-opacity-90:focus::placeholder{
    --tw-placeholder-opacity: 0.9 !important;
  }

  .dark\:focus\:u-placeholder-opacity-95:focus::-moz-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark\:focus\:u-placeholder-opacity-95:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark\:focus\:u-placeholder-opacity-95:focus::placeholder{
    --tw-placeholder-opacity: 0.95 !important;
  }

  .dark\:focus\:u-placeholder-opacity-100:focus::-moz-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark\:focus\:u-placeholder-opacity-100:focus:-ms-input-placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark\:focus\:u-placeholder-opacity-100:focus::placeholder{
    --tw-placeholder-opacity: 1 !important;
  }

  .dark\:u-pointer-events-none{
    pointer-events: none !important;
  }

  .dark\:u-pointer-events-auto{
    pointer-events: auto !important;
  }

  .dark\:u-static{
    position: static !important;
  }

  .dark\:u-fixed{
    position: fixed !important;
  }

  .dark\:u-absolute{
    position: absolute !important;
  }

  .dark\:u-relative{
    position: relative !important;
  }

  .dark\:u-sticky{
    position: sticky !important;
  }

  .dark\:u-inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .dark\:u-inset-1{
    top: 0.25rem !important;
    right: 0.25rem !important;
    bottom: 0.25rem !important;
    left: 0.25rem !important;
  }

  .dark\:u-inset-2{
    top: 0.5rem !important;
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
  }

  .dark\:u-inset-3{
    top: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
  }

  .dark\:u-inset-4{
    top: 1rem !important;
    right: 1rem !important;
    bottom: 1rem !important;
    left: 1rem !important;
  }

  .dark\:u-inset-5{
    top: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: 1.25rem !important;
  }

  .dark\:u-inset-6{
    top: 1.5rem !important;
    right: 1.5rem !important;
    bottom: 1.5rem !important;
    left: 1.5rem !important;
  }

  .dark\:u-inset-7{
    top: 1.75rem !important;
    right: 1.75rem !important;
    bottom: 1.75rem !important;
    left: 1.75rem !important;
  }

  .dark\:u-inset-8{
    top: 2rem !important;
    right: 2rem !important;
    bottom: 2rem !important;
    left: 2rem !important;
  }

  .dark\:u-inset-9{
    top: 2.25rem !important;
    right: 2.25rem !important;
    bottom: 2.25rem !important;
    left: 2.25rem !important;
  }

  .dark\:u-inset-10{
    top: 2.5rem !important;
    right: 2.5rem !important;
    bottom: 2.5rem !important;
    left: 2.5rem !important;
  }

  .dark\:u-inset-11{
    top: 2.75rem !important;
    right: 2.75rem !important;
    bottom: 2.75rem !important;
    left: 2.75rem !important;
  }

  .dark\:u-inset-12{
    top: 3rem !important;
    right: 3rem !important;
    bottom: 3rem !important;
    left: 3rem !important;
  }

  .dark\:u-inset-14{
    top: 3.5rem !important;
    right: 3.5rem !important;
    bottom: 3.5rem !important;
    left: 3.5rem !important;
  }

  .dark\:u-inset-16{
    top: 4rem !important;
    right: 4rem !important;
    bottom: 4rem !important;
    left: 4rem !important;
  }

  .dark\:u-inset-20{
    top: 5rem !important;
    right: 5rem !important;
    bottom: 5rem !important;
    left: 5rem !important;
  }

  .dark\:u-inset-24{
    top: 6rem !important;
    right: 6rem !important;
    bottom: 6rem !important;
    left: 6rem !important;
  }

  .dark\:u-inset-28{
    top: 7rem !important;
    right: 7rem !important;
    bottom: 7rem !important;
    left: 7rem !important;
  }

  .dark\:u-inset-32{
    top: 8rem !important;
    right: 8rem !important;
    bottom: 8rem !important;
    left: 8rem !important;
  }

  .dark\:u-inset-36{
    top: 9rem !important;
    right: 9rem !important;
    bottom: 9rem !important;
    left: 9rem !important;
  }

  .dark\:u-inset-40{
    top: 10rem !important;
    right: 10rem !important;
    bottom: 10rem !important;
    left: 10rem !important;
  }

  .dark\:u-inset-44{
    top: 11rem !important;
    right: 11rem !important;
    bottom: 11rem !important;
    left: 11rem !important;
  }

  .dark\:u-inset-48{
    top: 12rem !important;
    right: 12rem !important;
    bottom: 12rem !important;
    left: 12rem !important;
  }

  .dark\:u-inset-52{
    top: 13rem !important;
    right: 13rem !important;
    bottom: 13rem !important;
    left: 13rem !important;
  }

  .dark\:u-inset-56{
    top: 14rem !important;
    right: 14rem !important;
    bottom: 14rem !important;
    left: 14rem !important;
  }

  .dark\:u-inset-60{
    top: 15rem !important;
    right: 15rem !important;
    bottom: 15rem !important;
    left: 15rem !important;
  }

  .dark\:u-inset-64{
    top: 16rem !important;
    right: 16rem !important;
    bottom: 16rem !important;
    left: 16rem !important;
  }

  .dark\:u-inset-72{
    top: 18rem !important;
    right: 18rem !important;
    bottom: 18rem !important;
    left: 18rem !important;
  }

  .dark\:u-inset-80{
    top: 20rem !important;
    right: 20rem !important;
    bottom: 20rem !important;
    left: 20rem !important;
  }

  .dark\:u-inset-96{
    top: 24rem !important;
    right: 24rem !important;
    bottom: 24rem !important;
    left: 24rem !important;
  }

  .dark\:u-inset-auto{
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
  }

  .dark\:u-inset-px{
    top: 1px !important;
    right: 1px !important;
    bottom: 1px !important;
    left: 1px !important;
  }

  .dark\:u-inset-0\.5{
    top: 0.125rem !important;
    right: 0.125rem !important;
    bottom: 0.125rem !important;
    left: 0.125rem !important;
  }

  .dark\:u-inset-1\.5{
    top: 0.375rem !important;
    right: 0.375rem !important;
    bottom: 0.375rem !important;
    left: 0.375rem !important;
  }

  .dark\:u-inset-2\.5{
    top: 0.625rem !important;
    right: 0.625rem !important;
    bottom: 0.625rem !important;
    left: 0.625rem !important;
  }

  .dark\:u-inset-3\.5{
    top: 0.875rem !important;
    right: 0.875rem !important;
    bottom: 0.875rem !important;
    left: 0.875rem !important;
  }

  .dark\:u--inset-0{
    top: 0px !important;
    right: 0px !important;
    bottom: 0px !important;
    left: 0px !important;
  }

  .dark\:u--inset-1{
    top: -0.25rem !important;
    right: -0.25rem !important;
    bottom: -0.25rem !important;
    left: -0.25rem !important;
  }

  .dark\:u--inset-2{
    top: -0.5rem !important;
    right: -0.5rem !important;
    bottom: -0.5rem !important;
    left: -0.5rem !important;
  }

  .dark\:u--inset-3{
    top: -0.75rem !important;
    right: -0.75rem !important;
    bottom: -0.75rem !important;
    left: -0.75rem !important;
  }

  .dark\:u--inset-4{
    top: -1rem !important;
    right: -1rem !important;
    bottom: -1rem !important;
    left: -1rem !important;
  }

  .dark\:u--inset-5{
    top: -1.25rem !important;
    right: -1.25rem !important;
    bottom: -1.25rem !important;
    left: -1.25rem !important;
  }

  .dark\:u--inset-6{
    top: -1.5rem !important;
    right: -1.5rem !important;
    bottom: -1.5rem !important;
    left: -1.5rem !important;
  }

  .dark\:u--inset-7{
    top: -1.75rem !important;
    right: -1.75rem !important;
    bottom: -1.75rem !important;
    left: -1.75rem !important;
  }

  .dark\:u--inset-8{
    top: -2rem !important;
    right: -2rem !important;
    bottom: -2rem !important;
    left: -2rem !important;
  }

  .dark\:u--inset-9{
    top: -2.25rem !important;
    right: -2.25rem !important;
    bottom: -2.25rem !important;
    left: -2.25rem !important;
  }

  .dark\:u--inset-10{
    top: -2.5rem !important;
    right: -2.5rem !important;
    bottom: -2.5rem !important;
    left: -2.5rem !important;
  }

  .dark\:u--inset-11{
    top: -2.75rem !important;
    right: -2.75rem !important;
    bottom: -2.75rem !important;
    left: -2.75rem !important;
  }

  .dark\:u--inset-12{
    top: -3rem !important;
    right: -3rem !important;
    bottom: -3rem !important;
    left: -3rem !important;
  }

  .dark\:u--inset-14{
    top: -3.5rem !important;
    right: -3.5rem !important;
    bottom: -3.5rem !important;
    left: -3.5rem !important;
  }

  .dark\:u--inset-16{
    top: -4rem !important;
    right: -4rem !important;
    bottom: -4rem !important;
    left: -4rem !important;
  }

  .dark\:u--inset-20{
    top: -5rem !important;
    right: -5rem !important;
    bottom: -5rem !important;
    left: -5rem !important;
  }

  .dark\:u--inset-24{
    top: -6rem !important;
    right: -6rem !important;
    bottom: -6rem !important;
    left: -6rem !important;
  }

  .dark\:u--inset-28{
    top: -7rem !important;
    right: -7rem !important;
    bottom: -7rem !important;
    left: -7rem !important;
  }

  .dark\:u--inset-32{
    top: -8rem !important;
    right: -8rem !important;
    bottom: -8rem !important;
    left: -8rem !important;
  }

  .dark\:u--inset-36{
    top: -9rem !important;
    right: -9rem !important;
    bottom: -9rem !important;
    left: -9rem !important;
  }

  .dark\:u--inset-40{
    top: -10rem !important;
    right: -10rem !important;
    bottom: -10rem !important;
    left: -10rem !important;
  }

  .dark\:u--inset-44{
    top: -11rem !important;
    right: -11rem !important;
    bottom: -11rem !important;
    left: -11rem !important;
  }

  .dark\:u--inset-48{
    top: -12rem !important;
    right: -12rem !important;
    bottom: -12rem !important;
    left: -12rem !important;
  }

  .dark\:u--inset-52{
    top: -13rem !important;
    right: -13rem !important;
    bottom: -13rem !important;
    left: -13rem !important;
  }

  .dark\:u--inset-56{
    top: -14rem !important;
    right: -14rem !important;
    bottom: -14rem !important;
    left: -14rem !important;
  }

  .dark\:u--inset-60{
    top: -15rem !important;
    right: -15rem !important;
    bottom: -15rem !important;
    left: -15rem !important;
  }

  .dark\:u--inset-64{
    top: -16rem !important;
    right: -16rem !important;
    bottom: -16rem !important;
    left: -16rem !important;
  }

  .dark\:u--inset-72{
    top: -18rem !important;
    right: -18rem !important;
    bottom: -18rem !important;
    left: -18rem !important;
  }

  .dark\:u--inset-80{
    top: -20rem !important;
    right: -20rem !important;
    bottom: -20rem !important;
    left: -20rem !important;
  }

  .dark\:u--inset-96{
    top: -24rem !important;
    right: -24rem !important;
    bottom: -24rem !important;
    left: -24rem !important;
  }

  .dark\:u--inset-px{
    top: -1px !important;
    right: -1px !important;
    bottom: -1px !important;
    left: -1px !important;
  }

  .dark\:u--inset-0\.5{
    top: -0.125rem !important;
    right: -0.125rem !important;
    bottom: -0.125rem !important;
    left: -0.125rem !important;
  }

  .dark\:u--inset-1\.5{
    top: -0.375rem !important;
    right: -0.375rem !important;
    bottom: -0.375rem !important;
    left: -0.375rem !important;
  }

  .dark\:u--inset-2\.5{
    top: -0.625rem !important;
    right: -0.625rem !important;
    bottom: -0.625rem !important;
    left: -0.625rem !important;
  }

  .dark\:u--inset-3\.5{
    top: -0.875rem !important;
    right: -0.875rem !important;
    bottom: -0.875rem !important;
    left: -0.875rem !important;
  }

  .dark\:u-inset-1\/2{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .dark\:u-inset-1\/3{
    top: 33.333333% !important;
    right: 33.333333% !important;
    bottom: 33.333333% !important;
    left: 33.333333% !important;
  }

  .dark\:u-inset-2\/3{
    top: 66.666667% !important;
    right: 66.666667% !important;
    bottom: 66.666667% !important;
    left: 66.666667% !important;
  }

  .dark\:u-inset-1\/4{
    top: 25% !important;
    right: 25% !important;
    bottom: 25% !important;
    left: 25% !important;
  }

  .dark\:u-inset-2\/4{
    top: 50% !important;
    right: 50% !important;
    bottom: 50% !important;
    left: 50% !important;
  }

  .dark\:u-inset-3\/4{
    top: 75% !important;
    right: 75% !important;
    bottom: 75% !important;
    left: 75% !important;
  }

  .dark\:u-inset-full{
    top: 100% !important;
    right: 100% !important;
    bottom: 100% !important;
    left: 100% !important;
  }

  .dark\:u--inset-1\/2{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .dark\:u--inset-1\/3{
    top: -33.333333% !important;
    right: -33.333333% !important;
    bottom: -33.333333% !important;
    left: -33.333333% !important;
  }

  .dark\:u--inset-2\/3{
    top: -66.666667% !important;
    right: -66.666667% !important;
    bottom: -66.666667% !important;
    left: -66.666667% !important;
  }

  .dark\:u--inset-1\/4{
    top: -25% !important;
    right: -25% !important;
    bottom: -25% !important;
    left: -25% !important;
  }

  .dark\:u--inset-2\/4{
    top: -50% !important;
    right: -50% !important;
    bottom: -50% !important;
    left: -50% !important;
  }

  .dark\:u--inset-3\/4{
    top: -75% !important;
    right: -75% !important;
    bottom: -75% !important;
    left: -75% !important;
  }

  .dark\:u--inset-full{
    top: -100% !important;
    right: -100% !important;
    bottom: -100% !important;
    left: -100% !important;
  }

  .dark\:u-inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .dark\:u-inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .dark\:u-inset-y-1{
    top: 0.25rem !important;
    bottom: 0.25rem !important;
  }

  .dark\:u-inset-x-1{
    right: 0.25rem !important;
    left: 0.25rem !important;
  }

  .dark\:u-inset-y-2{
    top: 0.5rem !important;
    bottom: 0.5rem !important;
  }

  .dark\:u-inset-x-2{
    right: 0.5rem !important;
    left: 0.5rem !important;
  }

  .dark\:u-inset-y-3{
    top: 0.75rem !important;
    bottom: 0.75rem !important;
  }

  .dark\:u-inset-x-3{
    right: 0.75rem !important;
    left: 0.75rem !important;
  }

  .dark\:u-inset-y-4{
    top: 1rem !important;
    bottom: 1rem !important;
  }

  .dark\:u-inset-x-4{
    right: 1rem !important;
    left: 1rem !important;
  }

  .dark\:u-inset-y-5{
    top: 1.25rem !important;
    bottom: 1.25rem !important;
  }

  .dark\:u-inset-x-5{
    right: 1.25rem !important;
    left: 1.25rem !important;
  }

  .dark\:u-inset-y-6{
    top: 1.5rem !important;
    bottom: 1.5rem !important;
  }

  .dark\:u-inset-x-6{
    right: 1.5rem !important;
    left: 1.5rem !important;
  }

  .dark\:u-inset-y-7{
    top: 1.75rem !important;
    bottom: 1.75rem !important;
  }

  .dark\:u-inset-x-7{
    right: 1.75rem !important;
    left: 1.75rem !important;
  }

  .dark\:u-inset-y-8{
    top: 2rem !important;
    bottom: 2rem !important;
  }

  .dark\:u-inset-x-8{
    right: 2rem !important;
    left: 2rem !important;
  }

  .dark\:u-inset-y-9{
    top: 2.25rem !important;
    bottom: 2.25rem !important;
  }

  .dark\:u-inset-x-9{
    right: 2.25rem !important;
    left: 2.25rem !important;
  }

  .dark\:u-inset-y-10{
    top: 2.5rem !important;
    bottom: 2.5rem !important;
  }

  .dark\:u-inset-x-10{
    right: 2.5rem !important;
    left: 2.5rem !important;
  }

  .dark\:u-inset-y-11{
    top: 2.75rem !important;
    bottom: 2.75rem !important;
  }

  .dark\:u-inset-x-11{
    right: 2.75rem !important;
    left: 2.75rem !important;
  }

  .dark\:u-inset-y-12{
    top: 3rem !important;
    bottom: 3rem !important;
  }

  .dark\:u-inset-x-12{
    right: 3rem !important;
    left: 3rem !important;
  }

  .dark\:u-inset-y-14{
    top: 3.5rem !important;
    bottom: 3.5rem !important;
  }

  .dark\:u-inset-x-14{
    right: 3.5rem !important;
    left: 3.5rem !important;
  }

  .dark\:u-inset-y-16{
    top: 4rem !important;
    bottom: 4rem !important;
  }

  .dark\:u-inset-x-16{
    right: 4rem !important;
    left: 4rem !important;
  }

  .dark\:u-inset-y-20{
    top: 5rem !important;
    bottom: 5rem !important;
  }

  .dark\:u-inset-x-20{
    right: 5rem !important;
    left: 5rem !important;
  }

  .dark\:u-inset-y-24{
    top: 6rem !important;
    bottom: 6rem !important;
  }

  .dark\:u-inset-x-24{
    right: 6rem !important;
    left: 6rem !important;
  }

  .dark\:u-inset-y-28{
    top: 7rem !important;
    bottom: 7rem !important;
  }

  .dark\:u-inset-x-28{
    right: 7rem !important;
    left: 7rem !important;
  }

  .dark\:u-inset-y-32{
    top: 8rem !important;
    bottom: 8rem !important;
  }

  .dark\:u-inset-x-32{
    right: 8rem !important;
    left: 8rem !important;
  }

  .dark\:u-inset-y-36{
    top: 9rem !important;
    bottom: 9rem !important;
  }

  .dark\:u-inset-x-36{
    right: 9rem !important;
    left: 9rem !important;
  }

  .dark\:u-inset-y-40{
    top: 10rem !important;
    bottom: 10rem !important;
  }

  .dark\:u-inset-x-40{
    right: 10rem !important;
    left: 10rem !important;
  }

  .dark\:u-inset-y-44{
    top: 11rem !important;
    bottom: 11rem !important;
  }

  .dark\:u-inset-x-44{
    right: 11rem !important;
    left: 11rem !important;
  }

  .dark\:u-inset-y-48{
    top: 12rem !important;
    bottom: 12rem !important;
  }

  .dark\:u-inset-x-48{
    right: 12rem !important;
    left: 12rem !important;
  }

  .dark\:u-inset-y-52{
    top: 13rem !important;
    bottom: 13rem !important;
  }

  .dark\:u-inset-x-52{
    right: 13rem !important;
    left: 13rem !important;
  }

  .dark\:u-inset-y-56{
    top: 14rem !important;
    bottom: 14rem !important;
  }

  .dark\:u-inset-x-56{
    right: 14rem !important;
    left: 14rem !important;
  }

  .dark\:u-inset-y-60{
    top: 15rem !important;
    bottom: 15rem !important;
  }

  .dark\:u-inset-x-60{
    right: 15rem !important;
    left: 15rem !important;
  }

  .dark\:u-inset-y-64{
    top: 16rem !important;
    bottom: 16rem !important;
  }

  .dark\:u-inset-x-64{
    right: 16rem !important;
    left: 16rem !important;
  }

  .dark\:u-inset-y-72{
    top: 18rem !important;
    bottom: 18rem !important;
  }

  .dark\:u-inset-x-72{
    right: 18rem !important;
    left: 18rem !important;
  }

  .dark\:u-inset-y-80{
    top: 20rem !important;
    bottom: 20rem !important;
  }

  .dark\:u-inset-x-80{
    right: 20rem !important;
    left: 20rem !important;
  }

  .dark\:u-inset-y-96{
    top: 24rem !important;
    bottom: 24rem !important;
  }

  .dark\:u-inset-x-96{
    right: 24rem !important;
    left: 24rem !important;
  }

  .dark\:u-inset-y-auto{
    top: auto !important;
    bottom: auto !important;
  }

  .dark\:u-inset-x-auto{
    right: auto !important;
    left: auto !important;
  }

  .dark\:u-inset-y-px{
    top: 1px !important;
    bottom: 1px !important;
  }

  .dark\:u-inset-x-px{
    right: 1px !important;
    left: 1px !important;
  }

  .dark\:u-inset-y-0\.5{
    top: 0.125rem !important;
    bottom: 0.125rem !important;
  }

  .dark\:u-inset-x-0\.5{
    right: 0.125rem !important;
    left: 0.125rem !important;
  }

  .dark\:u-inset-y-1\.5{
    top: 0.375rem !important;
    bottom: 0.375rem !important;
  }

  .dark\:u-inset-x-1\.5{
    right: 0.375rem !important;
    left: 0.375rem !important;
  }

  .dark\:u-inset-y-2\.5{
    top: 0.625rem !important;
    bottom: 0.625rem !important;
  }

  .dark\:u-inset-x-2\.5{
    right: 0.625rem !important;
    left: 0.625rem !important;
  }

  .dark\:u-inset-y-3\.5{
    top: 0.875rem !important;
    bottom: 0.875rem !important;
  }

  .dark\:u-inset-x-3\.5{
    right: 0.875rem !important;
    left: 0.875rem !important;
  }

  .dark\:u--inset-y-0{
    top: 0px !important;
    bottom: 0px !important;
  }

  .dark\:u--inset-x-0{
    right: 0px !important;
    left: 0px !important;
  }

  .dark\:u--inset-y-1{
    top: -0.25rem !important;
    bottom: -0.25rem !important;
  }

  .dark\:u--inset-x-1{
    right: -0.25rem !important;
    left: -0.25rem !important;
  }

  .dark\:u--inset-y-2{
    top: -0.5rem !important;
    bottom: -0.5rem !important;
  }

  .dark\:u--inset-x-2{
    right: -0.5rem !important;
    left: -0.5rem !important;
  }

  .dark\:u--inset-y-3{
    top: -0.75rem !important;
    bottom: -0.75rem !important;
  }

  .dark\:u--inset-x-3{
    right: -0.75rem !important;
    left: -0.75rem !important;
  }

  .dark\:u--inset-y-4{
    top: -1rem !important;
    bottom: -1rem !important;
  }

  .dark\:u--inset-x-4{
    right: -1rem !important;
    left: -1rem !important;
  }

  .dark\:u--inset-y-5{
    top: -1.25rem !important;
    bottom: -1.25rem !important;
  }

  .dark\:u--inset-x-5{
    right: -1.25rem !important;
    left: -1.25rem !important;
  }

  .dark\:u--inset-y-6{
    top: -1.5rem !important;
    bottom: -1.5rem !important;
  }

  .dark\:u--inset-x-6{
    right: -1.5rem !important;
    left: -1.5rem !important;
  }

  .dark\:u--inset-y-7{
    top: -1.75rem !important;
    bottom: -1.75rem !important;
  }

  .dark\:u--inset-x-7{
    right: -1.75rem !important;
    left: -1.75rem !important;
  }

  .dark\:u--inset-y-8{
    top: -2rem !important;
    bottom: -2rem !important;
  }

  .dark\:u--inset-x-8{
    right: -2rem !important;
    left: -2rem !important;
  }

  .dark\:u--inset-y-9{
    top: -2.25rem !important;
    bottom: -2.25rem !important;
  }

  .dark\:u--inset-x-9{
    right: -2.25rem !important;
    left: -2.25rem !important;
  }

  .dark\:u--inset-y-10{
    top: -2.5rem !important;
    bottom: -2.5rem !important;
  }

  .dark\:u--inset-x-10{
    right: -2.5rem !important;
    left: -2.5rem !important;
  }

  .dark\:u--inset-y-11{
    top: -2.75rem !important;
    bottom: -2.75rem !important;
  }

  .dark\:u--inset-x-11{
    right: -2.75rem !important;
    left: -2.75rem !important;
  }

  .dark\:u--inset-y-12{
    top: -3rem !important;
    bottom: -3rem !important;
  }

  .dark\:u--inset-x-12{
    right: -3rem !important;
    left: -3rem !important;
  }

  .dark\:u--inset-y-14{
    top: -3.5rem !important;
    bottom: -3.5rem !important;
  }

  .dark\:u--inset-x-14{
    right: -3.5rem !important;
    left: -3.5rem !important;
  }

  .dark\:u--inset-y-16{
    top: -4rem !important;
    bottom: -4rem !important;
  }

  .dark\:u--inset-x-16{
    right: -4rem !important;
    left: -4rem !important;
  }

  .dark\:u--inset-y-20{
    top: -5rem !important;
    bottom: -5rem !important;
  }

  .dark\:u--inset-x-20{
    right: -5rem !important;
    left: -5rem !important;
  }

  .dark\:u--inset-y-24{
    top: -6rem !important;
    bottom: -6rem !important;
  }

  .dark\:u--inset-x-24{
    right: -6rem !important;
    left: -6rem !important;
  }

  .dark\:u--inset-y-28{
    top: -7rem !important;
    bottom: -7rem !important;
  }

  .dark\:u--inset-x-28{
    right: -7rem !important;
    left: -7rem !important;
  }

  .dark\:u--inset-y-32{
    top: -8rem !important;
    bottom: -8rem !important;
  }

  .dark\:u--inset-x-32{
    right: -8rem !important;
    left: -8rem !important;
  }

  .dark\:u--inset-y-36{
    top: -9rem !important;
    bottom: -9rem !important;
  }

  .dark\:u--inset-x-36{
    right: -9rem !important;
    left: -9rem !important;
  }

  .dark\:u--inset-y-40{
    top: -10rem !important;
    bottom: -10rem !important;
  }

  .dark\:u--inset-x-40{
    right: -10rem !important;
    left: -10rem !important;
  }

  .dark\:u--inset-y-44{
    top: -11rem !important;
    bottom: -11rem !important;
  }

  .dark\:u--inset-x-44{
    right: -11rem !important;
    left: -11rem !important;
  }

  .dark\:u--inset-y-48{
    top: -12rem !important;
    bottom: -12rem !important;
  }

  .dark\:u--inset-x-48{
    right: -12rem !important;
    left: -12rem !important;
  }

  .dark\:u--inset-y-52{
    top: -13rem !important;
    bottom: -13rem !important;
  }

  .dark\:u--inset-x-52{
    right: -13rem !important;
    left: -13rem !important;
  }

  .dark\:u--inset-y-56{
    top: -14rem !important;
    bottom: -14rem !important;
  }

  .dark\:u--inset-x-56{
    right: -14rem !important;
    left: -14rem !important;
  }

  .dark\:u--inset-y-60{
    top: -15rem !important;
    bottom: -15rem !important;
  }

  .dark\:u--inset-x-60{
    right: -15rem !important;
    left: -15rem !important;
  }

  .dark\:u--inset-y-64{
    top: -16rem !important;
    bottom: -16rem !important;
  }

  .dark\:u--inset-x-64{
    right: -16rem !important;
    left: -16rem !important;
  }

  .dark\:u--inset-y-72{
    top: -18rem !important;
    bottom: -18rem !important;
  }

  .dark\:u--inset-x-72{
    right: -18rem !important;
    left: -18rem !important;
  }

  .dark\:u--inset-y-80{
    top: -20rem !important;
    bottom: -20rem !important;
  }

  .dark\:u--inset-x-80{
    right: -20rem !important;
    left: -20rem !important;
  }

  .dark\:u--inset-y-96{
    top: -24rem !important;
    bottom: -24rem !important;
  }

  .dark\:u--inset-x-96{
    right: -24rem !important;
    left: -24rem !important;
  }

  .dark\:u--inset-y-px{
    top: -1px !important;
    bottom: -1px !important;
  }

  .dark\:u--inset-x-px{
    right: -1px !important;
    left: -1px !important;
  }

  .dark\:u--inset-y-0\.5{
    top: -0.125rem !important;
    bottom: -0.125rem !important;
  }

  .dark\:u--inset-x-0\.5{
    right: -0.125rem !important;
    left: -0.125rem !important;
  }

  .dark\:u--inset-y-1\.5{
    top: -0.375rem !important;
    bottom: -0.375rem !important;
  }

  .dark\:u--inset-x-1\.5{
    right: -0.375rem !important;
    left: -0.375rem !important;
  }

  .dark\:u--inset-y-2\.5{
    top: -0.625rem !important;
    bottom: -0.625rem !important;
  }

  .dark\:u--inset-x-2\.5{
    right: -0.625rem !important;
    left: -0.625rem !important;
  }

  .dark\:u--inset-y-3\.5{
    top: -0.875rem !important;
    bottom: -0.875rem !important;
  }

  .dark\:u--inset-x-3\.5{
    right: -0.875rem !important;
    left: -0.875rem !important;
  }

  .dark\:u-inset-y-1\/2{
    top: 50% !important;
    bottom: 50% !important;
  }

  .dark\:u-inset-x-1\/2{
    right: 50% !important;
    left: 50% !important;
  }

  .dark\:u-inset-y-1\/3{
    top: 33.333333% !important;
    bottom: 33.333333% !important;
  }

  .dark\:u-inset-x-1\/3{
    right: 33.333333% !important;
    left: 33.333333% !important;
  }

  .dark\:u-inset-y-2\/3{
    top: 66.666667% !important;
    bottom: 66.666667% !important;
  }

  .dark\:u-inset-x-2\/3{
    right: 66.666667% !important;
    left: 66.666667% !important;
  }

  .dark\:u-inset-y-1\/4{
    top: 25% !important;
    bottom: 25% !important;
  }

  .dark\:u-inset-x-1\/4{
    right: 25% !important;
    left: 25% !important;
  }

  .dark\:u-inset-y-2\/4{
    top: 50% !important;
    bottom: 50% !important;
  }

  .dark\:u-inset-x-2\/4{
    right: 50% !important;
    left: 50% !important;
  }

  .dark\:u-inset-y-3\/4{
    top: 75% !important;
    bottom: 75% !important;
  }

  .dark\:u-inset-x-3\/4{
    right: 75% !important;
    left: 75% !important;
  }

  .dark\:u-inset-y-full{
    top: 100% !important;
    bottom: 100% !important;
  }

  .dark\:u-inset-x-full{
    right: 100% !important;
    left: 100% !important;
  }

  .dark\:u--inset-y-1\/2{
    top: -50% !important;
    bottom: -50% !important;
  }

  .dark\:u--inset-x-1\/2{
    right: -50% !important;
    left: -50% !important;
  }

  .dark\:u--inset-y-1\/3{
    top: -33.333333% !important;
    bottom: -33.333333% !important;
  }

  .dark\:u--inset-x-1\/3{
    right: -33.333333% !important;
    left: -33.333333% !important;
  }

  .dark\:u--inset-y-2\/3{
    top: -66.666667% !important;
    bottom: -66.666667% !important;
  }

  .dark\:u--inset-x-2\/3{
    right: -66.666667% !important;
    left: -66.666667% !important;
  }

  .dark\:u--inset-y-1\/4{
    top: -25% !important;
    bottom: -25% !important;
  }

  .dark\:u--inset-x-1\/4{
    right: -25% !important;
    left: -25% !important;
  }

  .dark\:u--inset-y-2\/4{
    top: -50% !important;
    bottom: -50% !important;
  }

  .dark\:u--inset-x-2\/4{
    right: -50% !important;
    left: -50% !important;
  }

  .dark\:u--inset-y-3\/4{
    top: -75% !important;
    bottom: -75% !important;
  }

  .dark\:u--inset-x-3\/4{
    right: -75% !important;
    left: -75% !important;
  }

  .dark\:u--inset-y-full{
    top: -100% !important;
    bottom: -100% !important;
  }

  .dark\:u--inset-x-full{
    right: -100% !important;
    left: -100% !important;
  }

  .dark\:u-top-0{
    top: 0px !important;
  }

  .dark\:u-right-0{
    right: 0px !important;
  }

  .dark\:u-bottom-0{
    bottom: 0px !important;
  }

  .dark\:u-left-0{
    left: 0px !important;
  }

  .dark\:u-top-1{
    top: 0.25rem !important;
  }

  .dark\:u-right-1{
    right: 0.25rem !important;
  }

  .dark\:u-bottom-1{
    bottom: 0.25rem !important;
  }

  .dark\:u-left-1{
    left: 0.25rem !important;
  }

  .dark\:u-top-2{
    top: 0.5rem !important;
  }

  .dark\:u-right-2{
    right: 0.5rem !important;
  }

  .dark\:u-bottom-2{
    bottom: 0.5rem !important;
  }

  .dark\:u-left-2{
    left: 0.5rem !important;
  }

  .dark\:u-top-3{
    top: 0.75rem !important;
  }

  .dark\:u-right-3{
    right: 0.75rem !important;
  }

  .dark\:u-bottom-3{
    bottom: 0.75rem !important;
  }

  .dark\:u-left-3{
    left: 0.75rem !important;
  }

  .dark\:u-top-4{
    top: 1rem !important;
  }

  .dark\:u-right-4{
    right: 1rem !important;
  }

  .dark\:u-bottom-4{
    bottom: 1rem !important;
  }

  .dark\:u-left-4{
    left: 1rem !important;
  }

  .dark\:u-top-5{
    top: 1.25rem !important;
  }

  .dark\:u-right-5{
    right: 1.25rem !important;
  }

  .dark\:u-bottom-5{
    bottom: 1.25rem !important;
  }

  .dark\:u-left-5{
    left: 1.25rem !important;
  }

  .dark\:u-top-6{
    top: 1.5rem !important;
  }

  .dark\:u-right-6{
    right: 1.5rem !important;
  }

  .dark\:u-bottom-6{
    bottom: 1.5rem !important;
  }

  .dark\:u-left-6{
    left: 1.5rem !important;
  }

  .dark\:u-top-7{
    top: 1.75rem !important;
  }

  .dark\:u-right-7{
    right: 1.75rem !important;
  }

  .dark\:u-bottom-7{
    bottom: 1.75rem !important;
  }

  .dark\:u-left-7{
    left: 1.75rem !important;
  }

  .dark\:u-top-8{
    top: 2rem !important;
  }

  .dark\:u-right-8{
    right: 2rem !important;
  }

  .dark\:u-bottom-8{
    bottom: 2rem !important;
  }

  .dark\:u-left-8{
    left: 2rem !important;
  }

  .dark\:u-top-9{
    top: 2.25rem !important;
  }

  .dark\:u-right-9{
    right: 2.25rem !important;
  }

  .dark\:u-bottom-9{
    bottom: 2.25rem !important;
  }

  .dark\:u-left-9{
    left: 2.25rem !important;
  }

  .dark\:u-top-10{
    top: 2.5rem !important;
  }

  .dark\:u-right-10{
    right: 2.5rem !important;
  }

  .dark\:u-bottom-10{
    bottom: 2.5rem !important;
  }

  .dark\:u-left-10{
    left: 2.5rem !important;
  }

  .dark\:u-top-11{
    top: 2.75rem !important;
  }

  .dark\:u-right-11{
    right: 2.75rem !important;
  }

  .dark\:u-bottom-11{
    bottom: 2.75rem !important;
  }

  .dark\:u-left-11{
    left: 2.75rem !important;
  }

  .dark\:u-top-12{
    top: 3rem !important;
  }

  .dark\:u-right-12{
    right: 3rem !important;
  }

  .dark\:u-bottom-12{
    bottom: 3rem !important;
  }

  .dark\:u-left-12{
    left: 3rem !important;
  }

  .dark\:u-top-14{
    top: 3.5rem !important;
  }

  .dark\:u-right-14{
    right: 3.5rem !important;
  }

  .dark\:u-bottom-14{
    bottom: 3.5rem !important;
  }

  .dark\:u-left-14{
    left: 3.5rem !important;
  }

  .dark\:u-top-16{
    top: 4rem !important;
  }

  .dark\:u-right-16{
    right: 4rem !important;
  }

  .dark\:u-bottom-16{
    bottom: 4rem !important;
  }

  .dark\:u-left-16{
    left: 4rem !important;
  }

  .dark\:u-top-20{
    top: 5rem !important;
  }

  .dark\:u-right-20{
    right: 5rem !important;
  }

  .dark\:u-bottom-20{
    bottom: 5rem !important;
  }

  .dark\:u-left-20{
    left: 5rem !important;
  }

  .dark\:u-top-24{
    top: 6rem !important;
  }

  .dark\:u-right-24{
    right: 6rem !important;
  }

  .dark\:u-bottom-24{
    bottom: 6rem !important;
  }

  .dark\:u-left-24{
    left: 6rem !important;
  }

  .dark\:u-top-28{
    top: 7rem !important;
  }

  .dark\:u-right-28{
    right: 7rem !important;
  }

  .dark\:u-bottom-28{
    bottom: 7rem !important;
  }

  .dark\:u-left-28{
    left: 7rem !important;
  }

  .dark\:u-top-32{
    top: 8rem !important;
  }

  .dark\:u-right-32{
    right: 8rem !important;
  }

  .dark\:u-bottom-32{
    bottom: 8rem !important;
  }

  .dark\:u-left-32{
    left: 8rem !important;
  }

  .dark\:u-top-36{
    top: 9rem !important;
  }

  .dark\:u-right-36{
    right: 9rem !important;
  }

  .dark\:u-bottom-36{
    bottom: 9rem !important;
  }

  .dark\:u-left-36{
    left: 9rem !important;
  }

  .dark\:u-top-40{
    top: 10rem !important;
  }

  .dark\:u-right-40{
    right: 10rem !important;
  }

  .dark\:u-bottom-40{
    bottom: 10rem !important;
  }

  .dark\:u-left-40{
    left: 10rem !important;
  }

  .dark\:u-top-44{
    top: 11rem !important;
  }

  .dark\:u-right-44{
    right: 11rem !important;
  }

  .dark\:u-bottom-44{
    bottom: 11rem !important;
  }

  .dark\:u-left-44{
    left: 11rem !important;
  }

  .dark\:u-top-48{
    top: 12rem !important;
  }

  .dark\:u-right-48{
    right: 12rem !important;
  }

  .dark\:u-bottom-48{
    bottom: 12rem !important;
  }

  .dark\:u-left-48{
    left: 12rem !important;
  }

  .dark\:u-top-52{
    top: 13rem !important;
  }

  .dark\:u-right-52{
    right: 13rem !important;
  }

  .dark\:u-bottom-52{
    bottom: 13rem !important;
  }

  .dark\:u-left-52{
    left: 13rem !important;
  }

  .dark\:u-top-56{
    top: 14rem !important;
  }

  .dark\:u-right-56{
    right: 14rem !important;
  }

  .dark\:u-bottom-56{
    bottom: 14rem !important;
  }

  .dark\:u-left-56{
    left: 14rem !important;
  }

  .dark\:u-top-60{
    top: 15rem !important;
  }

  .dark\:u-right-60{
    right: 15rem !important;
  }

  .dark\:u-bottom-60{
    bottom: 15rem !important;
  }

  .dark\:u-left-60{
    left: 15rem !important;
  }

  .dark\:u-top-64{
    top: 16rem !important;
  }

  .dark\:u-right-64{
    right: 16rem !important;
  }

  .dark\:u-bottom-64{
    bottom: 16rem !important;
  }

  .dark\:u-left-64{
    left: 16rem !important;
  }

  .dark\:u-top-72{
    top: 18rem !important;
  }

  .dark\:u-right-72{
    right: 18rem !important;
  }

  .dark\:u-bottom-72{
    bottom: 18rem !important;
  }

  .dark\:u-left-72{
    left: 18rem !important;
  }

  .dark\:u-top-80{
    top: 20rem !important;
  }

  .dark\:u-right-80{
    right: 20rem !important;
  }

  .dark\:u-bottom-80{
    bottom: 20rem !important;
  }

  .dark\:u-left-80{
    left: 20rem !important;
  }

  .dark\:u-top-96{
    top: 24rem !important;
  }

  .dark\:u-right-96{
    right: 24rem !important;
  }

  .dark\:u-bottom-96{
    bottom: 24rem !important;
  }

  .dark\:u-left-96{
    left: 24rem !important;
  }

  .dark\:u-top-auto{
    top: auto !important;
  }

  .dark\:u-right-auto{
    right: auto !important;
  }

  .dark\:u-bottom-auto{
    bottom: auto !important;
  }

  .dark\:u-left-auto{
    left: auto !important;
  }

  .dark\:u-top-px{
    top: 1px !important;
  }

  .dark\:u-right-px{
    right: 1px !important;
  }

  .dark\:u-bottom-px{
    bottom: 1px !important;
  }

  .dark\:u-left-px{
    left: 1px !important;
  }

  .dark\:u-top-0\.5{
    top: 0.125rem !important;
  }

  .dark\:u-right-0\.5{
    right: 0.125rem !important;
  }

  .dark\:u-bottom-0\.5{
    bottom: 0.125rem !important;
  }

  .dark\:u-left-0\.5{
    left: 0.125rem !important;
  }

  .dark\:u-top-1\.5{
    top: 0.375rem !important;
  }

  .dark\:u-right-1\.5{
    right: 0.375rem !important;
  }

  .dark\:u-bottom-1\.5{
    bottom: 0.375rem !important;
  }

  .dark\:u-left-1\.5{
    left: 0.375rem !important;
  }

  .dark\:u-top-2\.5{
    top: 0.625rem !important;
  }

  .dark\:u-right-2\.5{
    right: 0.625rem !important;
  }

  .dark\:u-bottom-2\.5{
    bottom: 0.625rem !important;
  }

  .dark\:u-left-2\.5{
    left: 0.625rem !important;
  }

  .dark\:u-top-3\.5{
    top: 0.875rem !important;
  }

  .dark\:u-right-3\.5{
    right: 0.875rem !important;
  }

  .dark\:u-bottom-3\.5{
    bottom: 0.875rem !important;
  }

  .dark\:u-left-3\.5{
    left: 0.875rem !important;
  }

  .dark\:u--top-0{
    top: 0px !important;
  }

  .dark\:u--right-0{
    right: 0px !important;
  }

  .dark\:u--bottom-0{
    bottom: 0px !important;
  }

  .dark\:u--left-0{
    left: 0px !important;
  }

  .dark\:u--top-1{
    top: -0.25rem !important;
  }

  .dark\:u--right-1{
    right: -0.25rem !important;
  }

  .dark\:u--bottom-1{
    bottom: -0.25rem !important;
  }

  .dark\:u--left-1{
    left: -0.25rem !important;
  }

  .dark\:u--top-2{
    top: -0.5rem !important;
  }

  .dark\:u--right-2{
    right: -0.5rem !important;
  }

  .dark\:u--bottom-2{
    bottom: -0.5rem !important;
  }

  .dark\:u--left-2{
    left: -0.5rem !important;
  }

  .dark\:u--top-3{
    top: -0.75rem !important;
  }

  .dark\:u--right-3{
    right: -0.75rem !important;
  }

  .dark\:u--bottom-3{
    bottom: -0.75rem !important;
  }

  .dark\:u--left-3{
    left: -0.75rem !important;
  }

  .dark\:u--top-4{
    top: -1rem !important;
  }

  .dark\:u--right-4{
    right: -1rem !important;
  }

  .dark\:u--bottom-4{
    bottom: -1rem !important;
  }

  .dark\:u--left-4{
    left: -1rem !important;
  }

  .dark\:u--top-5{
    top: -1.25rem !important;
  }

  .dark\:u--right-5{
    right: -1.25rem !important;
  }

  .dark\:u--bottom-5{
    bottom: -1.25rem !important;
  }

  .dark\:u--left-5{
    left: -1.25rem !important;
  }

  .dark\:u--top-6{
    top: -1.5rem !important;
  }

  .dark\:u--right-6{
    right: -1.5rem !important;
  }

  .dark\:u--bottom-6{
    bottom: -1.5rem !important;
  }

  .dark\:u--left-6{
    left: -1.5rem !important;
  }

  .dark\:u--top-7{
    top: -1.75rem !important;
  }

  .dark\:u--right-7{
    right: -1.75rem !important;
  }

  .dark\:u--bottom-7{
    bottom: -1.75rem !important;
  }

  .dark\:u--left-7{
    left: -1.75rem !important;
  }

  .dark\:u--top-8{
    top: -2rem !important;
  }

  .dark\:u--right-8{
    right: -2rem !important;
  }

  .dark\:u--bottom-8{
    bottom: -2rem !important;
  }

  .dark\:u--left-8{
    left: -2rem !important;
  }

  .dark\:u--top-9{
    top: -2.25rem !important;
  }

  .dark\:u--right-9{
    right: -2.25rem !important;
  }

  .dark\:u--bottom-9{
    bottom: -2.25rem !important;
  }

  .dark\:u--left-9{
    left: -2.25rem !important;
  }

  .dark\:u--top-10{
    top: -2.5rem !important;
  }

  .dark\:u--right-10{
    right: -2.5rem !important;
  }

  .dark\:u--bottom-10{
    bottom: -2.5rem !important;
  }

  .dark\:u--left-10{
    left: -2.5rem !important;
  }

  .dark\:u--top-11{
    top: -2.75rem !important;
  }

  .dark\:u--right-11{
    right: -2.75rem !important;
  }

  .dark\:u--bottom-11{
    bottom: -2.75rem !important;
  }

  .dark\:u--left-11{
    left: -2.75rem !important;
  }

  .dark\:u--top-12{
    top: -3rem !important;
  }

  .dark\:u--right-12{
    right: -3rem !important;
  }

  .dark\:u--bottom-12{
    bottom: -3rem !important;
  }

  .dark\:u--left-12{
    left: -3rem !important;
  }

  .dark\:u--top-14{
    top: -3.5rem !important;
  }

  .dark\:u--right-14{
    right: -3.5rem !important;
  }

  .dark\:u--bottom-14{
    bottom: -3.5rem !important;
  }

  .dark\:u--left-14{
    left: -3.5rem !important;
  }

  .dark\:u--top-16{
    top: -4rem !important;
  }

  .dark\:u--right-16{
    right: -4rem !important;
  }

  .dark\:u--bottom-16{
    bottom: -4rem !important;
  }

  .dark\:u--left-16{
    left: -4rem !important;
  }

  .dark\:u--top-20{
    top: -5rem !important;
  }

  .dark\:u--right-20{
    right: -5rem !important;
  }

  .dark\:u--bottom-20{
    bottom: -5rem !important;
  }

  .dark\:u--left-20{
    left: -5rem !important;
  }

  .dark\:u--top-24{
    top: -6rem !important;
  }

  .dark\:u--right-24{
    right: -6rem !important;
  }

  .dark\:u--bottom-24{
    bottom: -6rem !important;
  }

  .dark\:u--left-24{
    left: -6rem !important;
  }

  .dark\:u--top-28{
    top: -7rem !important;
  }

  .dark\:u--right-28{
    right: -7rem !important;
  }

  .dark\:u--bottom-28{
    bottom: -7rem !important;
  }

  .dark\:u--left-28{
    left: -7rem !important;
  }

  .dark\:u--top-32{
    top: -8rem !important;
  }

  .dark\:u--right-32{
    right: -8rem !important;
  }

  .dark\:u--bottom-32{
    bottom: -8rem !important;
  }

  .dark\:u--left-32{
    left: -8rem !important;
  }

  .dark\:u--top-36{
    top: -9rem !important;
  }

  .dark\:u--right-36{
    right: -9rem !important;
  }

  .dark\:u--bottom-36{
    bottom: -9rem !important;
  }

  .dark\:u--left-36{
    left: -9rem !important;
  }

  .dark\:u--top-40{
    top: -10rem !important;
  }

  .dark\:u--right-40{
    right: -10rem !important;
  }

  .dark\:u--bottom-40{
    bottom: -10rem !important;
  }

  .dark\:u--left-40{
    left: -10rem !important;
  }

  .dark\:u--top-44{
    top: -11rem !important;
  }

  .dark\:u--right-44{
    right: -11rem !important;
  }

  .dark\:u--bottom-44{
    bottom: -11rem !important;
  }

  .dark\:u--left-44{
    left: -11rem !important;
  }

  .dark\:u--top-48{
    top: -12rem !important;
  }

  .dark\:u--right-48{
    right: -12rem !important;
  }

  .dark\:u--bottom-48{
    bottom: -12rem !important;
  }

  .dark\:u--left-48{
    left: -12rem !important;
  }

  .dark\:u--top-52{
    top: -13rem !important;
  }

  .dark\:u--right-52{
    right: -13rem !important;
  }

  .dark\:u--bottom-52{
    bottom: -13rem !important;
  }

  .dark\:u--left-52{
    left: -13rem !important;
  }

  .dark\:u--top-56{
    top: -14rem !important;
  }

  .dark\:u--right-56{
    right: -14rem !important;
  }

  .dark\:u--bottom-56{
    bottom: -14rem !important;
  }

  .dark\:u--left-56{
    left: -14rem !important;
  }

  .dark\:u--top-60{
    top: -15rem !important;
  }

  .dark\:u--right-60{
    right: -15rem !important;
  }

  .dark\:u--bottom-60{
    bottom: -15rem !important;
  }

  .dark\:u--left-60{
    left: -15rem !important;
  }

  .dark\:u--top-64{
    top: -16rem !important;
  }

  .dark\:u--right-64{
    right: -16rem !important;
  }

  .dark\:u--bottom-64{
    bottom: -16rem !important;
  }

  .dark\:u--left-64{
    left: -16rem !important;
  }

  .dark\:u--top-72{
    top: -18rem !important;
  }

  .dark\:u--right-72{
    right: -18rem !important;
  }

  .dark\:u--bottom-72{
    bottom: -18rem !important;
  }

  .dark\:u--left-72{
    left: -18rem !important;
  }

  .dark\:u--top-80{
    top: -20rem !important;
  }

  .dark\:u--right-80{
    right: -20rem !important;
  }

  .dark\:u--bottom-80{
    bottom: -20rem !important;
  }

  .dark\:u--left-80{
    left: -20rem !important;
  }

  .dark\:u--top-96{
    top: -24rem !important;
  }

  .dark\:u--right-96{
    right: -24rem !important;
  }

  .dark\:u--bottom-96{
    bottom: -24rem !important;
  }

  .dark\:u--left-96{
    left: -24rem !important;
  }

  .dark\:u--top-px{
    top: -1px !important;
  }

  .dark\:u--right-px{
    right: -1px !important;
  }

  .dark\:u--bottom-px{
    bottom: -1px !important;
  }

  .dark\:u--left-px{
    left: -1px !important;
  }

  .dark\:u--top-0\.5{
    top: -0.125rem !important;
  }

  .dark\:u--right-0\.5{
    right: -0.125rem !important;
  }

  .dark\:u--bottom-0\.5{
    bottom: -0.125rem !important;
  }

  .dark\:u--left-0\.5{
    left: -0.125rem !important;
  }

  .dark\:u--top-1\.5{
    top: -0.375rem !important;
  }

  .dark\:u--right-1\.5{
    right: -0.375rem !important;
  }

  .dark\:u--bottom-1\.5{
    bottom: -0.375rem !important;
  }

  .dark\:u--left-1\.5{
    left: -0.375rem !important;
  }

  .dark\:u--top-2\.5{
    top: -0.625rem !important;
  }

  .dark\:u--right-2\.5{
    right: -0.625rem !important;
  }

  .dark\:u--bottom-2\.5{
    bottom: -0.625rem !important;
  }

  .dark\:u--left-2\.5{
    left: -0.625rem !important;
  }

  .dark\:u--top-3\.5{
    top: -0.875rem !important;
  }

  .dark\:u--right-3\.5{
    right: -0.875rem !important;
  }

  .dark\:u--bottom-3\.5{
    bottom: -0.875rem !important;
  }

  .dark\:u--left-3\.5{
    left: -0.875rem !important;
  }

  .dark\:u-top-1\/2{
    top: 50% !important;
  }

  .dark\:u-right-1\/2{
    right: 50% !important;
  }

  .dark\:u-bottom-1\/2{
    bottom: 50% !important;
  }

  .dark\:u-left-1\/2{
    left: 50% !important;
  }

  .dark\:u-top-1\/3{
    top: 33.333333% !important;
  }

  .dark\:u-right-1\/3{
    right: 33.333333% !important;
  }

  .dark\:u-bottom-1\/3{
    bottom: 33.333333% !important;
  }

  .dark\:u-left-1\/3{
    left: 33.333333% !important;
  }

  .dark\:u-top-2\/3{
    top: 66.666667% !important;
  }

  .dark\:u-right-2\/3{
    right: 66.666667% !important;
  }

  .dark\:u-bottom-2\/3{
    bottom: 66.666667% !important;
  }

  .dark\:u-left-2\/3{
    left: 66.666667% !important;
  }

  .dark\:u-top-1\/4{
    top: 25% !important;
  }

  .dark\:u-right-1\/4{
    right: 25% !important;
  }

  .dark\:u-bottom-1\/4{
    bottom: 25% !important;
  }

  .dark\:u-left-1\/4{
    left: 25% !important;
  }

  .dark\:u-top-2\/4{
    top: 50% !important;
  }

  .dark\:u-right-2\/4{
    right: 50% !important;
  }

  .dark\:u-bottom-2\/4{
    bottom: 50% !important;
  }

  .dark\:u-left-2\/4{
    left: 50% !important;
  }

  .dark\:u-top-3\/4{
    top: 75% !important;
  }

  .dark\:u-right-3\/4{
    right: 75% !important;
  }

  .dark\:u-bottom-3\/4{
    bottom: 75% !important;
  }

  .dark\:u-left-3\/4{
    left: 75% !important;
  }

  .dark\:u-top-full{
    top: 100% !important;
  }

  .dark\:u-right-full{
    right: 100% !important;
  }

  .dark\:u-bottom-full{
    bottom: 100% !important;
  }

  .dark\:u-left-full{
    left: 100% !important;
  }

  .dark\:u--top-1\/2{
    top: -50% !important;
  }

  .dark\:u--right-1\/2{
    right: -50% !important;
  }

  .dark\:u--bottom-1\/2{
    bottom: -50% !important;
  }

  .dark\:u--left-1\/2{
    left: -50% !important;
  }

  .dark\:u--top-1\/3{
    top: -33.333333% !important;
  }

  .dark\:u--right-1\/3{
    right: -33.333333% !important;
  }

  .dark\:u--bottom-1\/3{
    bottom: -33.333333% !important;
  }

  .dark\:u--left-1\/3{
    left: -33.333333% !important;
  }

  .dark\:u--top-2\/3{
    top: -66.666667% !important;
  }

  .dark\:u--right-2\/3{
    right: -66.666667% !important;
  }

  .dark\:u--bottom-2\/3{
    bottom: -66.666667% !important;
  }

  .dark\:u--left-2\/3{
    left: -66.666667% !important;
  }

  .dark\:u--top-1\/4{
    top: -25% !important;
  }

  .dark\:u--right-1\/4{
    right: -25% !important;
  }

  .dark\:u--bottom-1\/4{
    bottom: -25% !important;
  }

  .dark\:u--left-1\/4{
    left: -25% !important;
  }

  .dark\:u--top-2\/4{
    top: -50% !important;
  }

  .dark\:u--right-2\/4{
    right: -50% !important;
  }

  .dark\:u--bottom-2\/4{
    bottom: -50% !important;
  }

  .dark\:u--left-2\/4{
    left: -50% !important;
  }

  .dark\:u--top-3\/4{
    top: -75% !important;
  }

  .dark\:u--right-3\/4{
    right: -75% !important;
  }

  .dark\:u--bottom-3\/4{
    bottom: -75% !important;
  }

  .dark\:u--left-3\/4{
    left: -75% !important;
  }

  .dark\:u--top-full{
    top: -100% !important;
  }

  .dark\:u--right-full{
    right: -100% !important;
  }

  .dark\:u--bottom-full{
    bottom: -100% !important;
  }

  .dark\:u--left-full{
    left: -100% !important;
  }

  .dark\:u-resize-none{
    resize: none !important;
  }

  .dark\:u-resize-y{
    resize: vertical !important;
  }

  .dark\:u-resize-x{
    resize: horizontal !important;
  }

  .dark\:u-resize{
    resize: both !important;
  }

  .dark\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-sm{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-md{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-lg{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-xl{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-2xl{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-inner{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-none{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .u-group:hover .dark\:group-hover\:u-shadow-3xl{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-sm:focus-within{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow:focus-within{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-md:focus-within{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-lg:focus-within{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-xl:focus-within{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-2xl:focus-within{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-inner:focus-within{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-none:focus-within{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus-within\:u-shadow-3xl:focus-within{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-sm:hover{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow:hover{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-md:hover{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-lg:hover{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-xl:hover{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-2xl:hover{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-inner:hover{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-none:hover{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:hover\:u-shadow-3xl:hover{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-sm:focus{
    --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow:focus{
    --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-md:focus{
    --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-lg:focus{
    --tw-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-xl:focus{
    --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-2xl:focus{
    --tw-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-inner:focus{
    --tw-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-none:focus{
    --tw-shadow: 0 0 #0000 !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:focus\:u-shadow-3xl:focus{
    --tw-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.1) !important;
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow) !important;
  }

  .dark\:u-ring-0{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:u-ring-1{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:u-ring-2{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:u-ring-4{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:u-ring-8{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:u-ring{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:u-ring-inset{
    --tw-ring-inset: inset !important;
  }

  .dark\:focus-within\:u-ring-0:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus-within\:u-ring-1:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus-within\:u-ring-2:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus-within\:u-ring-4:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus-within\:u-ring-8:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus-within\:u-ring:focus-within{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus-within\:u-ring-inset:focus-within{
    --tw-ring-inset: inset !important;
  }

  .dark\:focus\:u-ring-0:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus\:u-ring-1:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus\:u-ring-2:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus\:u-ring-4:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(4px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus\:u-ring-8:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(8px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus\:u-ring:focus{
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important;
  }

  .dark\:focus\:u-ring-inset:focus{
    --tw-ring-inset: inset !important;
  }

  .dark\:u-ring-offset-black{
    --tw-ring-offset-color: #000 !important;
  }

  .dark\:u-ring-offset-white{
    --tw-ring-offset-color: #fff !important;
  }

  .dark\:u-ring-offset-faded{
    --tw-ring-offset-color: #818181 !important;
  }

  .dark\:u-ring-offset-transparent{
    --tw-ring-offset-color: transparent !important;
  }

  .dark\:u-ring-offset-neutral-1{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .dark\:u-ring-offset-neutral-10{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .dark\:u-ring-offset-neutral-15{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .dark\:u-ring-offset-neutral-20{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .dark\:u-ring-offset-neutral-30{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .dark\:u-ring-offset-neutral-40{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .dark\:u-ring-offset-neutral-45{
    --tw-ring-offset-color: #494949 !important;
  }

  .dark\:u-ring-offset-neutral-50{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .dark\:u-ring-offset-neutral-60{
    --tw-ring-offset-color: #000000 !important;
  }

  .dark\:u-ring-offset-primary-0{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .dark\:u-ring-offset-primary-10{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .dark\:u-ring-offset-primary-20{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .dark\:u-ring-offset-primary-30{
    --tw-ring-offset-color: #489FDA !important;
  }

  .dark\:u-ring-offset-primary-40{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .dark\:u-ring-offset-primary-50{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .dark\:u-ring-offset-primary-60{
    --tw-ring-offset-color: #144160 !important;
  }

  .dark\:u-ring-offset-secundary-0{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .dark\:u-ring-offset-secundary-10{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .dark\:u-ring-offset-secundary-20{
    --tw-ring-offset-color: #93D78B !important;
  }

  .dark\:u-ring-offset-secundary-30{
    --tw-ring-offset-color: #61C556 !important;
  }

  .dark\:u-ring-offset-secundary-40{
    --tw-ring-offset-color: #409E36 !important;
  }

  .dark\:u-ring-offset-secundary-50{
    --tw-ring-offset-color: #317829 !important;
  }

  .dark\:u-ring-offset-secundary-60{
    --tw-ring-offset-color: #21521C !important;
  }

  .dark\:u-ring-offset-success{
    --tw-ring-offset-color: #296A33 !important;
  }

  .dark\:u-ring-offset-danger{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .dark\:focus-within\:u-ring-offset-black:focus-within{
    --tw-ring-offset-color: #000 !important;
  }

  .dark\:focus-within\:u-ring-offset-white:focus-within{
    --tw-ring-offset-color: #fff !important;
  }

  .dark\:focus-within\:u-ring-offset-faded:focus-within{
    --tw-ring-offset-color: #818181 !important;
  }

  .dark\:focus-within\:u-ring-offset-transparent:focus-within{
    --tw-ring-offset-color: transparent !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-1:focus-within{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-10:focus-within{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-15:focus-within{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-20:focus-within{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-30:focus-within{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-40:focus-within{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-45:focus-within{
    --tw-ring-offset-color: #494949 !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-50:focus-within{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .dark\:focus-within\:u-ring-offset-neutral-60:focus-within{
    --tw-ring-offset-color: #000000 !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-0:focus-within{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-10:focus-within{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-20:focus-within{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-30:focus-within{
    --tw-ring-offset-color: #489FDA !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-40:focus-within{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-50:focus-within{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .dark\:focus-within\:u-ring-offset-primary-60:focus-within{
    --tw-ring-offset-color: #144160 !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-0:focus-within{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-10:focus-within{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-20:focus-within{
    --tw-ring-offset-color: #93D78B !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-30:focus-within{
    --tw-ring-offset-color: #61C556 !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-40:focus-within{
    --tw-ring-offset-color: #409E36 !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-50:focus-within{
    --tw-ring-offset-color: #317829 !important;
  }

  .dark\:focus-within\:u-ring-offset-secundary-60:focus-within{
    --tw-ring-offset-color: #21521C !important;
  }

  .dark\:focus-within\:u-ring-offset-success:focus-within{
    --tw-ring-offset-color: #296A33 !important;
  }

  .dark\:focus-within\:u-ring-offset-danger:focus-within{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .dark\:focus\:u-ring-offset-black:focus{
    --tw-ring-offset-color: #000 !important;
  }

  .dark\:focus\:u-ring-offset-white:focus{
    --tw-ring-offset-color: #fff !important;
  }

  .dark\:focus\:u-ring-offset-faded:focus{
    --tw-ring-offset-color: #818181 !important;
  }

  .dark\:focus\:u-ring-offset-transparent:focus{
    --tw-ring-offset-color: transparent !important;
  }

  .dark\:focus\:u-ring-offset-neutral-1:focus{
    --tw-ring-offset-color: #FFFFFF !important;
  }

  .dark\:focus\:u-ring-offset-neutral-10:focus{
    --tw-ring-offset-color: #F7F7F7 !important;
  }

  .dark\:focus\:u-ring-offset-neutral-15:focus{
    --tw-ring-offset-color: #F2F2F2 !important;
  }

  .dark\:focus\:u-ring-offset-neutral-20:focus{
    --tw-ring-offset-color: #e3e3e3 !important;
  }

  .dark\:focus\:u-ring-offset-neutral-30:focus{
    --tw-ring-offset-color: #D9D9D9 !important;
  }

  .dark\:focus\:u-ring-offset-neutral-40:focus{
    --tw-ring-offset-color: #C1C1C1 !important;
  }

  .dark\:focus\:u-ring-offset-neutral-45:focus{
    --tw-ring-offset-color: #494949 !important;
  }

  .dark\:focus\:u-ring-offset-neutral-50:focus{
    --tw-ring-offset-color: #2d2d2d !important;
  }

  .dark\:focus\:u-ring-offset-neutral-60:focus{
    --tw-ring-offset-color: #000000 !important;
  }

  .dark\:focus\:u-ring-offset-primary-0:focus{
    --tw-ring-offset-color: #FAFCFE !important;
  }

  .dark\:focus\:u-ring-offset-primary-10:focus{
    --tw-ring-offset-color: #BEDDF2 !important;
  }

  .dark\:focus\:u-ring-offset-primary-20:focus{
    --tw-ring-offset-color: #83BEE6 !important;
  }

  .dark\:focus\:u-ring-offset-primary-30:focus{
    --tw-ring-offset-color: #489FDA !important;
  }

  .dark\:focus\:u-ring-offset-primary-40:focus{
    --tw-ring-offset-color: #257BB5 !important;
  }

  .dark\:focus\:u-ring-offset-primary-50:focus{
    --tw-ring-offset-color: #1C5E8B !important;
  }

  .dark\:focus\:u-ring-offset-primary-60:focus{
    --tw-ring-offset-color: #144160 !important;
  }

  .dark\:focus\:u-ring-offset-secundary-0:focus{
    --tw-ring-offset-color: #F6FCF6 !important;
  }

  .dark\:focus\:u-ring-offset-secundary-10:focus{
    --tw-ring-offset-color: #C4EAC1 !important;
  }

  .dark\:focus\:u-ring-offset-secundary-20:focus{
    --tw-ring-offset-color: #93D78B !important;
  }

  .dark\:focus\:u-ring-offset-secundary-30:focus{
    --tw-ring-offset-color: #61C556 !important;
  }

  .dark\:focus\:u-ring-offset-secundary-40:focus{
    --tw-ring-offset-color: #409E36 !important;
  }

  .dark\:focus\:u-ring-offset-secundary-50:focus{
    --tw-ring-offset-color: #317829 !important;
  }

  .dark\:focus\:u-ring-offset-secundary-60:focus{
    --tw-ring-offset-color: #21521C !important;
  }

  .dark\:focus\:u-ring-offset-success:focus{
    --tw-ring-offset-color: #296A33 !important;
  }

  .dark\:focus\:u-ring-offset-danger:focus{
    --tw-ring-offset-color: #FD6262 !important;
  }

  .dark\:u-ring-offset-0{
    --tw-ring-offset-width: 0px !important;
  }

  .dark\:u-ring-offset-1{
    --tw-ring-offset-width: 1px !important;
  }

  .dark\:u-ring-offset-2{
    --tw-ring-offset-width: 2px !important;
  }

  .dark\:u-ring-offset-4{
    --tw-ring-offset-width: 4px !important;
  }

  .dark\:u-ring-offset-8{
    --tw-ring-offset-width: 8px !important;
  }

  .dark\:focus-within\:u-ring-offset-0:focus-within{
    --tw-ring-offset-width: 0px !important;
  }

  .dark\:focus-within\:u-ring-offset-1:focus-within{
    --tw-ring-offset-width: 1px !important;
  }

  .dark\:focus-within\:u-ring-offset-2:focus-within{
    --tw-ring-offset-width: 2px !important;
  }

  .dark\:focus-within\:u-ring-offset-4:focus-within{
    --tw-ring-offset-width: 4px !important;
  }

  .dark\:focus-within\:u-ring-offset-8:focus-within{
    --tw-ring-offset-width: 8px !important;
  }

  .dark\:focus\:u-ring-offset-0:focus{
    --tw-ring-offset-width: 0px !important;
  }

  .dark\:focus\:u-ring-offset-1:focus{
    --tw-ring-offset-width: 1px !important;
  }

  .dark\:focus\:u-ring-offset-2:focus{
    --tw-ring-offset-width: 2px !important;
  }

  .dark\:focus\:u-ring-offset-4:focus{
    --tw-ring-offset-width: 4px !important;
  }

  .dark\:focus\:u-ring-offset-8:focus{
    --tw-ring-offset-width: 8px !important;
  }

  .dark\:u-ring-black{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-white{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-faded{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-transparent{
    --tw-ring-color: transparent !important;
  }

  .dark\:u-ring-neutral-1{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-15{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-45{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-neutral-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-primary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-0{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-10{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-20{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-30{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-40{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-50{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-secundary-60{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-success{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-danger{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-black:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-white:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-faded:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-transparent:focus-within{
    --tw-ring-color: transparent !important;
  }

  .dark\:focus-within\:u-ring-neutral-1:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-15:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-45:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-neutral-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-primary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-0:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-10:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-20:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-30:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-40:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-50:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-secundary-60:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-success:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus-within\:u-ring-danger:focus-within{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-black:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-white:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-faded:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(129, 129, 129, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-transparent:focus{
    --tw-ring-color: transparent !important;
  }

  .dark\:focus\:u-ring-neutral-1:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(255, 255, 255, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(247, 247, 247, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-15:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(242, 242, 242, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(227, 227, 227, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(217, 217, 217, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(193, 193, 193, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-45:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(73, 73, 73, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(45, 45, 45, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-neutral-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(0, 0, 0, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(250, 252, 254, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(190, 221, 242, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(131, 190, 230, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(72, 159, 218, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(37, 123, 181, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(28, 94, 139, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-primary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(20, 65, 96, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-0:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(246, 252, 246, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-10:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(196, 234, 193, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-20:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(147, 215, 139, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-30:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(97, 197, 86, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-40:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(64, 158, 54, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-50:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(49, 120, 41, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-secundary-60:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(33, 82, 28, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-success:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(41, 106, 51, var(--tw-ring-opacity)) !important;
  }

  .dark\:focus\:u-ring-danger:focus{
    --tw-ring-opacity: 1 !important;
    --tw-ring-color: rgba(253, 98, 98, var(--tw-ring-opacity)) !important;
  }

  .dark\:u-ring-opacity-0{
    --tw-ring-opacity: 0 !important;
  }

  .dark\:u-ring-opacity-5{
    --tw-ring-opacity: 0.05 !important;
  }

  .dark\:u-ring-opacity-10{
    --tw-ring-opacity: 0.1 !important;
  }

  .dark\:u-ring-opacity-20{
    --tw-ring-opacity: 0.2 !important;
  }

  .dark\:u-ring-opacity-25{
    --tw-ring-opacity: 0.25 !important;
  }

  .dark\:u-ring-opacity-30{
    --tw-ring-opacity: 0.3 !important;
  }

  .dark\:u-ring-opacity-40{
    --tw-ring-opacity: 0.4 !important;
  }

  .dark\:u-ring-opacity-50{
    --tw-ring-opacity: 0.5 !important;
  }

  .dark\:u-ring-opacity-60{
    --tw-ring-opacity: 0.6 !important;
  }

  .dark\:u-ring-opacity-70{
    --tw-ring-opacity: 0.7 !important;
  }

  .dark\:u-ring-opacity-75{
    --tw-ring-opacity: 0.75 !important;
  }

  .dark\:u-ring-opacity-80{
    --tw-ring-opacity: 0.8 !important;
  }

  .dark\:u-ring-opacity-90{
    --tw-ring-opacity: 0.9 !important;
  }

  .dark\:u-ring-opacity-95{
    --tw-ring-opacity: 0.95 !important;
  }

  .dark\:u-ring-opacity-100{
    --tw-ring-opacity: 1 !important;
  }

  .dark\:focus-within\:u-ring-opacity-0:focus-within{
    --tw-ring-opacity: 0 !important;
  }

  .dark\:focus-within\:u-ring-opacity-5:focus-within{
    --tw-ring-opacity: 0.05 !important;
  }

  .dark\:focus-within\:u-ring-opacity-10:focus-within{
    --tw-ring-opacity: 0.1 !important;
  }

  .dark\:focus-within\:u-ring-opacity-20:focus-within{
    --tw-ring-opacity: 0.2 !important;
  }

  .dark\:focus-within\:u-ring-opacity-25:focus-within{
    --tw-ring-opacity: 0.25 !important;
  }

  .dark\:focus-within\:u-ring-opacity-30:focus-within{
    --tw-ring-opacity: 0.3 !important;
  }

  .dark\:focus-within\:u-ring-opacity-40:focus-within{
    --tw-ring-opacity: 0.4 !important;
  }

  .dark\:focus-within\:u-ring-opacity-50:focus-within{
    --tw-ring-opacity: 0.5 !important;
  }

  .dark\:focus-within\:u-ring-opacity-60:focus-within{
    --tw-ring-opacity: 0.6 !important;
  }

  .dark\:focus-within\:u-ring-opacity-70:focus-within{
    --tw-ring-opacity: 0.7 !important;
  }

  .dark\:focus-within\:u-ring-opacity-75:focus-within{
    --tw-ring-opacity: 0.75 !important;
  }

  .dark\:focus-within\:u-ring-opacity-80:focus-within{
    --tw-ring-opacity: 0.8 !important;
  }

  .dark\:focus-within\:u-ring-opacity-90:focus-within{
    --tw-ring-opacity: 0.9 !important;
  }

  .dark\:focus-within\:u-ring-opacity-95:focus-within{
    --tw-ring-opacity: 0.95 !important;
  }

  .dark\:focus-within\:u-ring-opacity-100:focus-within{
    --tw-ring-opacity: 1 !important;
  }

  .dark\:focus\:u-ring-opacity-0:focus{
    --tw-ring-opacity: 0 !important;
  }

  .dark\:focus\:u-ring-opacity-5:focus{
    --tw-ring-opacity: 0.05 !important;
  }

  .dark\:focus\:u-ring-opacity-10:focus{
    --tw-ring-opacity: 0.1 !important;
  }

  .dark\:focus\:u-ring-opacity-20:focus{
    --tw-ring-opacity: 0.2 !important;
  }

  .dark\:focus\:u-ring-opacity-25:focus{
    --tw-ring-opacity: 0.25 !important;
  }

  .dark\:focus\:u-ring-opacity-30:focus{
    --tw-ring-opacity: 0.3 !important;
  }

  .dark\:focus\:u-ring-opacity-40:focus{
    --tw-ring-opacity: 0.4 !important;
  }

  .dark\:focus\:u-ring-opacity-50:focus{
    --tw-ring-opacity: 0.5 !important;
  }

  .dark\:focus\:u-ring-opacity-60:focus{
    --tw-ring-opacity: 0.6 !important;
  }

  .dark\:focus\:u-ring-opacity-70:focus{
    --tw-ring-opacity: 0.7 !important;
  }

  .dark\:focus\:u-ring-opacity-75:focus{
    --tw-ring-opacity: 0.75 !important;
  }

  .dark\:focus\:u-ring-opacity-80:focus{
    --tw-ring-opacity: 0.8 !important;
  }

  .dark\:focus\:u-ring-opacity-90:focus{
    --tw-ring-opacity: 0.9 !important;
  }

  .dark\:focus\:u-ring-opacity-95:focus{
    --tw-ring-opacity: 0.95 !important;
  }

  .dark\:focus\:u-ring-opacity-100:focus{
    --tw-ring-opacity: 1 !important;
  }

  .dark\:u-fill-current{
    fill: currentColor !important;
  }

  .dark\:u-stroke-current{
    stroke: currentColor !important;
  }

  .dark\:u-stroke-0{
    stroke-width: 0 !important;
  }

  .dark\:u-stroke-1{
    stroke-width: 1 !important;
  }

  .dark\:u-stroke-2{
    stroke-width: 2 !important;
  }

  .dark\:u-table-auto{
    table-layout: auto !important;
  }

  .dark\:u-table-fixed{
    table-layout: fixed !important;
  }

  .dark\:u-text-left{
    text-align: left !important;
  }

  .dark\:u-text-center{
    text-align: center !important;
  }

  .dark\:u-text-right{
    text-align: right !important;
  }

  .dark\:u-text-justify{
    text-align: justify !important;
  }

  .dark\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-transparent{
    color: transparent !important;
  }

  .dark\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-black{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-white{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-faded{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-transparent{
    color: transparent !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-1{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-10{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-15{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-20{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-30{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-40{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-45{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-50{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-neutral-60{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-primary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-0{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-10{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-20{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-30{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-40{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-50{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-secundary-60{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-success{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-danger{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-black:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-white:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-faded:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-transparent:focus-within{
    color: transparent !important;
  }

  .dark\:focus-within\:u-text-neutral-1:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-15:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-45:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-neutral-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-primary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-0:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-10:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-20:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-30:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-40:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-50:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-secundary-60:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-success:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .dark\:focus-within\:u-text-danger:focus-within{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-black:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-white:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-faded:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-transparent:hover{
    color: transparent !important;
  }

  .dark\:hover\:u-text-neutral-1:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-15:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-45:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-neutral-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-primary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-0:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-10:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-20:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-30:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-40:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-50:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-secundary-60:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-success:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .dark\:hover\:u-text-danger:hover{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-black:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-white:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-faded:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(129, 129, 129, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-transparent:focus{
    color: transparent !important;
  }

  .dark\:focus\:u-text-neutral-1:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(255, 255, 255, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(247, 247, 247, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-15:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(242, 242, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(227, 227, 227, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(217, 217, 217, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(193, 193, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-45:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(73, 73, 73, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(45, 45, 45, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-neutral-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(0, 0, 0, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(250, 252, 254, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(190, 221, 242, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(131, 190, 230, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(72, 159, 218, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(37, 123, 181, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(28, 94, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-primary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(20, 65, 96, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-0:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(246, 252, 246, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-10:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(196, 234, 193, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-20:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(147, 215, 139, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-30:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(97, 197, 86, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-40:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(64, 158, 54, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-50:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(49, 120, 41, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-secundary-60:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(33, 82, 28, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-success:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(41, 106, 51, var(--tw-text-opacity)) !important;
  }

  .dark\:focus\:u-text-danger:focus{
    --tw-text-opacity: 1 !important;
    color: rgba(253, 98, 98, var(--tw-text-opacity)) !important;
  }

  .dark\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .dark\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .dark\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .dark\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .dark\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .dark\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .dark\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .dark\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .dark\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .dark\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .dark\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .dark\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .dark\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .dark\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .dark\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-0{
    --tw-text-opacity: 0 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-5{
    --tw-text-opacity: 0.05 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-10{
    --tw-text-opacity: 0.1 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-20{
    --tw-text-opacity: 0.2 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-25{
    --tw-text-opacity: 0.25 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-30{
    --tw-text-opacity: 0.3 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-40{
    --tw-text-opacity: 0.4 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-50{
    --tw-text-opacity: 0.5 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-60{
    --tw-text-opacity: 0.6 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-70{
    --tw-text-opacity: 0.7 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-75{
    --tw-text-opacity: 0.75 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-80{
    --tw-text-opacity: 0.8 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-90{
    --tw-text-opacity: 0.9 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-95{
    --tw-text-opacity: 0.95 !important;
  }

  .u-group:hover .dark\:group-hover\:u-text-opacity-100{
    --tw-text-opacity: 1 !important;
  }

  .dark\:focus-within\:u-text-opacity-0:focus-within{
    --tw-text-opacity: 0 !important;
  }

  .dark\:focus-within\:u-text-opacity-5:focus-within{
    --tw-text-opacity: 0.05 !important;
  }

  .dark\:focus-within\:u-text-opacity-10:focus-within{
    --tw-text-opacity: 0.1 !important;
  }

  .dark\:focus-within\:u-text-opacity-20:focus-within{
    --tw-text-opacity: 0.2 !important;
  }

  .dark\:focus-within\:u-text-opacity-25:focus-within{
    --tw-text-opacity: 0.25 !important;
  }

  .dark\:focus-within\:u-text-opacity-30:focus-within{
    --tw-text-opacity: 0.3 !important;
  }

  .dark\:focus-within\:u-text-opacity-40:focus-within{
    --tw-text-opacity: 0.4 !important;
  }

  .dark\:focus-within\:u-text-opacity-50:focus-within{
    --tw-text-opacity: 0.5 !important;
  }

  .dark\:focus-within\:u-text-opacity-60:focus-within{
    --tw-text-opacity: 0.6 !important;
  }

  .dark\:focus-within\:u-text-opacity-70:focus-within{
    --tw-text-opacity: 0.7 !important;
  }

  .dark\:focus-within\:u-text-opacity-75:focus-within{
    --tw-text-opacity: 0.75 !important;
  }

  .dark\:focus-within\:u-text-opacity-80:focus-within{
    --tw-text-opacity: 0.8 !important;
  }

  .dark\:focus-within\:u-text-opacity-90:focus-within{
    --tw-text-opacity: 0.9 !important;
  }

  .dark\:focus-within\:u-text-opacity-95:focus-within{
    --tw-text-opacity: 0.95 !important;
  }

  .dark\:focus-within\:u-text-opacity-100:focus-within{
    --tw-text-opacity: 1 !important;
  }

  .dark\:hover\:u-text-opacity-0:hover{
    --tw-text-opacity: 0 !important;
  }

  .dark\:hover\:u-text-opacity-5:hover{
    --tw-text-opacity: 0.05 !important;
  }

  .dark\:hover\:u-text-opacity-10:hover{
    --tw-text-opacity: 0.1 !important;
  }

  .dark\:hover\:u-text-opacity-20:hover{
    --tw-text-opacity: 0.2 !important;
  }

  .dark\:hover\:u-text-opacity-25:hover{
    --tw-text-opacity: 0.25 !important;
  }

  .dark\:hover\:u-text-opacity-30:hover{
    --tw-text-opacity: 0.3 !important;
  }

  .dark\:hover\:u-text-opacity-40:hover{
    --tw-text-opacity: 0.4 !important;
  }

  .dark\:hover\:u-text-opacity-50:hover{
    --tw-text-opacity: 0.5 !important;
  }

  .dark\:hover\:u-text-opacity-60:hover{
    --tw-text-opacity: 0.6 !important;
  }

  .dark\:hover\:u-text-opacity-70:hover{
    --tw-text-opacity: 0.7 !important;
  }

  .dark\:hover\:u-text-opacity-75:hover{
    --tw-text-opacity: 0.75 !important;
  }

  .dark\:hover\:u-text-opacity-80:hover{
    --tw-text-opacity: 0.8 !important;
  }

  .dark\:hover\:u-text-opacity-90:hover{
    --tw-text-opacity: 0.9 !important;
  }

  .dark\:hover\:u-text-opacity-95:hover{
    --tw-text-opacity: 0.95 !important;
  }

  .dark\:hover\:u-text-opacity-100:hover{
    --tw-text-opacity: 1 !important;
  }

  .dark\:focus\:u-text-opacity-0:focus{
    --tw-text-opacity: 0 !important;
  }

  .dark\:focus\:u-text-opacity-5:focus{
    --tw-text-opacity: 0.05 !important;
  }

  .dark\:focus\:u-text-opacity-10:focus{
    --tw-text-opacity: 0.1 !important;
  }

  .dark\:focus\:u-text-opacity-20:focus{
    --tw-text-opacity: 0.2 !important;
  }

  .dark\:focus\:u-text-opacity-25:focus{
    --tw-text-opacity: 0.25 !important;
  }

  .dark\:focus\:u-text-opacity-30:focus{
    --tw-text-opacity: 0.3 !important;
  }

  .dark\:focus\:u-text-opacity-40:focus{
    --tw-text-opacity: 0.4 !important;
  }

  .dark\:focus\:u-text-opacity-50:focus{
    --tw-text-opacity: 0.5 !important;
  }

  .dark\:focus\:u-text-opacity-60:focus{
    --tw-text-opacity: 0.6 !important;
  }

  .dark\:focus\:u-text-opacity-70:focus{
    --tw-text-opacity: 0.7 !important;
  }

  .dark\:focus\:u-text-opacity-75:focus{
    --tw-text-opacity: 0.75 !important;
  }

  .dark\:focus\:u-text-opacity-80:focus{
    --tw-text-opacity: 0.8 !important;
  }

  .dark\:focus\:u-text-opacity-90:focus{
    --tw-text-opacity: 0.9 !important;
  }

  .dark\:focus\:u-text-opacity-95:focus{
    --tw-text-opacity: 0.95 !important;
  }

  .dark\:focus\:u-text-opacity-100:focus{
    --tw-text-opacity: 1 !important;
  }

  .dark\:u-truncate{
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }

  .dark\:u-overflow-ellipsis{
    text-overflow: ellipsis !important;
  }

  .dark\:u-overflow-clip{
    text-overflow: clip !important;
  }

  .dark\:u-italic{
    font-style: italic !important;
  }

  .dark\:u-not-italic{
    font-style: normal !important;
  }

  .dark\:u-uppercase{
    text-transform: uppercase !important;
  }

  .dark\:u-lowercase{
    text-transform: lowercase !important;
  }

  .dark\:u-capitalize{
    text-transform: capitalize !important;
  }

  .dark\:u-normal-case{
    text-transform: none !important;
  }

  .dark\:u-underline{
    text-decoration: underline !important;
  }

  .dark\:u-line-through{
    text-decoration: line-through !important;
  }

  .dark\:u-no-underline{
    text-decoration: none !important;
  }

  .u-group:hover .dark\:group-hover\:u-underline{
    text-decoration: underline !important;
  }

  .u-group:hover .dark\:group-hover\:u-line-through{
    text-decoration: line-through !important;
  }

  .u-group:hover .dark\:group-hover\:u-no-underline{
    text-decoration: none !important;
  }

  .dark\:focus-within\:u-underline:focus-within{
    text-decoration: underline !important;
  }

  .dark\:focus-within\:u-line-through:focus-within{
    text-decoration: line-through !important;
  }

  .dark\:focus-within\:u-no-underline:focus-within{
    text-decoration: none !important;
  }

  .dark\:hover\:u-underline:hover{
    text-decoration: underline !important;
  }

  .dark\:hover\:u-line-through:hover{
    text-decoration: line-through !important;
  }

  .dark\:hover\:u-no-underline:hover{
    text-decoration: none !important;
  }

  .dark\:focus\:u-underline:focus{
    text-decoration: underline !important;
  }

  .dark\:focus\:u-line-through:focus{
    text-decoration: line-through !important;
  }

  .dark\:focus\:u-no-underline:focus{
    text-decoration: none !important;
  }

  .dark\:u-antialiased{
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
  }

  .dark\:u-subpixel-antialiased{
    -webkit-font-smoothing: auto !important;
    -moz-osx-font-smoothing: auto !important;
  }

  .dark\:u-ordinal, .dark\:u-slashed-zero, .dark\:u-lining-nums, .dark\:u-oldstyle-nums, .dark\:u-proportional-nums, .dark\:u-tabular-nums, .dark\:u-diagonal-fractions, .dark\:u-stacked-fractions{
    --tw-ordinal: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-slashed-zero: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-figure: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-spacing: var(--tw-empty,/*!*/ /*!*/) !important;
    --tw-numeric-fraction: var(--tw-empty,/*!*/ /*!*/) !important;
    font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction) !important;
  }

  .dark\:u-normal-nums{
    font-variant-numeric: normal !important;
  }

  .dark\:u-ordinal{
    --tw-ordinal: ordinal !important;
  }

  .dark\:u-slashed-zero{
    --tw-slashed-zero: slashed-zero !important;
  }

  .dark\:u-lining-nums{
    --tw-numeric-figure: lining-nums !important;
  }

  .dark\:u-oldstyle-nums{
    --tw-numeric-figure: oldstyle-nums !important;
  }

  .dark\:u-proportional-nums{
    --tw-numeric-spacing: proportional-nums !important;
  }

  .dark\:u-tabular-nums{
    --tw-numeric-spacing: tabular-nums !important;
  }

  .dark\:u-diagonal-fractions{
    --tw-numeric-fraction: diagonal-fractions !important;
  }

  .dark\:u-stacked-fractions{
    --tw-numeric-fraction: stacked-fractions !important;
  }

  .dark\:u-tracking-tighter{
    letter-spacing: -0.05em !important;
  }

  .dark\:u-tracking-tight{
    letter-spacing: -0.025em !important;
  }

  .dark\:u-tracking-normal{
    letter-spacing: 0em !important;
  }

  .dark\:u-tracking-wide{
    letter-spacing: 0.025em !important;
  }

  .dark\:u-tracking-wider{
    letter-spacing: 0.05em !important;
  }

  .dark\:u-tracking-widest{
    letter-spacing: 0.1em !important;
  }

  .dark\:u-select-none{
    -webkit-user-select: none !important;
       -moz-user-select: none !important;
        -ms-user-select: none !important;
            user-select: none !important;
  }

  .dark\:u-select-text{
    -webkit-user-select: text !important;
       -moz-user-select: text !important;
        -ms-user-select: text !important;
            user-select: text !important;
  }

  .dark\:u-select-all{
    -webkit-user-select: all !important;
       -moz-user-select: all !important;
            user-select: all !important;
  }

  .dark\:u-select-auto{
    -webkit-user-select: auto !important;
       -moz-user-select: auto !important;
        -ms-user-select: auto !important;
            user-select: auto !important;
  }

  .dark\:u-align-baseline{
    vertical-align: baseline !important;
  }

  .dark\:u-align-top{
    vertical-align: top !important;
  }

  .dark\:u-align-middle{
    vertical-align: middle !important;
  }

  .dark\:u-align-bottom{
    vertical-align: bottom !important;
  }

  .dark\:u-align-text-top{
    vertical-align: text-top !important;
  }

  .dark\:u-align-text-bottom{
    vertical-align: text-bottom !important;
  }

  .dark\:u-visible{
    visibility: visible !important;
  }

  .dark\:u-invisible{
    visibility: hidden !important;
  }

  .dark\:u-whitespace-normal{
    white-space: normal !important;
  }

  .dark\:u-whitespace-nowrap{
    white-space: nowrap !important;
  }

  .dark\:u-whitespace-pre{
    white-space: pre !important;
  }

  .dark\:u-whitespace-pre-line{
    white-space: pre-line !important;
  }

  .dark\:u-whitespace-pre-wrap{
    white-space: pre-wrap !important;
  }

  .dark\:u-break-normal{
    overflow-wrap: normal !important;
    word-break: normal !important;
  }

  .dark\:u-break-words{
    overflow-wrap: break-word !important;
  }

  .dark\:u-break-all{
    word-break: break-all !important;
  }

  .dark\:u-w-0{
    width: 0px !important;
  }

  .dark\:u-w-1{
    width: 0.25rem !important;
  }

  .dark\:u-w-2{
    width: 0.5rem !important;
  }

  .dark\:u-w-3{
    width: 0.75rem !important;
  }

  .dark\:u-w-4{
    width: 1rem !important;
  }

  .dark\:u-w-5{
    width: 1.25rem !important;
  }

  .dark\:u-w-6{
    width: 1.5rem !important;
  }

  .dark\:u-w-7{
    width: 1.75rem !important;
  }

  .dark\:u-w-8{
    width: 2rem !important;
  }

  .dark\:u-w-9{
    width: 2.25rem !important;
  }

  .dark\:u-w-10{
    width: 2.5rem !important;
  }

  .dark\:u-w-11{
    width: 2.75rem !important;
  }

  .dark\:u-w-12{
    width: 3rem !important;
  }

  .dark\:u-w-14{
    width: 3.5rem !important;
  }

  .dark\:u-w-16{
    width: 4rem !important;
  }

  .dark\:u-w-20{
    width: 5rem !important;
  }

  .dark\:u-w-24{
    width: 6rem !important;
  }

  .dark\:u-w-28{
    width: 7rem !important;
  }

  .dark\:u-w-32{
    width: 8rem !important;
  }

  .dark\:u-w-36{
    width: 9rem !important;
  }

  .dark\:u-w-40{
    width: 10rem !important;
  }

  .dark\:u-w-44{
    width: 11rem !important;
  }

  .dark\:u-w-48{
    width: 12rem !important;
  }

  .dark\:u-w-52{
    width: 13rem !important;
  }

  .dark\:u-w-56{
    width: 14rem !important;
  }

  .dark\:u-w-60{
    width: 15rem !important;
  }

  .dark\:u-w-64{
    width: 16rem !important;
  }

  .dark\:u-w-72{
    width: 18rem !important;
  }

  .dark\:u-w-80{
    width: 20rem !important;
  }

  .dark\:u-w-96{
    width: 24rem !important;
  }

  .dark\:u-w-auto{
    width: auto !important;
  }

  .dark\:u-w-px{
    width: 1px !important;
  }

  .dark\:u-w-0\.5{
    width: 0.125rem !important;
  }

  .dark\:u-w-1\.5{
    width: 0.375rem !important;
  }

  .dark\:u-w-2\.5{
    width: 0.625rem !important;
  }

  .dark\:u-w-3\.5{
    width: 0.875rem !important;
  }

  .dark\:u-w-1\/2{
    width: 50% !important;
  }

  .dark\:u-w-1\/3{
    width: 33.333333% !important;
  }

  .dark\:u-w-2\/3{
    width: 66.666667% !important;
  }

  .dark\:u-w-1\/4{
    width: 25% !important;
  }

  .dark\:u-w-2\/4{
    width: 50% !important;
  }

  .dark\:u-w-3\/4{
    width: 75% !important;
  }

  .dark\:u-w-1\/5{
    width: 20% !important;
  }

  .dark\:u-w-2\/5{
    width: 40% !important;
  }

  .dark\:u-w-3\/5{
    width: 60% !important;
  }

  .dark\:u-w-4\/5{
    width: 80% !important;
  }

  .dark\:u-w-1\/6{
    width: 16.666667% !important;
  }

  .dark\:u-w-2\/6{
    width: 33.333333% !important;
  }

  .dark\:u-w-3\/6{
    width: 50% !important;
  }

  .dark\:u-w-4\/6{
    width: 66.666667% !important;
  }

  .dark\:u-w-5\/6{
    width: 83.333333% !important;
  }

  .dark\:u-w-1\/12{
    width: 8.333333% !important;
  }

  .dark\:u-w-2\/12{
    width: 16.666667% !important;
  }

  .dark\:u-w-3\/12{
    width: 25% !important;
  }

  .dark\:u-w-4\/12{
    width: 33.333333% !important;
  }

  .dark\:u-w-5\/12{
    width: 41.666667% !important;
  }

  .dark\:u-w-6\/12{
    width: 50% !important;
  }

  .dark\:u-w-7\/12{
    width: 58.333333% !important;
  }

  .dark\:u-w-8\/12{
    width: 66.666667% !important;
  }

  .dark\:u-w-9\/12{
    width: 75% !important;
  }

  .dark\:u-w-10\/12{
    width: 83.333333% !important;
  }

  .dark\:u-w-11\/12{
    width: 91.666667% !important;
  }

  .dark\:u-w-full{
    width: 100% !important;
  }

  .dark\:u-w-screen{
    width: 100vw !important;
  }

  .dark\:u-w-min{
    width: -webkit-min-content !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }

  .dark\:u-w-max{
    width: -webkit-max-content !important;
    width: -moz-max-content !important;
    width: max-content !important;
  }

  .dark\:u-z-0{
    z-index: 0 !important;
  }

  .dark\:u-z-10{
    z-index: 10 !important;
  }

  .dark\:u-z-20{
    z-index: 20 !important;
  }

  .dark\:u-z-30{
    z-index: 30 !important;
  }

  .dark\:u-z-40{
    z-index: 40 !important;
  }

  .dark\:u-z-50{
    z-index: 50 !important;
  }

  .dark\:u-z-auto{
    z-index: auto !important;
  }

  .dark\:focus-within\:u-z-0:focus-within{
    z-index: 0 !important;
  }

  .dark\:focus-within\:u-z-10:focus-within{
    z-index: 10 !important;
  }

  .dark\:focus-within\:u-z-20:focus-within{
    z-index: 20 !important;
  }

  .dark\:focus-within\:u-z-30:focus-within{
    z-index: 30 !important;
  }

  .dark\:focus-within\:u-z-40:focus-within{
    z-index: 40 !important;
  }

  .dark\:focus-within\:u-z-50:focus-within{
    z-index: 50 !important;
  }

  .dark\:focus-within\:u-z-auto:focus-within{
    z-index: auto !important;
  }

  .dark\:focus\:u-z-0:focus{
    z-index: 0 !important;
  }

  .dark\:focus\:u-z-10:focus{
    z-index: 10 !important;
  }

  .dark\:focus\:u-z-20:focus{
    z-index: 20 !important;
  }

  .dark\:focus\:u-z-30:focus{
    z-index: 30 !important;
  }

  .dark\:focus\:u-z-40:focus{
    z-index: 40 !important;
  }

  .dark\:focus\:u-z-50:focus{
    z-index: 50 !important;
  }

  .dark\:focus\:u-z-auto:focus{
    z-index: auto !important;
  }

  .dark\:u-gap-0{
    gap: 0px !important;
  }

  .dark\:u-gap-1{
    gap: 0.25rem !important;
  }

  .dark\:u-gap-2{
    gap: 0.5rem !important;
  }

  .dark\:u-gap-3{
    gap: 0.75rem !important;
  }

  .dark\:u-gap-4{
    gap: 1rem !important;
  }

  .dark\:u-gap-5{
    gap: 1.25rem !important;
  }

  .dark\:u-gap-6{
    gap: 1.5rem !important;
  }

  .dark\:u-gap-7{
    gap: 1.75rem !important;
  }

  .dark\:u-gap-8{
    gap: 2rem !important;
  }

  .dark\:u-gap-9{
    gap: 2.25rem !important;
  }

  .dark\:u-gap-10{
    gap: 2.5rem !important;
  }

  .dark\:u-gap-11{
    gap: 2.75rem !important;
  }

  .dark\:u-gap-12{
    gap: 3rem !important;
  }

  .dark\:u-gap-14{
    gap: 3.5rem !important;
  }

  .dark\:u-gap-16{
    gap: 4rem !important;
  }

  .dark\:u-gap-20{
    gap: 5rem !important;
  }

  .dark\:u-gap-24{
    gap: 6rem !important;
  }

  .dark\:u-gap-28{
    gap: 7rem !important;
  }

  .dark\:u-gap-32{
    gap: 8rem !important;
  }

  .dark\:u-gap-36{
    gap: 9rem !important;
  }

  .dark\:u-gap-40{
    gap: 10rem !important;
  }

  .dark\:u-gap-44{
    gap: 11rem !important;
  }

  .dark\:u-gap-48{
    gap: 12rem !important;
  }

  .dark\:u-gap-52{
    gap: 13rem !important;
  }

  .dark\:u-gap-56{
    gap: 14rem !important;
  }

  .dark\:u-gap-60{
    gap: 15rem !important;
  }

  .dark\:u-gap-64{
    gap: 16rem !important;
  }

  .dark\:u-gap-72{
    gap: 18rem !important;
  }

  .dark\:u-gap-80{
    gap: 20rem !important;
  }

  .dark\:u-gap-96{
    gap: 24rem !important;
  }

  .dark\:u-gap-px{
    gap: 1px !important;
  }

  .dark\:u-gap-0\.5{
    gap: 0.125rem !important;
  }

  .dark\:u-gap-1\.5{
    gap: 0.375rem !important;
  }

  .dark\:u-gap-2\.5{
    gap: 0.625rem !important;
  }

  .dark\:u-gap-3\.5{
    gap: 0.875rem !important;
  }

  .dark\:u-gap-x-0{
    -moz-column-gap: 0px !important;
         column-gap: 0px !important;
  }

  .dark\:u-gap-x-1{
    -moz-column-gap: 0.25rem !important;
         column-gap: 0.25rem !important;
  }

  .dark\:u-gap-x-2{
    -moz-column-gap: 0.5rem !important;
         column-gap: 0.5rem !important;
  }

  .dark\:u-gap-x-3{
    -moz-column-gap: 0.75rem !important;
         column-gap: 0.75rem !important;
  }

  .dark\:u-gap-x-4{
    -moz-column-gap: 1rem !important;
         column-gap: 1rem !important;
  }

  .dark\:u-gap-x-5{
    -moz-column-gap: 1.25rem !important;
         column-gap: 1.25rem !important;
  }

  .dark\:u-gap-x-6{
    -moz-column-gap: 1.5rem !important;
         column-gap: 1.5rem !important;
  }

  .dark\:u-gap-x-7{
    -moz-column-gap: 1.75rem !important;
         column-gap: 1.75rem !important;
  }

  .dark\:u-gap-x-8{
    -moz-column-gap: 2rem !important;
         column-gap: 2rem !important;
  }

  .dark\:u-gap-x-9{
    -moz-column-gap: 2.25rem !important;
         column-gap: 2.25rem !important;
  }

  .dark\:u-gap-x-10{
    -moz-column-gap: 2.5rem !important;
         column-gap: 2.5rem !important;
  }

  .dark\:u-gap-x-11{
    -moz-column-gap: 2.75rem !important;
         column-gap: 2.75rem !important;
  }

  .dark\:u-gap-x-12{
    -moz-column-gap: 3rem !important;
         column-gap: 3rem !important;
  }

  .dark\:u-gap-x-14{
    -moz-column-gap: 3.5rem !important;
         column-gap: 3.5rem !important;
  }

  .dark\:u-gap-x-16{
    -moz-column-gap: 4rem !important;
         column-gap: 4rem !important;
  }

  .dark\:u-gap-x-20{
    -moz-column-gap: 5rem !important;
         column-gap: 5rem !important;
  }

  .dark\:u-gap-x-24{
    -moz-column-gap: 6rem !important;
         column-gap: 6rem !important;
  }

  .dark\:u-gap-x-28{
    -moz-column-gap: 7rem !important;
         column-gap: 7rem !important;
  }

  .dark\:u-gap-x-32{
    -moz-column-gap: 8rem !important;
         column-gap: 8rem !important;
  }

  .dark\:u-gap-x-36{
    -moz-column-gap: 9rem !important;
         column-gap: 9rem !important;
  }

  .dark\:u-gap-x-40{
    -moz-column-gap: 10rem !important;
         column-gap: 10rem !important;
  }

  .dark\:u-gap-x-44{
    -moz-column-gap: 11rem !important;
         column-gap: 11rem !important;
  }

  .dark\:u-gap-x-48{
    -moz-column-gap: 12rem !important;
         column-gap: 12rem !important;
  }

  .dark\:u-gap-x-52{
    -moz-column-gap: 13rem !important;
         column-gap: 13rem !important;
  }

  .dark\:u-gap-x-56{
    -moz-column-gap: 14rem !important;
         column-gap: 14rem !important;
  }

  .dark\:u-gap-x-60{
    -moz-column-gap: 15rem !important;
         column-gap: 15rem !important;
  }

  .dark\:u-gap-x-64{
    -moz-column-gap: 16rem !important;
         column-gap: 16rem !important;
  }

  .dark\:u-gap-x-72{
    -moz-column-gap: 18rem !important;
         column-gap: 18rem !important;
  }

  .dark\:u-gap-x-80{
    -moz-column-gap: 20rem !important;
         column-gap: 20rem !important;
  }

  .dark\:u-gap-x-96{
    -moz-column-gap: 24rem !important;
         column-gap: 24rem !important;
  }

  .dark\:u-gap-x-px{
    -moz-column-gap: 1px !important;
         column-gap: 1px !important;
  }

  .dark\:u-gap-x-0\.5{
    -moz-column-gap: 0.125rem !important;
         column-gap: 0.125rem !important;
  }

  .dark\:u-gap-x-1\.5{
    -moz-column-gap: 0.375rem !important;
         column-gap: 0.375rem !important;
  }

  .dark\:u-gap-x-2\.5{
    -moz-column-gap: 0.625rem !important;
         column-gap: 0.625rem !important;
  }

  .dark\:u-gap-x-3\.5{
    -moz-column-gap: 0.875rem !important;
         column-gap: 0.875rem !important;
  }

  .dark\:u-gap-y-0{
    row-gap: 0px !important;
  }

  .dark\:u-gap-y-1{
    row-gap: 0.25rem !important;
  }

  .dark\:u-gap-y-2{
    row-gap: 0.5rem !important;
  }

  .dark\:u-gap-y-3{
    row-gap: 0.75rem !important;
  }

  .dark\:u-gap-y-4{
    row-gap: 1rem !important;
  }

  .dark\:u-gap-y-5{
    row-gap: 1.25rem !important;
  }

  .dark\:u-gap-y-6{
    row-gap: 1.5rem !important;
  }

  .dark\:u-gap-y-7{
    row-gap: 1.75rem !important;
  }

  .dark\:u-gap-y-8{
    row-gap: 2rem !important;
  }

  .dark\:u-gap-y-9{
    row-gap: 2.25rem !important;
  }

  .dark\:u-gap-y-10{
    row-gap: 2.5rem !important;
  }

  .dark\:u-gap-y-11{
    row-gap: 2.75rem !important;
  }

  .dark\:u-gap-y-12{
    row-gap: 3rem !important;
  }

  .dark\:u-gap-y-14{
    row-gap: 3.5rem !important;
  }

  .dark\:u-gap-y-16{
    row-gap: 4rem !important;
  }

  .dark\:u-gap-y-20{
    row-gap: 5rem !important;
  }

  .dark\:u-gap-y-24{
    row-gap: 6rem !important;
  }

  .dark\:u-gap-y-28{
    row-gap: 7rem !important;
  }

  .dark\:u-gap-y-32{
    row-gap: 8rem !important;
  }

  .dark\:u-gap-y-36{
    row-gap: 9rem !important;
  }

  .dark\:u-gap-y-40{
    row-gap: 10rem !important;
  }

  .dark\:u-gap-y-44{
    row-gap: 11rem !important;
  }

  .dark\:u-gap-y-48{
    row-gap: 12rem !important;
  }

  .dark\:u-gap-y-52{
    row-gap: 13rem !important;
  }

  .dark\:u-gap-y-56{
    row-gap: 14rem !important;
  }

  .dark\:u-gap-y-60{
    row-gap: 15rem !important;
  }

  .dark\:u-gap-y-64{
    row-gap: 16rem !important;
  }

  .dark\:u-gap-y-72{
    row-gap: 18rem !important;
  }

  .dark\:u-gap-y-80{
    row-gap: 20rem !important;
  }

  .dark\:u-gap-y-96{
    row-gap: 24rem !important;
  }

  .dark\:u-gap-y-px{
    row-gap: 1px !important;
  }

  .dark\:u-gap-y-0\.5{
    row-gap: 0.125rem !important;
  }

  .dark\:u-gap-y-1\.5{
    row-gap: 0.375rem !important;
  }

  .dark\:u-gap-y-2\.5{
    row-gap: 0.625rem !important;
  }

  .dark\:u-gap-y-3\.5{
    row-gap: 0.875rem !important;
  }

  .dark\:u-grid-flow-row{
    grid-auto-flow: row !important;
  }

  .dark\:u-grid-flow-col{
    grid-auto-flow: column !important;
  }

  .dark\:u-grid-flow-row-dense{
    grid-auto-flow: row dense !important;
  }

  .dark\:u-grid-flow-col-dense{
    grid-auto-flow: column dense !important;
  }

  .dark\:u-grid-cols-1{
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-4{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-5{
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-6{
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-7{
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-8{
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-9{
    grid-template-columns: repeat(9, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-10{
    grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-11{
    grid-template-columns: repeat(11, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-12{
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-cols-none{
    grid-template-columns: none !important;
  }

  .dark\:u-auto-cols-auto{
    grid-auto-columns: auto !important;
  }

  .dark\:u-auto-cols-min{
    grid-auto-columns: -webkit-min-content !important;
    grid-auto-columns: min-content !important;
  }

  .dark\:u-auto-cols-max{
    grid-auto-columns: -webkit-max-content !important;
    grid-auto-columns: max-content !important;
  }

  .dark\:u-auto-cols-fr{
    grid-auto-columns: minmax(0, 1fr) !important;
  }

  .dark\:u-col-auto{
    grid-column: auto !important;
  }

  .dark\:u-col-span-1{
    grid-column: span 1 / span 1 !important;
  }

  .dark\:u-col-span-2{
    grid-column: span 2 / span 2 !important;
  }

  .dark\:u-col-span-3{
    grid-column: span 3 / span 3 !important;
  }

  .dark\:u-col-span-4{
    grid-column: span 4 / span 4 !important;
  }

  .dark\:u-col-span-5{
    grid-column: span 5 / span 5 !important;
  }

  .dark\:u-col-span-6{
    grid-column: span 6 / span 6 !important;
  }

  .dark\:u-col-span-7{
    grid-column: span 7 / span 7 !important;
  }

  .dark\:u-col-span-8{
    grid-column: span 8 / span 8 !important;
  }

  .dark\:u-col-span-9{
    grid-column: span 9 / span 9 !important;
  }

  .dark\:u-col-span-10{
    grid-column: span 10 / span 10 !important;
  }

  .dark\:u-col-span-11{
    grid-column: span 11 / span 11 !important;
  }

  .dark\:u-col-span-12{
    grid-column: span 12 / span 12 !important;
  }

  .dark\:u-col-span-full{
    grid-column: 1 / -1 !important;
  }

  .dark\:u-col-start-1{
    grid-column-start: 1 !important;
  }

  .dark\:u-col-start-2{
    grid-column-start: 2 !important;
  }

  .dark\:u-col-start-3{
    grid-column-start: 3 !important;
  }

  .dark\:u-col-start-4{
    grid-column-start: 4 !important;
  }

  .dark\:u-col-start-5{
    grid-column-start: 5 !important;
  }

  .dark\:u-col-start-6{
    grid-column-start: 6 !important;
  }

  .dark\:u-col-start-7{
    grid-column-start: 7 !important;
  }

  .dark\:u-col-start-8{
    grid-column-start: 8 !important;
  }

  .dark\:u-col-start-9{
    grid-column-start: 9 !important;
  }

  .dark\:u-col-start-10{
    grid-column-start: 10 !important;
  }

  .dark\:u-col-start-11{
    grid-column-start: 11 !important;
  }

  .dark\:u-col-start-12{
    grid-column-start: 12 !important;
  }

  .dark\:u-col-start-13{
    grid-column-start: 13 !important;
  }

  .dark\:u-col-start-auto{
    grid-column-start: auto !important;
  }

  .dark\:u-col-end-1{
    grid-column-end: 1 !important;
  }

  .dark\:u-col-end-2{
    grid-column-end: 2 !important;
  }

  .dark\:u-col-end-3{
    grid-column-end: 3 !important;
  }

  .dark\:u-col-end-4{
    grid-column-end: 4 !important;
  }

  .dark\:u-col-end-5{
    grid-column-end: 5 !important;
  }

  .dark\:u-col-end-6{
    grid-column-end: 6 !important;
  }

  .dark\:u-col-end-7{
    grid-column-end: 7 !important;
  }

  .dark\:u-col-end-8{
    grid-column-end: 8 !important;
  }

  .dark\:u-col-end-9{
    grid-column-end: 9 !important;
  }

  .dark\:u-col-end-10{
    grid-column-end: 10 !important;
  }

  .dark\:u-col-end-11{
    grid-column-end: 11 !important;
  }

  .dark\:u-col-end-12{
    grid-column-end: 12 !important;
  }

  .dark\:u-col-end-13{
    grid-column-end: 13 !important;
  }

  .dark\:u-col-end-auto{
    grid-column-end: auto !important;
  }

  .dark\:u-grid-rows-1{
    grid-template-rows: repeat(1, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-rows-2{
    grid-template-rows: repeat(2, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-rows-3{
    grid-template-rows: repeat(3, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-rows-4{
    grid-template-rows: repeat(4, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-rows-5{
    grid-template-rows: repeat(5, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-rows-6{
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .dark\:u-grid-rows-none{
    grid-template-rows: none !important;
  }

  .dark\:u-auto-rows-auto{
    grid-auto-rows: auto !important;
  }

  .dark\:u-auto-rows-min{
    grid-auto-rows: -webkit-min-content !important;
    grid-auto-rows: min-content !important;
  }

  .dark\:u-auto-rows-max{
    grid-auto-rows: -webkit-max-content !important;
    grid-auto-rows: max-content !important;
  }

  .dark\:u-auto-rows-fr{
    grid-auto-rows: minmax(0, 1fr) !important;
  }

  .dark\:u-row-auto{
    grid-row: auto !important;
  }

  .dark\:u-row-span-1{
    grid-row: span 1 / span 1 !important;
  }

  .dark\:u-row-span-2{
    grid-row: span 2 / span 2 !important;
  }

  .dark\:u-row-span-3{
    grid-row: span 3 / span 3 !important;
  }

  .dark\:u-row-span-4{
    grid-row: span 4 / span 4 !important;
  }

  .dark\:u-row-span-5{
    grid-row: span 5 / span 5 !important;
  }

  .dark\:u-row-span-6{
    grid-row: span 6 / span 6 !important;
  }

  .dark\:u-row-span-full{
    grid-row: 1 / -1 !important;
  }

  .dark\:u-row-start-1{
    grid-row-start: 1 !important;
  }

  .dark\:u-row-start-2{
    grid-row-start: 2 !important;
  }

  .dark\:u-row-start-3{
    grid-row-start: 3 !important;
  }

  .dark\:u-row-start-4{
    grid-row-start: 4 !important;
  }

  .dark\:u-row-start-5{
    grid-row-start: 5 !important;
  }

  .dark\:u-row-start-6{
    grid-row-start: 6 !important;
  }

  .dark\:u-row-start-7{
    grid-row-start: 7 !important;
  }

  .dark\:u-row-start-auto{
    grid-row-start: auto !important;
  }

  .dark\:u-row-end-1{
    grid-row-end: 1 !important;
  }

  .dark\:u-row-end-2{
    grid-row-end: 2 !important;
  }

  .dark\:u-row-end-3{
    grid-row-end: 3 !important;
  }

  .dark\:u-row-end-4{
    grid-row-end: 4 !important;
  }

  .dark\:u-row-end-5{
    grid-row-end: 5 !important;
  }

  .dark\:u-row-end-6{
    grid-row-end: 6 !important;
  }

  .dark\:u-row-end-7{
    grid-row-end: 7 !important;
  }

  .dark\:u-row-end-auto{
    grid-row-end: auto !important;
  }

  .dark\:u-transform{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .dark\:u-transform-gpu{
    --tw-translate-x: 0 !important;
    --tw-translate-y: 0 !important;
    --tw-rotate: 0 !important;
    --tw-skew-x: 0 !important;
    --tw-skew-y: 0 !important;
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
    transform: translate3d(var(--tw-translate-x), var(--tw-translate-y), 0) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
  }

  .dark\:u-transform-none{
    transform: none !important;
  }

  .dark\:u-origin-center{
    transform-origin: center !important;
  }

  .dark\:u-origin-top{
    transform-origin: top !important;
  }

  .dark\:u-origin-top-right{
    transform-origin: top right !important;
  }

  .dark\:u-origin-right{
    transform-origin: right !important;
  }

  .dark\:u-origin-bottom-right{
    transform-origin: bottom right !important;
  }

  .dark\:u-origin-bottom{
    transform-origin: bottom !important;
  }

  .dark\:u-origin-bottom-left{
    transform-origin: bottom left !important;
  }

  .dark\:u-origin-left{
    transform-origin: left !important;
  }

  .dark\:u-origin-top-left{
    transform-origin: top left !important;
  }

  .dark\:u-scale-0{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .dark\:u-scale-50{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .dark\:u-scale-75{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .dark\:u-scale-90{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .dark\:u-scale-95{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .dark\:u-scale-100{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .dark\:u-scale-105{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .dark\:u-scale-110{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .dark\:u-scale-125{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .dark\:u-scale-150{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .dark\:u-scale-x-0{
    --tw-scale-x: 0 !important;
  }

  .dark\:u-scale-x-50{
    --tw-scale-x: .5 !important;
  }

  .dark\:u-scale-x-75{
    --tw-scale-x: .75 !important;
  }

  .dark\:u-scale-x-90{
    --tw-scale-x: .9 !important;
  }

  .dark\:u-scale-x-95{
    --tw-scale-x: .95 !important;
  }

  .dark\:u-scale-x-100{
    --tw-scale-x: 1 !important;
  }

  .dark\:u-scale-x-105{
    --tw-scale-x: 1.05 !important;
  }

  .dark\:u-scale-x-110{
    --tw-scale-x: 1.1 !important;
  }

  .dark\:u-scale-x-125{
    --tw-scale-x: 1.25 !important;
  }

  .dark\:u-scale-x-150{
    --tw-scale-x: 1.5 !important;
  }

  .dark\:u-scale-y-0{
    --tw-scale-y: 0 !important;
  }

  .dark\:u-scale-y-50{
    --tw-scale-y: .5 !important;
  }

  .dark\:u-scale-y-75{
    --tw-scale-y: .75 !important;
  }

  .dark\:u-scale-y-90{
    --tw-scale-y: .9 !important;
  }

  .dark\:u-scale-y-95{
    --tw-scale-y: .95 !important;
  }

  .dark\:u-scale-y-100{
    --tw-scale-y: 1 !important;
  }

  .dark\:u-scale-y-105{
    --tw-scale-y: 1.05 !important;
  }

  .dark\:u-scale-y-110{
    --tw-scale-y: 1.1 !important;
  }

  .dark\:u-scale-y-125{
    --tw-scale-y: 1.25 !important;
  }

  .dark\:u-scale-y-150{
    --tw-scale-y: 1.5 !important;
  }

  .dark\:hover\:u-scale-0:hover{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .dark\:hover\:u-scale-50:hover{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .dark\:hover\:u-scale-75:hover{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .dark\:hover\:u-scale-90:hover{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .dark\:hover\:u-scale-95:hover{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .dark\:hover\:u-scale-100:hover{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .dark\:hover\:u-scale-105:hover{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .dark\:hover\:u-scale-110:hover{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .dark\:hover\:u-scale-125:hover{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .dark\:hover\:u-scale-150:hover{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .dark\:hover\:u-scale-x-0:hover{
    --tw-scale-x: 0 !important;
  }

  .dark\:hover\:u-scale-x-50:hover{
    --tw-scale-x: .5 !important;
  }

  .dark\:hover\:u-scale-x-75:hover{
    --tw-scale-x: .75 !important;
  }

  .dark\:hover\:u-scale-x-90:hover{
    --tw-scale-x: .9 !important;
  }

  .dark\:hover\:u-scale-x-95:hover{
    --tw-scale-x: .95 !important;
  }

  .dark\:hover\:u-scale-x-100:hover{
    --tw-scale-x: 1 !important;
  }

  .dark\:hover\:u-scale-x-105:hover{
    --tw-scale-x: 1.05 !important;
  }

  .dark\:hover\:u-scale-x-110:hover{
    --tw-scale-x: 1.1 !important;
  }

  .dark\:hover\:u-scale-x-125:hover{
    --tw-scale-x: 1.25 !important;
  }

  .dark\:hover\:u-scale-x-150:hover{
    --tw-scale-x: 1.5 !important;
  }

  .dark\:hover\:u-scale-y-0:hover{
    --tw-scale-y: 0 !important;
  }

  .dark\:hover\:u-scale-y-50:hover{
    --tw-scale-y: .5 !important;
  }

  .dark\:hover\:u-scale-y-75:hover{
    --tw-scale-y: .75 !important;
  }

  .dark\:hover\:u-scale-y-90:hover{
    --tw-scale-y: .9 !important;
  }

  .dark\:hover\:u-scale-y-95:hover{
    --tw-scale-y: .95 !important;
  }

  .dark\:hover\:u-scale-y-100:hover{
    --tw-scale-y: 1 !important;
  }

  .dark\:hover\:u-scale-y-105:hover{
    --tw-scale-y: 1.05 !important;
  }

  .dark\:hover\:u-scale-y-110:hover{
    --tw-scale-y: 1.1 !important;
  }

  .dark\:hover\:u-scale-y-125:hover{
    --tw-scale-y: 1.25 !important;
  }

  .dark\:hover\:u-scale-y-150:hover{
    --tw-scale-y: 1.5 !important;
  }

  .dark\:focus\:u-scale-0:focus{
    --tw-scale-x: 0 !important;
    --tw-scale-y: 0 !important;
  }

  .dark\:focus\:u-scale-50:focus{
    --tw-scale-x: .5 !important;
    --tw-scale-y: .5 !important;
  }

  .dark\:focus\:u-scale-75:focus{
    --tw-scale-x: .75 !important;
    --tw-scale-y: .75 !important;
  }

  .dark\:focus\:u-scale-90:focus{
    --tw-scale-x: .9 !important;
    --tw-scale-y: .9 !important;
  }

  .dark\:focus\:u-scale-95:focus{
    --tw-scale-x: .95 !important;
    --tw-scale-y: .95 !important;
  }

  .dark\:focus\:u-scale-100:focus{
    --tw-scale-x: 1 !important;
    --tw-scale-y: 1 !important;
  }

  .dark\:focus\:u-scale-105:focus{
    --tw-scale-x: 1.05 !important;
    --tw-scale-y: 1.05 !important;
  }

  .dark\:focus\:u-scale-110:focus{
    --tw-scale-x: 1.1 !important;
    --tw-scale-y: 1.1 !important;
  }

  .dark\:focus\:u-scale-125:focus{
    --tw-scale-x: 1.25 !important;
    --tw-scale-y: 1.25 !important;
  }

  .dark\:focus\:u-scale-150:focus{
    --tw-scale-x: 1.5 !important;
    --tw-scale-y: 1.5 !important;
  }

  .dark\:focus\:u-scale-x-0:focus{
    --tw-scale-x: 0 !important;
  }

  .dark\:focus\:u-scale-x-50:focus{
    --tw-scale-x: .5 !important;
  }

  .dark\:focus\:u-scale-x-75:focus{
    --tw-scale-x: .75 !important;
  }

  .dark\:focus\:u-scale-x-90:focus{
    --tw-scale-x: .9 !important;
  }

  .dark\:focus\:u-scale-x-95:focus{
    --tw-scale-x: .95 !important;
  }

  .dark\:focus\:u-scale-x-100:focus{
    --tw-scale-x: 1 !important;
  }

  .dark\:focus\:u-scale-x-105:focus{
    --tw-scale-x: 1.05 !important;
  }

  .dark\:focus\:u-scale-x-110:focus{
    --tw-scale-x: 1.1 !important;
  }

  .dark\:focus\:u-scale-x-125:focus{
    --tw-scale-x: 1.25 !important;
  }

  .dark\:focus\:u-scale-x-150:focus{
    --tw-scale-x: 1.5 !important;
  }

  .dark\:focus\:u-scale-y-0:focus{
    --tw-scale-y: 0 !important;
  }

  .dark\:focus\:u-scale-y-50:focus{
    --tw-scale-y: .5 !important;
  }

  .dark\:focus\:u-scale-y-75:focus{
    --tw-scale-y: .75 !important;
  }

  .dark\:focus\:u-scale-y-90:focus{
    --tw-scale-y: .9 !important;
  }

  .dark\:focus\:u-scale-y-95:focus{
    --tw-scale-y: .95 !important;
  }

  .dark\:focus\:u-scale-y-100:focus{
    --tw-scale-y: 1 !important;
  }

  .dark\:focus\:u-scale-y-105:focus{
    --tw-scale-y: 1.05 !important;
  }

  .dark\:focus\:u-scale-y-110:focus{
    --tw-scale-y: 1.1 !important;
  }

  .dark\:focus\:u-scale-y-125:focus{
    --tw-scale-y: 1.25 !important;
  }

  .dark\:focus\:u-scale-y-150:focus{
    --tw-scale-y: 1.5 !important;
  }

  .dark\:u-rotate-0{
    --tw-rotate: 0deg !important;
  }

  .dark\:u-rotate-1{
    --tw-rotate: 1deg !important;
  }

  .dark\:u-rotate-2{
    --tw-rotate: 2deg !important;
  }

  .dark\:u-rotate-3{
    --tw-rotate: 3deg !important;
  }

  .dark\:u-rotate-6{
    --tw-rotate: 6deg !important;
  }

  .dark\:u-rotate-12{
    --tw-rotate: 12deg !important;
  }

  .dark\:u-rotate-45{
    --tw-rotate: 45deg !important;
  }

  .dark\:u-rotate-90{
    --tw-rotate: 90deg !important;
  }

  .dark\:u-rotate-180{
    --tw-rotate: 180deg !important;
  }

  .dark\:u--rotate-180{
    --tw-rotate: -180deg !important;
  }

  .dark\:u--rotate-90{
    --tw-rotate: -90deg !important;
  }

  .dark\:u--rotate-45{
    --tw-rotate: -45deg !important;
  }

  .dark\:u--rotate-12{
    --tw-rotate: -12deg !important;
  }

  .dark\:u--rotate-6{
    --tw-rotate: -6deg !important;
  }

  .dark\:u--rotate-3{
    --tw-rotate: -3deg !important;
  }

  .dark\:u--rotate-2{
    --tw-rotate: -2deg !important;
  }

  .dark\:u--rotate-1{
    --tw-rotate: -1deg !important;
  }

  .dark\:hover\:u-rotate-0:hover{
    --tw-rotate: 0deg !important;
  }

  .dark\:hover\:u-rotate-1:hover{
    --tw-rotate: 1deg !important;
  }

  .dark\:hover\:u-rotate-2:hover{
    --tw-rotate: 2deg !important;
  }

  .dark\:hover\:u-rotate-3:hover{
    --tw-rotate: 3deg !important;
  }

  .dark\:hover\:u-rotate-6:hover{
    --tw-rotate: 6deg !important;
  }

  .dark\:hover\:u-rotate-12:hover{
    --tw-rotate: 12deg !important;
  }

  .dark\:hover\:u-rotate-45:hover{
    --tw-rotate: 45deg !important;
  }

  .dark\:hover\:u-rotate-90:hover{
    --tw-rotate: 90deg !important;
  }

  .dark\:hover\:u-rotate-180:hover{
    --tw-rotate: 180deg !important;
  }

  .dark\:hover\:u--rotate-180:hover{
    --tw-rotate: -180deg !important;
  }

  .dark\:hover\:u--rotate-90:hover{
    --tw-rotate: -90deg !important;
  }

  .dark\:hover\:u--rotate-45:hover{
    --tw-rotate: -45deg !important;
  }

  .dark\:hover\:u--rotate-12:hover{
    --tw-rotate: -12deg !important;
  }

  .dark\:hover\:u--rotate-6:hover{
    --tw-rotate: -6deg !important;
  }

  .dark\:hover\:u--rotate-3:hover{
    --tw-rotate: -3deg !important;
  }

  .dark\:hover\:u--rotate-2:hover{
    --tw-rotate: -2deg !important;
  }

  .dark\:hover\:u--rotate-1:hover{
    --tw-rotate: -1deg !important;
  }

  .dark\:focus\:u-rotate-0:focus{
    --tw-rotate: 0deg !important;
  }

  .dark\:focus\:u-rotate-1:focus{
    --tw-rotate: 1deg !important;
  }

  .dark\:focus\:u-rotate-2:focus{
    --tw-rotate: 2deg !important;
  }

  .dark\:focus\:u-rotate-3:focus{
    --tw-rotate: 3deg !important;
  }

  .dark\:focus\:u-rotate-6:focus{
    --tw-rotate: 6deg !important;
  }

  .dark\:focus\:u-rotate-12:focus{
    --tw-rotate: 12deg !important;
  }

  .dark\:focus\:u-rotate-45:focus{
    --tw-rotate: 45deg !important;
  }

  .dark\:focus\:u-rotate-90:focus{
    --tw-rotate: 90deg !important;
  }

  .dark\:focus\:u-rotate-180:focus{
    --tw-rotate: 180deg !important;
  }

  .dark\:focus\:u--rotate-180:focus{
    --tw-rotate: -180deg !important;
  }

  .dark\:focus\:u--rotate-90:focus{
    --tw-rotate: -90deg !important;
  }

  .dark\:focus\:u--rotate-45:focus{
    --tw-rotate: -45deg !important;
  }

  .dark\:focus\:u--rotate-12:focus{
    --tw-rotate: -12deg !important;
  }

  .dark\:focus\:u--rotate-6:focus{
    --tw-rotate: -6deg !important;
  }

  .dark\:focus\:u--rotate-3:focus{
    --tw-rotate: -3deg !important;
  }

  .dark\:focus\:u--rotate-2:focus{
    --tw-rotate: -2deg !important;
  }

  .dark\:focus\:u--rotate-1:focus{
    --tw-rotate: -1deg !important;
  }

  .dark\:u-translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .dark\:u-translate-x-1{
    --tw-translate-x: 0.25rem !important;
  }

  .dark\:u-translate-x-2{
    --tw-translate-x: 0.5rem !important;
  }

  .dark\:u-translate-x-3{
    --tw-translate-x: 0.75rem !important;
  }

  .dark\:u-translate-x-4{
    --tw-translate-x: 1rem !important;
  }

  .dark\:u-translate-x-5{
    --tw-translate-x: 1.25rem !important;
  }

  .dark\:u-translate-x-6{
    --tw-translate-x: 1.5rem !important;
  }

  .dark\:u-translate-x-7{
    --tw-translate-x: 1.75rem !important;
  }

  .dark\:u-translate-x-8{
    --tw-translate-x: 2rem !important;
  }

  .dark\:u-translate-x-9{
    --tw-translate-x: 2.25rem !important;
  }

  .dark\:u-translate-x-10{
    --tw-translate-x: 2.5rem !important;
  }

  .dark\:u-translate-x-11{
    --tw-translate-x: 2.75rem !important;
  }

  .dark\:u-translate-x-12{
    --tw-translate-x: 3rem !important;
  }

  .dark\:u-translate-x-14{
    --tw-translate-x: 3.5rem !important;
  }

  .dark\:u-translate-x-16{
    --tw-translate-x: 4rem !important;
  }

  .dark\:u-translate-x-20{
    --tw-translate-x: 5rem !important;
  }

  .dark\:u-translate-x-24{
    --tw-translate-x: 6rem !important;
  }

  .dark\:u-translate-x-28{
    --tw-translate-x: 7rem !important;
  }

  .dark\:u-translate-x-32{
    --tw-translate-x: 8rem !important;
  }

  .dark\:u-translate-x-36{
    --tw-translate-x: 9rem !important;
  }

  .dark\:u-translate-x-40{
    --tw-translate-x: 10rem !important;
  }

  .dark\:u-translate-x-44{
    --tw-translate-x: 11rem !important;
  }

  .dark\:u-translate-x-48{
    --tw-translate-x: 12rem !important;
  }

  .dark\:u-translate-x-52{
    --tw-translate-x: 13rem !important;
  }

  .dark\:u-translate-x-56{
    --tw-translate-x: 14rem !important;
  }

  .dark\:u-translate-x-60{
    --tw-translate-x: 15rem !important;
  }

  .dark\:u-translate-x-64{
    --tw-translate-x: 16rem !important;
  }

  .dark\:u-translate-x-72{
    --tw-translate-x: 18rem !important;
  }

  .dark\:u-translate-x-80{
    --tw-translate-x: 20rem !important;
  }

  .dark\:u-translate-x-96{
    --tw-translate-x: 24rem !important;
  }

  .dark\:u-translate-x-px{
    --tw-translate-x: 1px !important;
  }

  .dark\:u-translate-x-0\.5{
    --tw-translate-x: 0.125rem !important;
  }

  .dark\:u-translate-x-1\.5{
    --tw-translate-x: 0.375rem !important;
  }

  .dark\:u-translate-x-2\.5{
    --tw-translate-x: 0.625rem !important;
  }

  .dark\:u-translate-x-3\.5{
    --tw-translate-x: 0.875rem !important;
  }

  .dark\:u--translate-x-0{
    --tw-translate-x: 0px !important;
  }

  .dark\:u--translate-x-1{
    --tw-translate-x: -0.25rem !important;
  }

  .dark\:u--translate-x-2{
    --tw-translate-x: -0.5rem !important;
  }

  .dark\:u--translate-x-3{
    --tw-translate-x: -0.75rem !important;
  }

  .dark\:u--translate-x-4{
    --tw-translate-x: -1rem !important;
  }

  .dark\:u--translate-x-5{
    --tw-translate-x: -1.25rem !important;
  }

  .dark\:u--translate-x-6{
    --tw-translate-x: -1.5rem !important;
  }

  .dark\:u--translate-x-7{
    --tw-translate-x: -1.75rem !important;
  }

  .dark\:u--translate-x-8{
    --tw-translate-x: -2rem !important;
  }

  .dark\:u--translate-x-9{
    --tw-translate-x: -2.25rem !important;
  }

  .dark\:u--translate-x-10{
    --tw-translate-x: -2.5rem !important;
  }

  .dark\:u--translate-x-11{
    --tw-translate-x: -2.75rem !important;
  }

  .dark\:u--translate-x-12{
    --tw-translate-x: -3rem !important;
  }

  .dark\:u--translate-x-14{
    --tw-translate-x: -3.5rem !important;
  }

  .dark\:u--translate-x-16{
    --tw-translate-x: -4rem !important;
  }

  .dark\:u--translate-x-20{
    --tw-translate-x: -5rem !important;
  }

  .dark\:u--translate-x-24{
    --tw-translate-x: -6rem !important;
  }

  .dark\:u--translate-x-28{
    --tw-translate-x: -7rem !important;
  }

  .dark\:u--translate-x-32{
    --tw-translate-x: -8rem !important;
  }

  .dark\:u--translate-x-36{
    --tw-translate-x: -9rem !important;
  }

  .dark\:u--translate-x-40{
    --tw-translate-x: -10rem !important;
  }

  .dark\:u--translate-x-44{
    --tw-translate-x: -11rem !important;
  }

  .dark\:u--translate-x-48{
    --tw-translate-x: -12rem !important;
  }

  .dark\:u--translate-x-52{
    --tw-translate-x: -13rem !important;
  }

  .dark\:u--translate-x-56{
    --tw-translate-x: -14rem !important;
  }

  .dark\:u--translate-x-60{
    --tw-translate-x: -15rem !important;
  }

  .dark\:u--translate-x-64{
    --tw-translate-x: -16rem !important;
  }

  .dark\:u--translate-x-72{
    --tw-translate-x: -18rem !important;
  }

  .dark\:u--translate-x-80{
    --tw-translate-x: -20rem !important;
  }

  .dark\:u--translate-x-96{
    --tw-translate-x: -24rem !important;
  }

  .dark\:u--translate-x-px{
    --tw-translate-x: -1px !important;
  }

  .dark\:u--translate-x-0\.5{
    --tw-translate-x: -0.125rem !important;
  }

  .dark\:u--translate-x-1\.5{
    --tw-translate-x: -0.375rem !important;
  }

  .dark\:u--translate-x-2\.5{
    --tw-translate-x: -0.625rem !important;
  }

  .dark\:u--translate-x-3\.5{
    --tw-translate-x: -0.875rem !important;
  }

  .dark\:u-translate-x-1\/2{
    --tw-translate-x: 50% !important;
  }

  .dark\:u-translate-x-1\/3{
    --tw-translate-x: 33.333333% !important;
  }

  .dark\:u-translate-x-2\/3{
    --tw-translate-x: 66.666667% !important;
  }

  .dark\:u-translate-x-1\/4{
    --tw-translate-x: 25% !important;
  }

  .dark\:u-translate-x-2\/4{
    --tw-translate-x: 50% !important;
  }

  .dark\:u-translate-x-3\/4{
    --tw-translate-x: 75% !important;
  }

  .dark\:u-translate-x-full{
    --tw-translate-x: 100% !important;
  }

  .dark\:u--translate-x-1\/2{
    --tw-translate-x: -50% !important;
  }

  .dark\:u--translate-x-1\/3{
    --tw-translate-x: -33.333333% !important;
  }

  .dark\:u--translate-x-2\/3{
    --tw-translate-x: -66.666667% !important;
  }

  .dark\:u--translate-x-1\/4{
    --tw-translate-x: -25% !important;
  }

  .dark\:u--translate-x-2\/4{
    --tw-translate-x: -50% !important;
  }

  .dark\:u--translate-x-3\/4{
    --tw-translate-x: -75% !important;
  }

  .dark\:u--translate-x-full{
    --tw-translate-x: -100% !important;
  }

  .dark\:u-translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .dark\:u-translate-y-1{
    --tw-translate-y: 0.25rem !important;
  }

  .dark\:u-translate-y-2{
    --tw-translate-y: 0.5rem !important;
  }

  .dark\:u-translate-y-3{
    --tw-translate-y: 0.75rem !important;
  }

  .dark\:u-translate-y-4{
    --tw-translate-y: 1rem !important;
  }

  .dark\:u-translate-y-5{
    --tw-translate-y: 1.25rem !important;
  }

  .dark\:u-translate-y-6{
    --tw-translate-y: 1.5rem !important;
  }

  .dark\:u-translate-y-7{
    --tw-translate-y: 1.75rem !important;
  }

  .dark\:u-translate-y-8{
    --tw-translate-y: 2rem !important;
  }

  .dark\:u-translate-y-9{
    --tw-translate-y: 2.25rem !important;
  }

  .dark\:u-translate-y-10{
    --tw-translate-y: 2.5rem !important;
  }

  .dark\:u-translate-y-11{
    --tw-translate-y: 2.75rem !important;
  }

  .dark\:u-translate-y-12{
    --tw-translate-y: 3rem !important;
  }

  .dark\:u-translate-y-14{
    --tw-translate-y: 3.5rem !important;
  }

  .dark\:u-translate-y-16{
    --tw-translate-y: 4rem !important;
  }

  .dark\:u-translate-y-20{
    --tw-translate-y: 5rem !important;
  }

  .dark\:u-translate-y-24{
    --tw-translate-y: 6rem !important;
  }

  .dark\:u-translate-y-28{
    --tw-translate-y: 7rem !important;
  }

  .dark\:u-translate-y-32{
    --tw-translate-y: 8rem !important;
  }

  .dark\:u-translate-y-36{
    --tw-translate-y: 9rem !important;
  }

  .dark\:u-translate-y-40{
    --tw-translate-y: 10rem !important;
  }

  .dark\:u-translate-y-44{
    --tw-translate-y: 11rem !important;
  }

  .dark\:u-translate-y-48{
    --tw-translate-y: 12rem !important;
  }

  .dark\:u-translate-y-52{
    --tw-translate-y: 13rem !important;
  }

  .dark\:u-translate-y-56{
    --tw-translate-y: 14rem !important;
  }

  .dark\:u-translate-y-60{
    --tw-translate-y: 15rem !important;
  }

  .dark\:u-translate-y-64{
    --tw-translate-y: 16rem !important;
  }

  .dark\:u-translate-y-72{
    --tw-translate-y: 18rem !important;
  }

  .dark\:u-translate-y-80{
    --tw-translate-y: 20rem !important;
  }

  .dark\:u-translate-y-96{
    --tw-translate-y: 24rem !important;
  }

  .dark\:u-translate-y-px{
    --tw-translate-y: 1px !important;
  }

  .dark\:u-translate-y-0\.5{
    --tw-translate-y: 0.125rem !important;
  }

  .dark\:u-translate-y-1\.5{
    --tw-translate-y: 0.375rem !important;
  }

  .dark\:u-translate-y-2\.5{
    --tw-translate-y: 0.625rem !important;
  }

  .dark\:u-translate-y-3\.5{
    --tw-translate-y: 0.875rem !important;
  }

  .dark\:u--translate-y-0{
    --tw-translate-y: 0px !important;
  }

  .dark\:u--translate-y-1{
    --tw-translate-y: -0.25rem !important;
  }

  .dark\:u--translate-y-2{
    --tw-translate-y: -0.5rem !important;
  }

  .dark\:u--translate-y-3{
    --tw-translate-y: -0.75rem !important;
  }

  .dark\:u--translate-y-4{
    --tw-translate-y: -1rem !important;
  }

  .dark\:u--translate-y-5{
    --tw-translate-y: -1.25rem !important;
  }

  .dark\:u--translate-y-6{
    --tw-translate-y: -1.5rem !important;
  }

  .dark\:u--translate-y-7{
    --tw-translate-y: -1.75rem !important;
  }

  .dark\:u--translate-y-8{
    --tw-translate-y: -2rem !important;
  }

  .dark\:u--translate-y-9{
    --tw-translate-y: -2.25rem !important;
  }

  .dark\:u--translate-y-10{
    --tw-translate-y: -2.5rem !important;
  }

  .dark\:u--translate-y-11{
    --tw-translate-y: -2.75rem !important;
  }

  .dark\:u--translate-y-12{
    --tw-translate-y: -3rem !important;
  }

  .dark\:u--translate-y-14{
    --tw-translate-y: -3.5rem !important;
  }

  .dark\:u--translate-y-16{
    --tw-translate-y: -4rem !important;
  }

  .dark\:u--translate-y-20{
    --tw-translate-y: -5rem !important;
  }

  .dark\:u--translate-y-24{
    --tw-translate-y: -6rem !important;
  }

  .dark\:u--translate-y-28{
    --tw-translate-y: -7rem !important;
  }

  .dark\:u--translate-y-32{
    --tw-translate-y: -8rem !important;
  }

  .dark\:u--translate-y-36{
    --tw-translate-y: -9rem !important;
  }

  .dark\:u--translate-y-40{
    --tw-translate-y: -10rem !important;
  }

  .dark\:u--translate-y-44{
    --tw-translate-y: -11rem !important;
  }

  .dark\:u--translate-y-48{
    --tw-translate-y: -12rem !important;
  }

  .dark\:u--translate-y-52{
    --tw-translate-y: -13rem !important;
  }

  .dark\:u--translate-y-56{
    --tw-translate-y: -14rem !important;
  }

  .dark\:u--translate-y-60{
    --tw-translate-y: -15rem !important;
  }

  .dark\:u--translate-y-64{
    --tw-translate-y: -16rem !important;
  }

  .dark\:u--translate-y-72{
    --tw-translate-y: -18rem !important;
  }

  .dark\:u--translate-y-80{
    --tw-translate-y: -20rem !important;
  }

  .dark\:u--translate-y-96{
    --tw-translate-y: -24rem !important;
  }

  .dark\:u--translate-y-px{
    --tw-translate-y: -1px !important;
  }

  .dark\:u--translate-y-0\.5{
    --tw-translate-y: -0.125rem !important;
  }

  .dark\:u--translate-y-1\.5{
    --tw-translate-y: -0.375rem !important;
  }

  .dark\:u--translate-y-2\.5{
    --tw-translate-y: -0.625rem !important;
  }

  .dark\:u--translate-y-3\.5{
    --tw-translate-y: -0.875rem !important;
  }

  .dark\:u-translate-y-1\/2{
    --tw-translate-y: 50% !important;
  }

  .dark\:u-translate-y-1\/3{
    --tw-translate-y: 33.333333% !important;
  }

  .dark\:u-translate-y-2\/3{
    --tw-translate-y: 66.666667% !important;
  }

  .dark\:u-translate-y-1\/4{
    --tw-translate-y: 25% !important;
  }

  .dark\:u-translate-y-2\/4{
    --tw-translate-y: 50% !important;
  }

  .dark\:u-translate-y-3\/4{
    --tw-translate-y: 75% !important;
  }

  .dark\:u-translate-y-full{
    --tw-translate-y: 100% !important;
  }

  .dark\:u--translate-y-1\/2{
    --tw-translate-y: -50% !important;
  }

  .dark\:u--translate-y-1\/3{
    --tw-translate-y: -33.333333% !important;
  }

  .dark\:u--translate-y-2\/3{
    --tw-translate-y: -66.666667% !important;
  }

  .dark\:u--translate-y-1\/4{
    --tw-translate-y: -25% !important;
  }

  .dark\:u--translate-y-2\/4{
    --tw-translate-y: -50% !important;
  }

  .dark\:u--translate-y-3\/4{
    --tw-translate-y: -75% !important;
  }

  .dark\:u--translate-y-full{
    --tw-translate-y: -100% !important;
  }

  .dark\:hover\:u-translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .dark\:hover\:u-translate-x-1:hover{
    --tw-translate-x: 0.25rem !important;
  }

  .dark\:hover\:u-translate-x-2:hover{
    --tw-translate-x: 0.5rem !important;
  }

  .dark\:hover\:u-translate-x-3:hover{
    --tw-translate-x: 0.75rem !important;
  }

  .dark\:hover\:u-translate-x-4:hover{
    --tw-translate-x: 1rem !important;
  }

  .dark\:hover\:u-translate-x-5:hover{
    --tw-translate-x: 1.25rem !important;
  }

  .dark\:hover\:u-translate-x-6:hover{
    --tw-translate-x: 1.5rem !important;
  }

  .dark\:hover\:u-translate-x-7:hover{
    --tw-translate-x: 1.75rem !important;
  }

  .dark\:hover\:u-translate-x-8:hover{
    --tw-translate-x: 2rem !important;
  }

  .dark\:hover\:u-translate-x-9:hover{
    --tw-translate-x: 2.25rem !important;
  }

  .dark\:hover\:u-translate-x-10:hover{
    --tw-translate-x: 2.5rem !important;
  }

  .dark\:hover\:u-translate-x-11:hover{
    --tw-translate-x: 2.75rem !important;
  }

  .dark\:hover\:u-translate-x-12:hover{
    --tw-translate-x: 3rem !important;
  }

  .dark\:hover\:u-translate-x-14:hover{
    --tw-translate-x: 3.5rem !important;
  }

  .dark\:hover\:u-translate-x-16:hover{
    --tw-translate-x: 4rem !important;
  }

  .dark\:hover\:u-translate-x-20:hover{
    --tw-translate-x: 5rem !important;
  }

  .dark\:hover\:u-translate-x-24:hover{
    --tw-translate-x: 6rem !important;
  }

  .dark\:hover\:u-translate-x-28:hover{
    --tw-translate-x: 7rem !important;
  }

  .dark\:hover\:u-translate-x-32:hover{
    --tw-translate-x: 8rem !important;
  }

  .dark\:hover\:u-translate-x-36:hover{
    --tw-translate-x: 9rem !important;
  }

  .dark\:hover\:u-translate-x-40:hover{
    --tw-translate-x: 10rem !important;
  }

  .dark\:hover\:u-translate-x-44:hover{
    --tw-translate-x: 11rem !important;
  }

  .dark\:hover\:u-translate-x-48:hover{
    --tw-translate-x: 12rem !important;
  }

  .dark\:hover\:u-translate-x-52:hover{
    --tw-translate-x: 13rem !important;
  }

  .dark\:hover\:u-translate-x-56:hover{
    --tw-translate-x: 14rem !important;
  }

  .dark\:hover\:u-translate-x-60:hover{
    --tw-translate-x: 15rem !important;
  }

  .dark\:hover\:u-translate-x-64:hover{
    --tw-translate-x: 16rem !important;
  }

  .dark\:hover\:u-translate-x-72:hover{
    --tw-translate-x: 18rem !important;
  }

  .dark\:hover\:u-translate-x-80:hover{
    --tw-translate-x: 20rem !important;
  }

  .dark\:hover\:u-translate-x-96:hover{
    --tw-translate-x: 24rem !important;
  }

  .dark\:hover\:u-translate-x-px:hover{
    --tw-translate-x: 1px !important;
  }

  .dark\:hover\:u-translate-x-0\.5:hover{
    --tw-translate-x: 0.125rem !important;
  }

  .dark\:hover\:u-translate-x-1\.5:hover{
    --tw-translate-x: 0.375rem !important;
  }

  .dark\:hover\:u-translate-x-2\.5:hover{
    --tw-translate-x: 0.625rem !important;
  }

  .dark\:hover\:u-translate-x-3\.5:hover{
    --tw-translate-x: 0.875rem !important;
  }

  .dark\:hover\:u--translate-x-0:hover{
    --tw-translate-x: 0px !important;
  }

  .dark\:hover\:u--translate-x-1:hover{
    --tw-translate-x: -0.25rem !important;
  }

  .dark\:hover\:u--translate-x-2:hover{
    --tw-translate-x: -0.5rem !important;
  }

  .dark\:hover\:u--translate-x-3:hover{
    --tw-translate-x: -0.75rem !important;
  }

  .dark\:hover\:u--translate-x-4:hover{
    --tw-translate-x: -1rem !important;
  }

  .dark\:hover\:u--translate-x-5:hover{
    --tw-translate-x: -1.25rem !important;
  }

  .dark\:hover\:u--translate-x-6:hover{
    --tw-translate-x: -1.5rem !important;
  }

  .dark\:hover\:u--translate-x-7:hover{
    --tw-translate-x: -1.75rem !important;
  }

  .dark\:hover\:u--translate-x-8:hover{
    --tw-translate-x: -2rem !important;
  }

  .dark\:hover\:u--translate-x-9:hover{
    --tw-translate-x: -2.25rem !important;
  }

  .dark\:hover\:u--translate-x-10:hover{
    --tw-translate-x: -2.5rem !important;
  }

  .dark\:hover\:u--translate-x-11:hover{
    --tw-translate-x: -2.75rem !important;
  }

  .dark\:hover\:u--translate-x-12:hover{
    --tw-translate-x: -3rem !important;
  }

  .dark\:hover\:u--translate-x-14:hover{
    --tw-translate-x: -3.5rem !important;
  }

  .dark\:hover\:u--translate-x-16:hover{
    --tw-translate-x: -4rem !important;
  }

  .dark\:hover\:u--translate-x-20:hover{
    --tw-translate-x: -5rem !important;
  }

  .dark\:hover\:u--translate-x-24:hover{
    --tw-translate-x: -6rem !important;
  }

  .dark\:hover\:u--translate-x-28:hover{
    --tw-translate-x: -7rem !important;
  }

  .dark\:hover\:u--translate-x-32:hover{
    --tw-translate-x: -8rem !important;
  }

  .dark\:hover\:u--translate-x-36:hover{
    --tw-translate-x: -9rem !important;
  }

  .dark\:hover\:u--translate-x-40:hover{
    --tw-translate-x: -10rem !important;
  }

  .dark\:hover\:u--translate-x-44:hover{
    --tw-translate-x: -11rem !important;
  }

  .dark\:hover\:u--translate-x-48:hover{
    --tw-translate-x: -12rem !important;
  }

  .dark\:hover\:u--translate-x-52:hover{
    --tw-translate-x: -13rem !important;
  }

  .dark\:hover\:u--translate-x-56:hover{
    --tw-translate-x: -14rem !important;
  }

  .dark\:hover\:u--translate-x-60:hover{
    --tw-translate-x: -15rem !important;
  }

  .dark\:hover\:u--translate-x-64:hover{
    --tw-translate-x: -16rem !important;
  }

  .dark\:hover\:u--translate-x-72:hover{
    --tw-translate-x: -18rem !important;
  }

  .dark\:hover\:u--translate-x-80:hover{
    --tw-translate-x: -20rem !important;
  }

  .dark\:hover\:u--translate-x-96:hover{
    --tw-translate-x: -24rem !important;
  }

  .dark\:hover\:u--translate-x-px:hover{
    --tw-translate-x: -1px !important;
  }

  .dark\:hover\:u--translate-x-0\.5:hover{
    --tw-translate-x: -0.125rem !important;
  }

  .dark\:hover\:u--translate-x-1\.5:hover{
    --tw-translate-x: -0.375rem !important;
  }

  .dark\:hover\:u--translate-x-2\.5:hover{
    --tw-translate-x: -0.625rem !important;
  }

  .dark\:hover\:u--translate-x-3\.5:hover{
    --tw-translate-x: -0.875rem !important;
  }

  .dark\:hover\:u-translate-x-1\/2:hover{
    --tw-translate-x: 50% !important;
  }

  .dark\:hover\:u-translate-x-1\/3:hover{
    --tw-translate-x: 33.333333% !important;
  }

  .dark\:hover\:u-translate-x-2\/3:hover{
    --tw-translate-x: 66.666667% !important;
  }

  .dark\:hover\:u-translate-x-1\/4:hover{
    --tw-translate-x: 25% !important;
  }

  .dark\:hover\:u-translate-x-2\/4:hover{
    --tw-translate-x: 50% !important;
  }

  .dark\:hover\:u-translate-x-3\/4:hover{
    --tw-translate-x: 75% !important;
  }

  .dark\:hover\:u-translate-x-full:hover{
    --tw-translate-x: 100% !important;
  }

  .dark\:hover\:u--translate-x-1\/2:hover{
    --tw-translate-x: -50% !important;
  }

  .dark\:hover\:u--translate-x-1\/3:hover{
    --tw-translate-x: -33.333333% !important;
  }

  .dark\:hover\:u--translate-x-2\/3:hover{
    --tw-translate-x: -66.666667% !important;
  }

  .dark\:hover\:u--translate-x-1\/4:hover{
    --tw-translate-x: -25% !important;
  }

  .dark\:hover\:u--translate-x-2\/4:hover{
    --tw-translate-x: -50% !important;
  }

  .dark\:hover\:u--translate-x-3\/4:hover{
    --tw-translate-x: -75% !important;
  }

  .dark\:hover\:u--translate-x-full:hover{
    --tw-translate-x: -100% !important;
  }

  .dark\:hover\:u-translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .dark\:hover\:u-translate-y-1:hover{
    --tw-translate-y: 0.25rem !important;
  }

  .dark\:hover\:u-translate-y-2:hover{
    --tw-translate-y: 0.5rem !important;
  }

  .dark\:hover\:u-translate-y-3:hover{
    --tw-translate-y: 0.75rem !important;
  }

  .dark\:hover\:u-translate-y-4:hover{
    --tw-translate-y: 1rem !important;
  }

  .dark\:hover\:u-translate-y-5:hover{
    --tw-translate-y: 1.25rem !important;
  }

  .dark\:hover\:u-translate-y-6:hover{
    --tw-translate-y: 1.5rem !important;
  }

  .dark\:hover\:u-translate-y-7:hover{
    --tw-translate-y: 1.75rem !important;
  }

  .dark\:hover\:u-translate-y-8:hover{
    --tw-translate-y: 2rem !important;
  }

  .dark\:hover\:u-translate-y-9:hover{
    --tw-translate-y: 2.25rem !important;
  }

  .dark\:hover\:u-translate-y-10:hover{
    --tw-translate-y: 2.5rem !important;
  }

  .dark\:hover\:u-translate-y-11:hover{
    --tw-translate-y: 2.75rem !important;
  }

  .dark\:hover\:u-translate-y-12:hover{
    --tw-translate-y: 3rem !important;
  }

  .dark\:hover\:u-translate-y-14:hover{
    --tw-translate-y: 3.5rem !important;
  }

  .dark\:hover\:u-translate-y-16:hover{
    --tw-translate-y: 4rem !important;
  }

  .dark\:hover\:u-translate-y-20:hover{
    --tw-translate-y: 5rem !important;
  }

  .dark\:hover\:u-translate-y-24:hover{
    --tw-translate-y: 6rem !important;
  }

  .dark\:hover\:u-translate-y-28:hover{
    --tw-translate-y: 7rem !important;
  }

  .dark\:hover\:u-translate-y-32:hover{
    --tw-translate-y: 8rem !important;
  }

  .dark\:hover\:u-translate-y-36:hover{
    --tw-translate-y: 9rem !important;
  }

  .dark\:hover\:u-translate-y-40:hover{
    --tw-translate-y: 10rem !important;
  }

  .dark\:hover\:u-translate-y-44:hover{
    --tw-translate-y: 11rem !important;
  }

  .dark\:hover\:u-translate-y-48:hover{
    --tw-translate-y: 12rem !important;
  }

  .dark\:hover\:u-translate-y-52:hover{
    --tw-translate-y: 13rem !important;
  }

  .dark\:hover\:u-translate-y-56:hover{
    --tw-translate-y: 14rem !important;
  }

  .dark\:hover\:u-translate-y-60:hover{
    --tw-translate-y: 15rem !important;
  }

  .dark\:hover\:u-translate-y-64:hover{
    --tw-translate-y: 16rem !important;
  }

  .dark\:hover\:u-translate-y-72:hover{
    --tw-translate-y: 18rem !important;
  }

  .dark\:hover\:u-translate-y-80:hover{
    --tw-translate-y: 20rem !important;
  }

  .dark\:hover\:u-translate-y-96:hover{
    --tw-translate-y: 24rem !important;
  }

  .dark\:hover\:u-translate-y-px:hover{
    --tw-translate-y: 1px !important;
  }

  .dark\:hover\:u-translate-y-0\.5:hover{
    --tw-translate-y: 0.125rem !important;
  }

  .dark\:hover\:u-translate-y-1\.5:hover{
    --tw-translate-y: 0.375rem !important;
  }

  .dark\:hover\:u-translate-y-2\.5:hover{
    --tw-translate-y: 0.625rem !important;
  }

  .dark\:hover\:u-translate-y-3\.5:hover{
    --tw-translate-y: 0.875rem !important;
  }

  .dark\:hover\:u--translate-y-0:hover{
    --tw-translate-y: 0px !important;
  }

  .dark\:hover\:u--translate-y-1:hover{
    --tw-translate-y: -0.25rem !important;
  }

  .dark\:hover\:u--translate-y-2:hover{
    --tw-translate-y: -0.5rem !important;
  }

  .dark\:hover\:u--translate-y-3:hover{
    --tw-translate-y: -0.75rem !important;
  }

  .dark\:hover\:u--translate-y-4:hover{
    --tw-translate-y: -1rem !important;
  }

  .dark\:hover\:u--translate-y-5:hover{
    --tw-translate-y: -1.25rem !important;
  }

  .dark\:hover\:u--translate-y-6:hover{
    --tw-translate-y: -1.5rem !important;
  }

  .dark\:hover\:u--translate-y-7:hover{
    --tw-translate-y: -1.75rem !important;
  }

  .dark\:hover\:u--translate-y-8:hover{
    --tw-translate-y: -2rem !important;
  }

  .dark\:hover\:u--translate-y-9:hover{
    --tw-translate-y: -2.25rem !important;
  }

  .dark\:hover\:u--translate-y-10:hover{
    --tw-translate-y: -2.5rem !important;
  }

  .dark\:hover\:u--translate-y-11:hover{
    --tw-translate-y: -2.75rem !important;
  }

  .dark\:hover\:u--translate-y-12:hover{
    --tw-translate-y: -3rem !important;
  }

  .dark\:hover\:u--translate-y-14:hover{
    --tw-translate-y: -3.5rem !important;
  }

  .dark\:hover\:u--translate-y-16:hover{
    --tw-translate-y: -4rem !important;
  }

  .dark\:hover\:u--translate-y-20:hover{
    --tw-translate-y: -5rem !important;
  }

  .dark\:hover\:u--translate-y-24:hover{
    --tw-translate-y: -6rem !important;
  }

  .dark\:hover\:u--translate-y-28:hover{
    --tw-translate-y: -7rem !important;
  }

  .dark\:hover\:u--translate-y-32:hover{
    --tw-translate-y: -8rem !important;
  }

  .dark\:hover\:u--translate-y-36:hover{
    --tw-translate-y: -9rem !important;
  }

  .dark\:hover\:u--translate-y-40:hover{
    --tw-translate-y: -10rem !important;
  }

  .dark\:hover\:u--translate-y-44:hover{
    --tw-translate-y: -11rem !important;
  }

  .dark\:hover\:u--translate-y-48:hover{
    --tw-translate-y: -12rem !important;
  }

  .dark\:hover\:u--translate-y-52:hover{
    --tw-translate-y: -13rem !important;
  }

  .dark\:hover\:u--translate-y-56:hover{
    --tw-translate-y: -14rem !important;
  }

  .dark\:hover\:u--translate-y-60:hover{
    --tw-translate-y: -15rem !important;
  }

  .dark\:hover\:u--translate-y-64:hover{
    --tw-translate-y: -16rem !important;
  }

  .dark\:hover\:u--translate-y-72:hover{
    --tw-translate-y: -18rem !important;
  }

  .dark\:hover\:u--translate-y-80:hover{
    --tw-translate-y: -20rem !important;
  }

  .dark\:hover\:u--translate-y-96:hover{
    --tw-translate-y: -24rem !important;
  }

  .dark\:hover\:u--translate-y-px:hover{
    --tw-translate-y: -1px !important;
  }

  .dark\:hover\:u--translate-y-0\.5:hover{
    --tw-translate-y: -0.125rem !important;
  }

  .dark\:hover\:u--translate-y-1\.5:hover{
    --tw-translate-y: -0.375rem !important;
  }

  .dark\:hover\:u--translate-y-2\.5:hover{
    --tw-translate-y: -0.625rem !important;
  }

  .dark\:hover\:u--translate-y-3\.5:hover{
    --tw-translate-y: -0.875rem !important;
  }

  .dark\:hover\:u-translate-y-1\/2:hover{
    --tw-translate-y: 50% !important;
  }

  .dark\:hover\:u-translate-y-1\/3:hover{
    --tw-translate-y: 33.333333% !important;
  }

  .dark\:hover\:u-translate-y-2\/3:hover{
    --tw-translate-y: 66.666667% !important;
  }

  .dark\:hover\:u-translate-y-1\/4:hover{
    --tw-translate-y: 25% !important;
  }

  .dark\:hover\:u-translate-y-2\/4:hover{
    --tw-translate-y: 50% !important;
  }

  .dark\:hover\:u-translate-y-3\/4:hover{
    --tw-translate-y: 75% !important;
  }

  .dark\:hover\:u-translate-y-full:hover{
    --tw-translate-y: 100% !important;
  }

  .dark\:hover\:u--translate-y-1\/2:hover{
    --tw-translate-y: -50% !important;
  }

  .dark\:hover\:u--translate-y-1\/3:hover{
    --tw-translate-y: -33.333333% !important;
  }

  .dark\:hover\:u--translate-y-2\/3:hover{
    --tw-translate-y: -66.666667% !important;
  }

  .dark\:hover\:u--translate-y-1\/4:hover{
    --tw-translate-y: -25% !important;
  }

  .dark\:hover\:u--translate-y-2\/4:hover{
    --tw-translate-y: -50% !important;
  }

  .dark\:hover\:u--translate-y-3\/4:hover{
    --tw-translate-y: -75% !important;
  }

  .dark\:hover\:u--translate-y-full:hover{
    --tw-translate-y: -100% !important;
  }

  .dark\:focus\:u-translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .dark\:focus\:u-translate-x-1:focus{
    --tw-translate-x: 0.25rem !important;
  }

  .dark\:focus\:u-translate-x-2:focus{
    --tw-translate-x: 0.5rem !important;
  }

  .dark\:focus\:u-translate-x-3:focus{
    --tw-translate-x: 0.75rem !important;
  }

  .dark\:focus\:u-translate-x-4:focus{
    --tw-translate-x: 1rem !important;
  }

  .dark\:focus\:u-translate-x-5:focus{
    --tw-translate-x: 1.25rem !important;
  }

  .dark\:focus\:u-translate-x-6:focus{
    --tw-translate-x: 1.5rem !important;
  }

  .dark\:focus\:u-translate-x-7:focus{
    --tw-translate-x: 1.75rem !important;
  }

  .dark\:focus\:u-translate-x-8:focus{
    --tw-translate-x: 2rem !important;
  }

  .dark\:focus\:u-translate-x-9:focus{
    --tw-translate-x: 2.25rem !important;
  }

  .dark\:focus\:u-translate-x-10:focus{
    --tw-translate-x: 2.5rem !important;
  }

  .dark\:focus\:u-translate-x-11:focus{
    --tw-translate-x: 2.75rem !important;
  }

  .dark\:focus\:u-translate-x-12:focus{
    --tw-translate-x: 3rem !important;
  }

  .dark\:focus\:u-translate-x-14:focus{
    --tw-translate-x: 3.5rem !important;
  }

  .dark\:focus\:u-translate-x-16:focus{
    --tw-translate-x: 4rem !important;
  }

  .dark\:focus\:u-translate-x-20:focus{
    --tw-translate-x: 5rem !important;
  }

  .dark\:focus\:u-translate-x-24:focus{
    --tw-translate-x: 6rem !important;
  }

  .dark\:focus\:u-translate-x-28:focus{
    --tw-translate-x: 7rem !important;
  }

  .dark\:focus\:u-translate-x-32:focus{
    --tw-translate-x: 8rem !important;
  }

  .dark\:focus\:u-translate-x-36:focus{
    --tw-translate-x: 9rem !important;
  }

  .dark\:focus\:u-translate-x-40:focus{
    --tw-translate-x: 10rem !important;
  }

  .dark\:focus\:u-translate-x-44:focus{
    --tw-translate-x: 11rem !important;
  }

  .dark\:focus\:u-translate-x-48:focus{
    --tw-translate-x: 12rem !important;
  }

  .dark\:focus\:u-translate-x-52:focus{
    --tw-translate-x: 13rem !important;
  }

  .dark\:focus\:u-translate-x-56:focus{
    --tw-translate-x: 14rem !important;
  }

  .dark\:focus\:u-translate-x-60:focus{
    --tw-translate-x: 15rem !important;
  }

  .dark\:focus\:u-translate-x-64:focus{
    --tw-translate-x: 16rem !important;
  }

  .dark\:focus\:u-translate-x-72:focus{
    --tw-translate-x: 18rem !important;
  }

  .dark\:focus\:u-translate-x-80:focus{
    --tw-translate-x: 20rem !important;
  }

  .dark\:focus\:u-translate-x-96:focus{
    --tw-translate-x: 24rem !important;
  }

  .dark\:focus\:u-translate-x-px:focus{
    --tw-translate-x: 1px !important;
  }

  .dark\:focus\:u-translate-x-0\.5:focus{
    --tw-translate-x: 0.125rem !important;
  }

  .dark\:focus\:u-translate-x-1\.5:focus{
    --tw-translate-x: 0.375rem !important;
  }

  .dark\:focus\:u-translate-x-2\.5:focus{
    --tw-translate-x: 0.625rem !important;
  }

  .dark\:focus\:u-translate-x-3\.5:focus{
    --tw-translate-x: 0.875rem !important;
  }

  .dark\:focus\:u--translate-x-0:focus{
    --tw-translate-x: 0px !important;
  }

  .dark\:focus\:u--translate-x-1:focus{
    --tw-translate-x: -0.25rem !important;
  }

  .dark\:focus\:u--translate-x-2:focus{
    --tw-translate-x: -0.5rem !important;
  }

  .dark\:focus\:u--translate-x-3:focus{
    --tw-translate-x: -0.75rem !important;
  }

  .dark\:focus\:u--translate-x-4:focus{
    --tw-translate-x: -1rem !important;
  }

  .dark\:focus\:u--translate-x-5:focus{
    --tw-translate-x: -1.25rem !important;
  }

  .dark\:focus\:u--translate-x-6:focus{
    --tw-translate-x: -1.5rem !important;
  }

  .dark\:focus\:u--translate-x-7:focus{
    --tw-translate-x: -1.75rem !important;
  }

  .dark\:focus\:u--translate-x-8:focus{
    --tw-translate-x: -2rem !important;
  }

  .dark\:focus\:u--translate-x-9:focus{
    --tw-translate-x: -2.25rem !important;
  }

  .dark\:focus\:u--translate-x-10:focus{
    --tw-translate-x: -2.5rem !important;
  }

  .dark\:focus\:u--translate-x-11:focus{
    --tw-translate-x: -2.75rem !important;
  }

  .dark\:focus\:u--translate-x-12:focus{
    --tw-translate-x: -3rem !important;
  }

  .dark\:focus\:u--translate-x-14:focus{
    --tw-translate-x: -3.5rem !important;
  }

  .dark\:focus\:u--translate-x-16:focus{
    --tw-translate-x: -4rem !important;
  }

  .dark\:focus\:u--translate-x-20:focus{
    --tw-translate-x: -5rem !important;
  }

  .dark\:focus\:u--translate-x-24:focus{
    --tw-translate-x: -6rem !important;
  }

  .dark\:focus\:u--translate-x-28:focus{
    --tw-translate-x: -7rem !important;
  }

  .dark\:focus\:u--translate-x-32:focus{
    --tw-translate-x: -8rem !important;
  }

  .dark\:focus\:u--translate-x-36:focus{
    --tw-translate-x: -9rem !important;
  }

  .dark\:focus\:u--translate-x-40:focus{
    --tw-translate-x: -10rem !important;
  }

  .dark\:focus\:u--translate-x-44:focus{
    --tw-translate-x: -11rem !important;
  }

  .dark\:focus\:u--translate-x-48:focus{
    --tw-translate-x: -12rem !important;
  }

  .dark\:focus\:u--translate-x-52:focus{
    --tw-translate-x: -13rem !important;
  }

  .dark\:focus\:u--translate-x-56:focus{
    --tw-translate-x: -14rem !important;
  }

  .dark\:focus\:u--translate-x-60:focus{
    --tw-translate-x: -15rem !important;
  }

  .dark\:focus\:u--translate-x-64:focus{
    --tw-translate-x: -16rem !important;
  }

  .dark\:focus\:u--translate-x-72:focus{
    --tw-translate-x: -18rem !important;
  }

  .dark\:focus\:u--translate-x-80:focus{
    --tw-translate-x: -20rem !important;
  }

  .dark\:focus\:u--translate-x-96:focus{
    --tw-translate-x: -24rem !important;
  }

  .dark\:focus\:u--translate-x-px:focus{
    --tw-translate-x: -1px !important;
  }

  .dark\:focus\:u--translate-x-0\.5:focus{
    --tw-translate-x: -0.125rem !important;
  }

  .dark\:focus\:u--translate-x-1\.5:focus{
    --tw-translate-x: -0.375rem !important;
  }

  .dark\:focus\:u--translate-x-2\.5:focus{
    --tw-translate-x: -0.625rem !important;
  }

  .dark\:focus\:u--translate-x-3\.5:focus{
    --tw-translate-x: -0.875rem !important;
  }

  .dark\:focus\:u-translate-x-1\/2:focus{
    --tw-translate-x: 50% !important;
  }

  .dark\:focus\:u-translate-x-1\/3:focus{
    --tw-translate-x: 33.333333% !important;
  }

  .dark\:focus\:u-translate-x-2\/3:focus{
    --tw-translate-x: 66.666667% !important;
  }

  .dark\:focus\:u-translate-x-1\/4:focus{
    --tw-translate-x: 25% !important;
  }

  .dark\:focus\:u-translate-x-2\/4:focus{
    --tw-translate-x: 50% !important;
  }

  .dark\:focus\:u-translate-x-3\/4:focus{
    --tw-translate-x: 75% !important;
  }

  .dark\:focus\:u-translate-x-full:focus{
    --tw-translate-x: 100% !important;
  }

  .dark\:focus\:u--translate-x-1\/2:focus{
    --tw-translate-x: -50% !important;
  }

  .dark\:focus\:u--translate-x-1\/3:focus{
    --tw-translate-x: -33.333333% !important;
  }

  .dark\:focus\:u--translate-x-2\/3:focus{
    --tw-translate-x: -66.666667% !important;
  }

  .dark\:focus\:u--translate-x-1\/4:focus{
    --tw-translate-x: -25% !important;
  }

  .dark\:focus\:u--translate-x-2\/4:focus{
    --tw-translate-x: -50% !important;
  }

  .dark\:focus\:u--translate-x-3\/4:focus{
    --tw-translate-x: -75% !important;
  }

  .dark\:focus\:u--translate-x-full:focus{
    --tw-translate-x: -100% !important;
  }

  .dark\:focus\:u-translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .dark\:focus\:u-translate-y-1:focus{
    --tw-translate-y: 0.25rem !important;
  }

  .dark\:focus\:u-translate-y-2:focus{
    --tw-translate-y: 0.5rem !important;
  }

  .dark\:focus\:u-translate-y-3:focus{
    --tw-translate-y: 0.75rem !important;
  }

  .dark\:focus\:u-translate-y-4:focus{
    --tw-translate-y: 1rem !important;
  }

  .dark\:focus\:u-translate-y-5:focus{
    --tw-translate-y: 1.25rem !important;
  }

  .dark\:focus\:u-translate-y-6:focus{
    --tw-translate-y: 1.5rem !important;
  }

  .dark\:focus\:u-translate-y-7:focus{
    --tw-translate-y: 1.75rem !important;
  }

  .dark\:focus\:u-translate-y-8:focus{
    --tw-translate-y: 2rem !important;
  }

  .dark\:focus\:u-translate-y-9:focus{
    --tw-translate-y: 2.25rem !important;
  }

  .dark\:focus\:u-translate-y-10:focus{
    --tw-translate-y: 2.5rem !important;
  }

  .dark\:focus\:u-translate-y-11:focus{
    --tw-translate-y: 2.75rem !important;
  }

  .dark\:focus\:u-translate-y-12:focus{
    --tw-translate-y: 3rem !important;
  }

  .dark\:focus\:u-translate-y-14:focus{
    --tw-translate-y: 3.5rem !important;
  }

  .dark\:focus\:u-translate-y-16:focus{
    --tw-translate-y: 4rem !important;
  }

  .dark\:focus\:u-translate-y-20:focus{
    --tw-translate-y: 5rem !important;
  }

  .dark\:focus\:u-translate-y-24:focus{
    --tw-translate-y: 6rem !important;
  }

  .dark\:focus\:u-translate-y-28:focus{
    --tw-translate-y: 7rem !important;
  }

  .dark\:focus\:u-translate-y-32:focus{
    --tw-translate-y: 8rem !important;
  }

  .dark\:focus\:u-translate-y-36:focus{
    --tw-translate-y: 9rem !important;
  }

  .dark\:focus\:u-translate-y-40:focus{
    --tw-translate-y: 10rem !important;
  }

  .dark\:focus\:u-translate-y-44:focus{
    --tw-translate-y: 11rem !important;
  }

  .dark\:focus\:u-translate-y-48:focus{
    --tw-translate-y: 12rem !important;
  }

  .dark\:focus\:u-translate-y-52:focus{
    --tw-translate-y: 13rem !important;
  }

  .dark\:focus\:u-translate-y-56:focus{
    --tw-translate-y: 14rem !important;
  }

  .dark\:focus\:u-translate-y-60:focus{
    --tw-translate-y: 15rem !important;
  }

  .dark\:focus\:u-translate-y-64:focus{
    --tw-translate-y: 16rem !important;
  }

  .dark\:focus\:u-translate-y-72:focus{
    --tw-translate-y: 18rem !important;
  }

  .dark\:focus\:u-translate-y-80:focus{
    --tw-translate-y: 20rem !important;
  }

  .dark\:focus\:u-translate-y-96:focus{
    --tw-translate-y: 24rem !important;
  }

  .dark\:focus\:u-translate-y-px:focus{
    --tw-translate-y: 1px !important;
  }

  .dark\:focus\:u-translate-y-0\.5:focus{
    --tw-translate-y: 0.125rem !important;
  }

  .dark\:focus\:u-translate-y-1\.5:focus{
    --tw-translate-y: 0.375rem !important;
  }

  .dark\:focus\:u-translate-y-2\.5:focus{
    --tw-translate-y: 0.625rem !important;
  }

  .dark\:focus\:u-translate-y-3\.5:focus{
    --tw-translate-y: 0.875rem !important;
  }

  .dark\:focus\:u--translate-y-0:focus{
    --tw-translate-y: 0px !important;
  }

  .dark\:focus\:u--translate-y-1:focus{
    --tw-translate-y: -0.25rem !important;
  }

  .dark\:focus\:u--translate-y-2:focus{
    --tw-translate-y: -0.5rem !important;
  }

  .dark\:focus\:u--translate-y-3:focus{
    --tw-translate-y: -0.75rem !important;
  }

  .dark\:focus\:u--translate-y-4:focus{
    --tw-translate-y: -1rem !important;
  }

  .dark\:focus\:u--translate-y-5:focus{
    --tw-translate-y: -1.25rem !important;
  }

  .dark\:focus\:u--translate-y-6:focus{
    --tw-translate-y: -1.5rem !important;
  }

  .dark\:focus\:u--translate-y-7:focus{
    --tw-translate-y: -1.75rem !important;
  }

  .dark\:focus\:u--translate-y-8:focus{
    --tw-translate-y: -2rem !important;
  }

  .dark\:focus\:u--translate-y-9:focus{
    --tw-translate-y: -2.25rem !important;
  }

  .dark\:focus\:u--translate-y-10:focus{
    --tw-translate-y: -2.5rem !important;
  }

  .dark\:focus\:u--translate-y-11:focus{
    --tw-translate-y: -2.75rem !important;
  }

  .dark\:focus\:u--translate-y-12:focus{
    --tw-translate-y: -3rem !important;
  }

  .dark\:focus\:u--translate-y-14:focus{
    --tw-translate-y: -3.5rem !important;
  }

  .dark\:focus\:u--translate-y-16:focus{
    --tw-translate-y: -4rem !important;
  }

  .dark\:focus\:u--translate-y-20:focus{
    --tw-translate-y: -5rem !important;
  }

  .dark\:focus\:u--translate-y-24:focus{
    --tw-translate-y: -6rem !important;
  }

  .dark\:focus\:u--translate-y-28:focus{
    --tw-translate-y: -7rem !important;
  }

  .dark\:focus\:u--translate-y-32:focus{
    --tw-translate-y: -8rem !important;
  }

  .dark\:focus\:u--translate-y-36:focus{
    --tw-translate-y: -9rem !important;
  }

  .dark\:focus\:u--translate-y-40:focus{
    --tw-translate-y: -10rem !important;
  }

  .dark\:focus\:u--translate-y-44:focus{
    --tw-translate-y: -11rem !important;
  }

  .dark\:focus\:u--translate-y-48:focus{
    --tw-translate-y: -12rem !important;
  }

  .dark\:focus\:u--translate-y-52:focus{
    --tw-translate-y: -13rem !important;
  }

  .dark\:focus\:u--translate-y-56:focus{
    --tw-translate-y: -14rem !important;
  }

  .dark\:focus\:u--translate-y-60:focus{
    --tw-translate-y: -15rem !important;
  }

  .dark\:focus\:u--translate-y-64:focus{
    --tw-translate-y: -16rem !important;
  }

  .dark\:focus\:u--translate-y-72:focus{
    --tw-translate-y: -18rem !important;
  }

  .dark\:focus\:u--translate-y-80:focus{
    --tw-translate-y: -20rem !important;
  }

  .dark\:focus\:u--translate-y-96:focus{
    --tw-translate-y: -24rem !important;
  }

  .dark\:focus\:u--translate-y-px:focus{
    --tw-translate-y: -1px !important;
  }

  .dark\:focus\:u--translate-y-0\.5:focus{
    --tw-translate-y: -0.125rem !important;
  }

  .dark\:focus\:u--translate-y-1\.5:focus{
    --tw-translate-y: -0.375rem !important;
  }

  .dark\:focus\:u--translate-y-2\.5:focus{
    --tw-translate-y: -0.625rem !important;
  }

  .dark\:focus\:u--translate-y-3\.5:focus{
    --tw-translate-y: -0.875rem !important;
  }

  .dark\:focus\:u-translate-y-1\/2:focus{
    --tw-translate-y: 50% !important;
  }

  .dark\:focus\:u-translate-y-1\/3:focus{
    --tw-translate-y: 33.333333% !important;
  }

  .dark\:focus\:u-translate-y-2\/3:focus{
    --tw-translate-y: 66.666667% !important;
  }

  .dark\:focus\:u-translate-y-1\/4:focus{
    --tw-translate-y: 25% !important;
  }

  .dark\:focus\:u-translate-y-2\/4:focus{
    --tw-translate-y: 50% !important;
  }

  .dark\:focus\:u-translate-y-3\/4:focus{
    --tw-translate-y: 75% !important;
  }

  .dark\:focus\:u-translate-y-full:focus{
    --tw-translate-y: 100% !important;
  }

  .dark\:focus\:u--translate-y-1\/2:focus{
    --tw-translate-y: -50% !important;
  }

  .dark\:focus\:u--translate-y-1\/3:focus{
    --tw-translate-y: -33.333333% !important;
  }

  .dark\:focus\:u--translate-y-2\/3:focus{
    --tw-translate-y: -66.666667% !important;
  }

  .dark\:focus\:u--translate-y-1\/4:focus{
    --tw-translate-y: -25% !important;
  }

  .dark\:focus\:u--translate-y-2\/4:focus{
    --tw-translate-y: -50% !important;
  }

  .dark\:focus\:u--translate-y-3\/4:focus{
    --tw-translate-y: -75% !important;
  }

  .dark\:focus\:u--translate-y-full:focus{
    --tw-translate-y: -100% !important;
  }

  .dark\:u-skew-x-0{
    --tw-skew-x: 0deg !important;
  }

  .dark\:u-skew-x-1{
    --tw-skew-x: 1deg !important;
  }

  .dark\:u-skew-x-2{
    --tw-skew-x: 2deg !important;
  }

  .dark\:u-skew-x-3{
    --tw-skew-x: 3deg !important;
  }

  .dark\:u-skew-x-6{
    --tw-skew-x: 6deg !important;
  }

  .dark\:u-skew-x-12{
    --tw-skew-x: 12deg !important;
  }

  .dark\:u--skew-x-12{
    --tw-skew-x: -12deg !important;
  }

  .dark\:u--skew-x-6{
    --tw-skew-x: -6deg !important;
  }

  .dark\:u--skew-x-3{
    --tw-skew-x: -3deg !important;
  }

  .dark\:u--skew-x-2{
    --tw-skew-x: -2deg !important;
  }

  .dark\:u--skew-x-1{
    --tw-skew-x: -1deg !important;
  }

  .dark\:u-skew-y-0{
    --tw-skew-y: 0deg !important;
  }

  .dark\:u-skew-y-1{
    --tw-skew-y: 1deg !important;
  }

  .dark\:u-skew-y-2{
    --tw-skew-y: 2deg !important;
  }

  .dark\:u-skew-y-3{
    --tw-skew-y: 3deg !important;
  }

  .dark\:u-skew-y-6{
    --tw-skew-y: 6deg !important;
  }

  .dark\:u-skew-y-12{
    --tw-skew-y: 12deg !important;
  }

  .dark\:u--skew-y-12{
    --tw-skew-y: -12deg !important;
  }

  .dark\:u--skew-y-6{
    --tw-skew-y: -6deg !important;
  }

  .dark\:u--skew-y-3{
    --tw-skew-y: -3deg !important;
  }

  .dark\:u--skew-y-2{
    --tw-skew-y: -2deg !important;
  }

  .dark\:u--skew-y-1{
    --tw-skew-y: -1deg !important;
  }

  .dark\:hover\:u-skew-x-0:hover{
    --tw-skew-x: 0deg !important;
  }

  .dark\:hover\:u-skew-x-1:hover{
    --tw-skew-x: 1deg !important;
  }

  .dark\:hover\:u-skew-x-2:hover{
    --tw-skew-x: 2deg !important;
  }

  .dark\:hover\:u-skew-x-3:hover{
    --tw-skew-x: 3deg !important;
  }

  .dark\:hover\:u-skew-x-6:hover{
    --tw-skew-x: 6deg !important;
  }

  .dark\:hover\:u-skew-x-12:hover{
    --tw-skew-x: 12deg !important;
  }

  .dark\:hover\:u--skew-x-12:hover{
    --tw-skew-x: -12deg !important;
  }

  .dark\:hover\:u--skew-x-6:hover{
    --tw-skew-x: -6deg !important;
  }

  .dark\:hover\:u--skew-x-3:hover{
    --tw-skew-x: -3deg !important;
  }

  .dark\:hover\:u--skew-x-2:hover{
    --tw-skew-x: -2deg !important;
  }

  .dark\:hover\:u--skew-x-1:hover{
    --tw-skew-x: -1deg !important;
  }

  .dark\:hover\:u-skew-y-0:hover{
    --tw-skew-y: 0deg !important;
  }

  .dark\:hover\:u-skew-y-1:hover{
    --tw-skew-y: 1deg !important;
  }

  .dark\:hover\:u-skew-y-2:hover{
    --tw-skew-y: 2deg !important;
  }

  .dark\:hover\:u-skew-y-3:hover{
    --tw-skew-y: 3deg !important;
  }

  .dark\:hover\:u-skew-y-6:hover{
    --tw-skew-y: 6deg !important;
  }

  .dark\:hover\:u-skew-y-12:hover{
    --tw-skew-y: 12deg !important;
  }

  .dark\:hover\:u--skew-y-12:hover{
    --tw-skew-y: -12deg !important;
  }

  .dark\:hover\:u--skew-y-6:hover{
    --tw-skew-y: -6deg !important;
  }

  .dark\:hover\:u--skew-y-3:hover{
    --tw-skew-y: -3deg !important;
  }

  .dark\:hover\:u--skew-y-2:hover{
    --tw-skew-y: -2deg !important;
  }

  .dark\:hover\:u--skew-y-1:hover{
    --tw-skew-y: -1deg !important;
  }

  .dark\:focus\:u-skew-x-0:focus{
    --tw-skew-x: 0deg !important;
  }

  .dark\:focus\:u-skew-x-1:focus{
    --tw-skew-x: 1deg !important;
  }

  .dark\:focus\:u-skew-x-2:focus{
    --tw-skew-x: 2deg !important;
  }

  .dark\:focus\:u-skew-x-3:focus{
    --tw-skew-x: 3deg !important;
  }

  .dark\:focus\:u-skew-x-6:focus{
    --tw-skew-x: 6deg !important;
  }

  .dark\:focus\:u-skew-x-12:focus{
    --tw-skew-x: 12deg !important;
  }

  .dark\:focus\:u--skew-x-12:focus{
    --tw-skew-x: -12deg !important;
  }

  .dark\:focus\:u--skew-x-6:focus{
    --tw-skew-x: -6deg !important;
  }

  .dark\:focus\:u--skew-x-3:focus{
    --tw-skew-x: -3deg !important;
  }

  .dark\:focus\:u--skew-x-2:focus{
    --tw-skew-x: -2deg !important;
  }

  .dark\:focus\:u--skew-x-1:focus{
    --tw-skew-x: -1deg !important;
  }

  .dark\:focus\:u-skew-y-0:focus{
    --tw-skew-y: 0deg !important;
  }

  .dark\:focus\:u-skew-y-1:focus{
    --tw-skew-y: 1deg !important;
  }

  .dark\:focus\:u-skew-y-2:focus{
    --tw-skew-y: 2deg !important;
  }

  .dark\:focus\:u-skew-y-3:focus{
    --tw-skew-y: 3deg !important;
  }

  .dark\:focus\:u-skew-y-6:focus{
    --tw-skew-y: 6deg !important;
  }

  .dark\:focus\:u-skew-y-12:focus{
    --tw-skew-y: 12deg !important;
  }

  .dark\:focus\:u--skew-y-12:focus{
    --tw-skew-y: -12deg !important;
  }

  .dark\:focus\:u--skew-y-6:focus{
    --tw-skew-y: -6deg !important;
  }

  .dark\:focus\:u--skew-y-3:focus{
    --tw-skew-y: -3deg !important;
  }

  .dark\:focus\:u--skew-y-2:focus{
    --tw-skew-y: -2deg !important;
  }

  .dark\:focus\:u--skew-y-1:focus{
    --tw-skew-y: -1deg !important;
  }

  .dark\:u-transition-none{
    transition-property: none !important;
  }

  .dark\:u-transition-all{
    transition-property: all !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark\:u-transition{
    transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark\:u-transition-colors{
    transition-property: background-color, border-color, color, fill, stroke !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark\:u-transition-opacity{
    transition-property: opacity !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark\:u-transition-shadow{
    transition-property: box-shadow !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark\:u-transition-transform{
    transition-property: transform !important;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
    transition-duration: 150ms !important;
  }

  .dark\:u-ease-linear{
    transition-timing-function: linear !important;
  }

  .dark\:u-ease-in{
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1) !important;
  }

  .dark\:u-ease-out{
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1) !important;
  }

  .dark\:u-ease-in-out{
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .dark\:u-duration-75{
    transition-duration: 75ms !important;
  }

  .dark\:u-duration-100{
    transition-duration: 100ms !important;
  }

  .dark\:u-duration-150{
    transition-duration: 150ms !important;
  }

  .dark\:u-duration-200{
    transition-duration: 200ms !important;
  }

  .dark\:u-duration-300{
    transition-duration: 300ms !important;
  }

  .dark\:u-duration-500{
    transition-duration: 500ms !important;
  }

  .dark\:u-duration-700{
    transition-duration: 700ms !important;
  }

  .dark\:u-duration-1000{
    transition-duration: 1000ms !important;
  }

  .dark\:u-delay-75{
    transition-delay: 75ms !important;
  }

  .dark\:u-delay-100{
    transition-delay: 100ms !important;
  }

  .dark\:u-delay-150{
    transition-delay: 150ms !important;
  }

  .dark\:u-delay-200{
    transition-delay: 200ms !important;
  }

  .dark\:u-delay-300{
    transition-delay: 300ms !important;
  }

  .dark\:u-delay-500{
    transition-delay: 500ms !important;
  }

  .dark\:u-delay-700{
    transition-delay: 700ms !important;
  }

  .dark\:u-delay-1000{
    transition-delay: 1000ms !important;
  }

  .dark\:u-animate-none{
    -webkit-animation: none !important;
            animation: none !important;
  }

  .dark\:u-animate-spin{
    -webkit-animation: u-spin 1s linear infinite !important;
            animation: u-spin 1s linear infinite !important;
  }

  .dark\:u-animate-ping{
    -webkit-animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
            animation: u-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite !important;
  }

  .dark\:u-animate-pulse{
    -webkit-animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
            animation: u-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite !important;
  }

  .dark\:u-animate-bounce{
    -webkit-animation: u-bounce 1s infinite !important;
            animation: u-bounce 1s infinite !important;
  }
}
